/* ============ RESET & VARIABLES ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #111116;
  --bg-card: #1e1e27;
  --bg-card-hover: #1c1c24;
  --bg-elevated: #1e1e28;
  --bg-sunken: #0c0c10;
  --text-primary: #e8e6f0;
  --text-secondary: #9390a6;
  --text-muted: #5c5a6e;
  --accent-red: #ff3b5c;
  --accent-amber: #ffb020;
  --accent-green: #2dd4a0;
  --accent-blue: #4d8eff;
  --accent-purple: #a855f7;
  --accent-pink: #ff6eb4;
  --border: rgba(144, 151, 255, 0.16);
  --border-hover: rgba(150, 155, 193, 0.32);
  --glow-red: 0 0 40px rgba(255,59,92,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-display);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }

/* ============ NAV ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 40px; height: 64px; display: flex; align-items: center; justify-content: space-between; background: rgba(10,10,12,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-primary); }
.nav-brand .logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--accent-red), var(--accent-amber)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.nav-brand span { font-weight: 700; font-size: 15px; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }


/* ============ HERO ============ */
.hero { padding: 100px 40px 20px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(ellipse, rgba(255,59,92,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(255,59,92,0.1); border: 1px solid rgba(255,59,92,0.2); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--accent-red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 32px; animation: fadeInUp 0.6s ease; }
.hero-badge .pulse { width: 6px; height: 6px; background: var(--accent-red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,59,92,0.4); } 50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(255,59,92,0); } }
.hero h1 { font-size: clamp(48px, 7vw, 88px); font-weight: 900; line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 24px; animation: fadeInUp 0.6s ease 0.1s both; }
.hero h1 .highlight { background: linear-gradient(135deg, var(--accent-red), var(--accent-amber)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: var(--text-secondary); max-width: 560px; margin: 0 auto 48px; font-weight: 400; animation: fadeInUp 0.6s ease 0.2s both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============ STATS BAR ============ */
.stats-bar { display: flex; justify-content: center; gap: 48px; padding: 32px 40px; animation: fadeInUp 0.6s ease 0.3s both; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-mono); font-size: 32px; font-weight: 700; color: var(--text-primary); }
.stat-number .accent { color: var(--accent-red); }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ============ SECTION LABELS ============ */
.section-label { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 24px; padding-left: 4px; }
.section-label::before { content: ''; width: 16px; height: 2px; background: var(--accent-red); }

/* ============ FEATURED GRID ============ */
.featured-section { padding: 0 40px 60px; max-width: 1280px; margin: 0 auto; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* ============ FEATURED TEXT CARDS ============ */
.featured-text-card { padding: 28px; }
.featured-text-card .text-card-prompt {
  font-size: 18px;
  -webkit-line-clamp: 2;
}

.featured-text-card .text-card-answer {
  font-size: 12.5px;
  -webkit-line-clamp: 3;
  padding: 14px 16px 14px 30px;
}

.featured-text-card .text-card-answer::before {
  left: 14px;
  top: 14px;
}

.featured-grid .featured-text-card:nth-child(1) { animation: gentleFloat 6s ease-in-out infinite; }
.featured-grid .featured-text-card:nth-child(2) { animation: gentleFloat 6s ease-in-out infinite 2s; }
.featured-grid .featured-text-card:nth-child(3) { animation: gentleFloat 6s ease-in-out infinite 4s; }
@keyframes gentleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.featured-text-card:hover { animation-play-state: paused !important; }

/* ============ TEXT CARDS ============ */
.text-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(255,255,255,0.02), 0 0 1px rgba(255,255,255,0.26);
}

.text-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 20px rgba(255,59,92,0.18), 0 0 40px rgba(255,59,92,0.04), 0 0 1px rgba(255,255,255,0.1);
}

/* Floating shadow */
.text-card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 15%;
  width: 70%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(255,59,92,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.text-card:hover::after { opacity: 1; bottom: -14px; }

/* Shimmer sweep */
.text-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius);
}

.text-card:hover::before { animation: shimmerSlide 0.7s ease forwards; }
@keyframes shimmerSlide { to { left: 160%; } }

/* ============ CARD TOP ============ */
.text-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }

/* ============ CATEGORY PILLS ============ */
.cat-pill {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  margin-top:-2px;
}


/* ============ PROMPT LINE ============ */
.text-card-prompt {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  /* 👇 subtle glow layering */
  text-shadow:
    0 0 6px rgba(255,255,255,0.28),
    0 0 14px rgba(255,255,255,0.06);

  /* 👇 smooth transitions */
  transition: all 0.25s ease;
}

.text-card-prompt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 2px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.7),
    rgba(255,255,255,0.2)
  );

  box-shadow:
    0 0 10px rgba(255,255,255,0.25),
    0 0 20px rgba(255,255,255,0.15);
}

/* ============ AI ANSWER BLOCK ============ */
.text-card-answer {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 12px 14px 12px 28px;
  background: var(--bg-sunken);
  border-radius: 8px;
  position: relative;
}

.text-card-readmore {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-red);
  margin-top: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.text-card-answer::before {
  content: '>';
  position: absolute;
  left: 12px;
  top: 12px;
  color: #fff;/*var(--accent-red);*/
  font-weight: 700;
  font-family: var(--font-mono);
 /* animation: cursorBlink 1.2s step-end infinite; */
}


@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.answer-more {
  color: var(--accent-red);
  animation: cursorBlink 1.2s step-end infinite;
}

/* ============ CARD FOOTER ============ */
.text-card-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.text-card-meta { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; }
.text-card-model { color: var(--accent-blue); }
.text-card-meta .meta-sep { color: var(--text-muted); opacity: 0.4; }
.sev-label { font-weight: 600; text-transform: uppercase; font-size: 10px; letter-spacing: 0.04em; }
.sev-label[data-severity="dangerous"] { color: var(--accent-red); }
.sev-label[data-severity="misleading"] { color: var(--accent-amber); }
.sev-label[data-severity="harmless"] { color: var(--accent-green); }

/* ============ VOTE BUTTON ============ */
.vote-btn { display: flex; align-items: center; gap: 6px; background: none; border: 1px solid var(--border); color: var(--text-secondary); padding: 5px 12px; border-radius: 8px; cursor: pointer; font-family: var(--font-mono); font-size: 12px; transition: all 0.2s; }
.vote-btn:hover { border-color: var(--accent-red); color: var(--accent-red); background: rgba(255,59,92,0.05); }
.vote-btn.voted { border-color: var(--accent-red); color: var(--accent-red); background: rgba(255,59,92,0.1); }

/* ============ FILTERS ============ */
/* ============ FILTERS (dropdowns) ============ */
.filters-section {
  padding: 16px 40px;
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(10,10,12,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235c5a6e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.filter-select:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.filter-select:focus {
  border-color: var(--accent-red);
}

.filter-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filters-spacer {
  flex: 1;
}
.sort-select { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); font-family: var(--font-display); font-size: 13px; padding: 7px 14px; border-radius: 8px; cursor: pointer; outline: none; }

/* ============ MAIN GRID ============ */
.grid-section { padding: 40px; max-width: 1280px; margin: 0 auto; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }

/* ============ SCROLL ENTRANCE ============ */
.grid-card { opacity: 0; transform: translateY(20px); animation: cardEnter 0.5s ease forwards; }
.grid-card:nth-child(1) { animation-delay: 0.05s; }
.grid-card:nth-child(2) { animation-delay: 0.1s; }
.grid-card:nth-child(3) { animation-delay: 0.15s; }
.grid-card:nth-child(4) { animation-delay: 0.2s; }
.grid-card:nth-child(5) { animation-delay: 0.25s; }
.grid-card:nth-child(6) { animation-delay: 0.3s; }
.grid-card:nth-child(7) { animation-delay: 0.35s; }
.grid-card:nth-child(8) { animation-delay: 0.4s; }
.grid-card:nth-child(9) { animation-delay: 0.45s; }
.grid-card:nth-child(10) { animation-delay: 0.5s; }
@keyframes cardEnter { to { opacity: 1; transform: translateY(0); } }

/* ============ SINGLE ENTRY PAGE ============ */
.entry-page { padding: 100px 40px 60px; max-width: 800px; margin: 0 auto; }
.entry-back { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 500; margin-bottom: 32px; transition: color 0.2s; }
.entry-back:hover { color: var(--text-primary); }
.entry-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.entry-meta .meta-item { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.entry-meta .meta-divider { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.entry-page h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 32px; }
.detail-block { margin-bottom: 28px; }


.detail-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.detail-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; background: var(--bg-card); padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); }
.detail-text.prompt { 
  
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;


  overflow: visible;

  /* 👇 subtle glow layering */
  text-shadow:
    0 0 6px rgba(255,255,255,0.28),
    0 0 14px rgba(255,255,255,0.06);

  /* 👇 smooth transitions */
  transition: all 0.25s ease;}


  .detail-text.correction {
    padding-left: 14px;
    background: var(--bg-card);
    position: relative;
    border-radius: 8px;
  
    box-shadow:
      0 0 0 1px rgba(255, 230, 234, 0.25),      /* crisp edge */
      0 0 12px rgba(255, 230, 234, 0.25),       /* tight glow */
      0 0 32px rgba(255, 230, 234, 0.18),       /* mid spread */
      0 0 64px rgba(255, 230, 234, 0.10);       /* soft ambient */
  }

  .ai-output {
    padding-left: 36px;
    position: relative;

   
  }

  .ai-output::before {
    content: '>';
    position: absolute;
    left: 20px;
    top: 20px;
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 15px;
  }
  
  
  


.entry-actions { display: flex; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border); margin-top: 8px; flex-wrap: wrap; }
.action-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; color: var(--text-secondary); font-family: var(--font-display); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.action-btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(255,59,92,0.05);
}

.tag { font-size: 11px; padding: 3px 8px; background: rgba(255,255,255,0.05); border-radius: 4px; color: var(--text-muted); font-weight: 500; }

/* ============ SUBMIT ============ */
.submit-section { max-width: 600px; margin: 60px auto 0; padding: 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.submit-section h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.submit-section .submit-intro { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 8px; color: var(--text-primary); font-family: var(--font-display); font-size: 14px; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-red); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
 
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(235, 9, 9, 0.28);
  border-radius: 10px;
  padding: 8px 14px;

  /* subtle depth */
  box-shadow: 
    0 4px 12px rgba(255,59,92,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: all 0.18s ease;
}

.btn-submit:hover {
  transform: translateY(-1px);

  background: linear-gradient(135deg, #ff5c7a, #f43f5e);

  box-shadow: 
    0 8px 20px rgba(255,59,92,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-submit:active {
  transform: translateY(0);

  box-shadow: 
    0 3px 8px rgba(255,59,92,0.25),
    inset 0 2px 4px rgba(0,0,0,0.25);
}

/* ============ FOOTER ============ */
.site-footer { padding: 60px 40px; border-top: 1px solid var(--border); margin-top: 80px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: start; gap: 40px; flex-wrap: wrap; }
.footer-brand p { color: var(--text-muted); font-size: 13px; max-width: 320px; margin-top: 8px; line-height: 1.6; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 13px; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }
.cite-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; font-family: var(--font-mono); font-size: 12px; color: var(--text-secondary); margin-top: 16px; cursor: pointer; transition: border-color 0.2s; }
.cite-box:hover { border-color: var(--accent-blue); }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); }
.footer-bottom a { color: var(--accent-red); text-decoration: none; }

.load-more-section { text-align: center; padding: 40px; }
.load-more-btn { padding: 12px 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; color: var(--text-secondary); font-family: var(--font-display); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.load-more-btn:hover { background: var(--bg-card-hover); border-color: var(--border-hover); color: var(--text-primary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 20px; }
  .hero { padding: 120px 20px 60px; }
  .featured-section, .grid-section { padding-left: 20px; padding-right: 20px; }
  .filters-section { padding: 16px 20px; }
  .filter-row { flex-direction: column; align-items: stretch; }
  .stats-bar { gap: 24px; flex-wrap: wrap; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .entry-page { padding: 100px 20px 60px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============ ENTRY ACTION ROW ============ */
/* Add these to your hallucinations.css */
/* Remove the old .entry-hero-row, .entry-sidebar, .vote-btn-vertical styles */
 
.entry-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
 
.entry-upvote {
  display: flex;
  align-items: center;
}
 
.vote-btn-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  font-family: var(--font-display);
}
 
.vote-btn-inline:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(255,59,92,0.05);
}
 
.vote-btn-inline.voted {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(255,59,92,0.1);
  pointer-events: none;
}
 
.vote-btn-inline .vote-arrow {
  font-size: 16px;
  line-height: 1;
}
 
.vote-btn-inline .vote-count {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}
 
.vote-btn-inline.voted .vote-count {
  color: var(--accent-red);
}
 
.vote-btn-inline .vote-word {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
 
.entry-share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
 
 
@media (max-width: 900px) {
  .entry-action-row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .entry-share-btns {
    justify-content: center;
  }
  .entry-upvote {
    justify-content: center;
  }
}

.action-btn-icon {
  padding: 8px 10px;
}

.entry-status {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.entry-status[data-status="unverified"] {
  background: rgba(255,176,32,0.08);
  border: 1px solid rgba(255,176,32,0.15);
  color: var(--accent-amber);
}

.entry-status[data-status="confirmed"] {
  background: rgba(255,59,92,0.08);
  border: 1px solid rgba(255,59,92,0.15);
  color: var(--accent-red);
}

.entry-status[data-status="fixed"] {
  background: rgba(45,212,160,0.08);
  border: 1px solid rgba(45,212,160,0.15);
  color: var(--accent-green);
}

.status-icon {
  font-size: 8px;
  vertical-align: middle;
  margin-right: 4px;
}

.status-report-btn {
  float: right;
  font-size: 11px;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s;
}

.status-report-btn:hover {
  opacity: 1;
  text-decoration: underline;
}

.status-report-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.status-report-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 440px;
  width: 100%;
}

.status-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}

.status-option:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.status-option.selected {
  border-color: var(--accent-red);
  background: rgba(255,59,92,0.05);
  color: var(--text-primary);
}

.report-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 0px;
  cursor: pointer;
  transition: all 0.2s;
}

.report-pill:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(255,59,92,0.05);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.entry-status {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 0;
}

/* ============ LIGHTBOX ============ */
.entry-hero-image {
  width: 100%;
  max-height: 600px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin-bottom: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.entry-hero-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
}
.image-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.entry-hero-image:hover .image-zoom-hint {
  opacity: 1;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  flex-direction: column;
  align-items: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3001;
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

.lightbox-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.lightbox-scroll.is-zoomed {
  justify-content: flex-start;
  padding: 0;
}

.lightbox-scroll img {
  max-width: 800px;
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  transition: max-width 0.3s ease;
  margin: 0 auto;
}

.lightbox-scroll img.zoomed {
  max-width: none;
  width: 150%;
  cursor: zoom-out;
  margin: 0;
}

/* ============================================================
   SUBMISSION MODAL — append to your style.css
   ============================================================ */

/* Floating "Submit a hallucination" button — shows on listing page,
   you can also place it anywhere via .submit-trigger-pill */
   .submit-trigger-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .submit-trigger-pill:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(255,59,92,0.05);
    box-shadow: 0 0 24px rgba(255,59,92,0.15);
  }
  
  /* Modal overlay */
  .submission-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 20px;
    overflow-y: auto;
  }
  
  .submission-modal.is-open {
    display: flex;
    animation: fadeIn 0.2s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .submission-modal-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,59,92,0.08);
    animation: slideUp 0.3s ease;
  }
  
  @keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  .submission-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  
  .submission-modal-close:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
  }
  
  .submission-modal h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-primary);
    margin: 0 0 6px;
  }
  
  .submission-modal .modal-subtitle {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  
  /* Form fields */
  .submission-form .field {
    margin-bottom: 16px;
  }
  
  .submission-form label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
  }
  
  .submission-form label .required {
    color: var(--accent-red);
  }
  
  .submission-form label .optional {
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    font-size: 10px;
    opacity: 0.7;
  }
  
  .submission-form input[type="text"],
  .submission-form input[type="email"],
  .submission-form input[type="url"],
  .submission-form select,
  .submission-form textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }
  
  .submission-form textarea {
    font-family: var(--font-mono);
    resize: vertical;
    min-height: 70px;
  }
  
  .submission-form input:focus,
  .submission-form select:focus,
  .submission-form textarea:focus {
    border-color: var(--accent-red);
  }
  
  .submission-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  @media (max-width: 520px) {
    .submission-form .field-row {
      grid-template-columns: 1fr;
    }
  }
  
  /* Honeypot — invisible to humans */
  .submission-form .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  
  /* Screenshot upload */
  .submission-form .file-drop {
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg-primary);
  }
  
  .submission-form .file-drop:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
  }
  
  .submission-form .file-drop.has-file {
    border-style: solid;
    border-color: var(--accent-green);
    color: var(--accent-green);
  }
  
  .submission-form .file-drop input[type="file"] {
    display: none;
  }
  
  .submission-form .file-preview {
    margin-top: 10px;
    max-width: 100%;
    max-height: 160px;
    border-radius: 6px;
    display: none;
  }
  
  .submission-form .file-preview.show {
    display: block;
  }
  
  /* Submit button — matches your report-pill aesthetic but bigger */
  .submission-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .submit-btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--accent-red);
    border-radius: 100px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .submit-btn-primary:hover {
    background: rgba(255,59,92,0.1);
    box-shadow: 0 0 24px rgba(255,59,92,0.2);
  }
  
  .submit-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .submit-btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .submit-btn-cancel:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
  }
  
  .submission-status-msg {
    font-family: var(--font-mono);
    font-size: 12px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    display: none;
  }
  
  .submission-status-msg.error {
    display: block;
    background: rgba(255,59,92,0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
  }
  
  .submission-status-msg.success {
    display: block;
    background: rgba(45,212,160,0.1);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
  }
  
  /* ============================================================
     ADMIN PAGE
     ============================================================ */
  .admin-wrap {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    margin-top:80px;
  }
  
  .admin-gate {
    max-width: 380px;
    margin: 120px auto;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
  }
  
  .admin-gate h1 {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 20px;
  }
  
  .admin-gate input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 14px;
    text-align: center;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 12px;
  }
  
  .admin-gate input:focus {
    border-color: var(--accent-red);
  }
  
  .admin-gate button {
    width: 100%;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--accent-red);
    border-radius: 100px;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .admin-gate button:hover {
    background: rgba(255,59,92,0.1);
  }
  
  .admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  
  .admin-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }
  
  .admin-tab.active {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
  }
  
  .admin-tab:hover {
    color: var(--text-primary);
  }
  
  .admin-tab .count {
    display: inline-block;
    margin-left: 6px;
    background: var(--bg-card);
    border-radius: 100px;
    padding: 2px 8px;
    font-size: 10px;
  }
  
  .submission-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
  }
  
  .submission-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
  }
  
  .submission-card-field {
    margin-bottom: 14px;
  }
  
  .submission-card-field .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
  }
  
  .submission-card-field .value {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-break: break-word;
  }
  
  .submission-card-field .value.mono {
    font-family: var(--font-mono);
    background: var(--bg-primary);
    padding: 10px 14px;
    border-radius: 6px;
    border-left: 2px solid var(--accent-red);
  }
  
  .submission-card .screenshot {
    max-width: 100%;
    max-height: 320px;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    margin-top: 6px;
  }
  
  .submission-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  
  .admin-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 8px 16px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg-primary);
    color: var(--text-muted);
    border: 1px solid var(--border);
  }
  
  .admin-btn.approve {
    border-color: var(--accent-green);
    color: var(--accent-green);
  }
  .admin-btn.approve:hover {
    background: rgba(45,212,160,0.1);
  }
  
  .admin-btn.reject {
    border-color: var(--accent-red);
    color: var(--accent-red);
  }
  .admin-btn.reject:hover {
    background: rgba(255,59,92,0.1);
  }
  
  .admin-btn.copy-json {
    border-color: var(--accent-blue, #4d8eff);
    color: var(--accent-blue, #4d8eff);
  }
  .admin-btn.copy-json:hover {
    background: rgba(77,142,255,0.1);
  }
  
  .admin-empty {
    text-align: center;
    padding: 60px 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
  }