    /* ============================================================
       CSS CUSTOM PROPERTIES
       ============================================================ */
    :root {
      /* Backgrounds — dark, moody bar */
      --bg-base:       #0a0e0b;
      --bg-surface:    #111a14;
      --bg-elevated:   #182418;
      --bg-bar-top:    #0d1210;

      /* Accents */
      --accent-amber:  #f0a832;
      --accent-amber-dim: #c4872a;
      --accent-teal:   #3dd6c8;
      --accent-neon-red: #ff3545;
      --accent-neon-pink: #ff6b7a;

      /* Text */
      --text-primary:  #dde4de;
      --text-muted:    #6a8a72;
      --text-chalk:    #c8bfa0;

      /* Borders & shadows */
      --border:        rgba(61, 214, 200, 0.12);
      --border-warm:   rgba(240, 168, 50, 0.15);
      --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.6);
      --shadow-neon-teal: 0 0 10px rgba(61, 214, 200, 0.4), 0 0 40px rgba(61, 214, 200, 0.15);
      --shadow-neon-red: 0 0 10px rgba(255, 53, 69, 0.5), 0 0 40px rgba(255, 53, 69, 0.2);

      /* Typography */
      --font-body:     'Inter', system-ui, sans-serif;
      --font-display:  'Sora', system-ui, sans-serif;
      --font-chalk:    'Permanent Marker', cursive;

      /* Motion */
      --transition-fast:   150ms ease;
      --transition-medium: 250ms ease;
    }

    /* ============================================================
       RESET & BASE
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg-base);
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* Film grain overlay for the whole page */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.035;
      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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    a {
      color: var(--accent-teal);
      text-decoration: none;
      transition: color var(--transition-fast);
    }
    a:hover, a:focus-visible { color: var(--accent-amber); }

    img { max-width: 100%; display: block; }

    /* ============================================================
       LAYOUT HELPERS
       ============================================================ */
    .container {
      width: 100%;
      max-width: 960px;
      margin-inline: auto;
      padding-inline: 1.25rem;
    }

    section { padding-block: 5rem; }

    .section-label {
      font-family: var(--font-chalk);
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      color: var(--accent-amber);
      margin-bottom: 0.25rem;
      letter-spacing: 0.02em;
    }

    .section-subtitle {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 2rem;
      font-style: italic;
    }

    .section-divider {
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-teal), var(--accent-amber));
      border-radius: 100px;
      margin-bottom: 2.5rem;
      opacity: 0.7;
    }

    /* ============================================================
       NAV — bar top rail
       ============================================================ */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 14, 11, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-warm);
    }

    .site-nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-block: 0.75rem;
    }

    .nav-logo {
      font-family: var(--font-chalk);
      font-weight: 400;
      font-size: 1.15rem;
      color: var(--accent-amber);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .nav-logo:hover { color: var(--accent-amber); text-decoration: none; }
    .nav-logo img {
      width: 32px;
      height: 32px;
      border-radius: 6px;
    }

    .nav-links {
      display: flex;
      gap: 1.8rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .nav-links a:hover, .nav-links a:focus-visible {
      color: var(--accent-teal);
      text-decoration: none;
    }

    /* Mobile hamburger */
    .nav-toggle { display: none; background: none; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-block: 4rem 5rem;
    }

    /* Dark moody gradient background */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 35%, rgba(61, 214, 200, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 65%, rgba(240, 168, 50, 0.03) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* Subtle scratched-wall texture */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cline x1='5' y1='12' x2='35' y2='14' stroke='%23888' stroke-width='0.3' opacity='.5'/%3E%3Cline x1='60' y1='45' x2='95' y2='43' stroke='%23888' stroke-width='0.2' opacity='.4'/%3E%3Cline x1='20' y1='70' x2='55' y2='72' stroke='%23888' stroke-width='0.3' opacity='.3'/%3E%3Cline x1='70' y1='85' x2='90' y2='84' stroke='%23888' stroke-width='0.2' opacity='.4'/%3E%3Ccircle cx='80' cy='20' r='0.5' fill='%23888' opacity='.3'/%3E%3Ccircle cx='15' cy='90' r='0.4' fill='%23888' opacity='.2'/%3E%3C/svg%3E");
      background-size: 100px 100px;
      pointer-events: none;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin-inline: auto;
    }

    /* ── NEON "OPEN" SIGN ── */
    .neon-sign {
      display: inline-block;
      position: relative;
      margin-bottom: 1.5rem;
      cursor: default;
    }

    .neon-sign-oval {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 280px;
      height: 130px;
      margin-inline: auto;
      border: 3px solid var(--accent-neon-red);
      border-radius: 50%;
      box-shadow:
        0 0 8px rgba(255, 53, 69, 0.5),
        0 0 25px rgba(255, 53, 69, 0.25),
        inset 0 0 8px rgba(255, 53, 69, 0.15);
      animation: neon-flicker 4s infinite;
    }

    .neon-sign-text {
      font-family: var(--font-chalk);
      font-size: clamp(2.8rem, 7vw, 3.5rem);
      color: var(--accent-teal);
      text-shadow:
        0 0 7px rgba(61, 214, 200, 0.8),
        0 0 20px rgba(61, 214, 200, 0.5),
        0 0 40px rgba(61, 214, 200, 0.3),
        0 0 80px rgba(61, 214, 200, 0.15);
      letter-spacing: 0.15em;
      animation: neon-glow 4s infinite;
      user-select: none;
    }

    /* Chains (decorative lines above the oval) */
    .neon-sign-chains {
      display: flex;
      justify-content: center;
      gap: 120px;
      margin-bottom: -4px;
    }
    .neon-sign-chain {
      width: 2px;
      height: 30px;
      background: linear-gradient(to bottom, rgba(100,100,100,0.1), rgba(100,100,100,0.35));
      border-radius: 1px;
    }

    @keyframes neon-glow {
      0%, 100% { opacity: 1; }
      4% { opacity: 0.88; }
      6% { opacity: 1; }
      50% { opacity: 0.95; }
      52% { opacity: 1; }
    }

    @keyframes neon-flicker {
      0%, 100% { opacity: 1; }
      4% { opacity: 0.85; }
      6% { opacity: 1; }
      50% { opacity: 0.92; }
      52% { opacity: 1; }
      80% { opacity: 0.97; }
      81% { opacity: 1; }
    }

    .hero-title {
      font-family: var(--font-chalk);
      font-size: clamp(2.2rem, 7vw, 4rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--text-chalk);
      margin-bottom: 0.75rem;
      text-shadow: 0 2px 15px rgba(200, 191, 160, 0.15);
    }

    .hero-title .highlight {
      color: var(--accent-amber);
      text-shadow:
        0 0 10px rgba(240, 168, 50, 0.4),
        0 2px 15px rgba(240, 168, 50, 0.15);
    }

    .hero-format-label {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent-teal);
      background: rgba(61, 214, 200, 0.08);
      border: 1px solid rgba(61, 214, 200, 0.25);
      border-radius: 100px;
      padding: 0.3em 1.1em;
      margin-bottom: 1rem;
    }

    .hero-tagline {
      font-size: clamp(1rem, 2.5vw, 1.15rem);
      font-style: italic;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .hero-invite {
      font-size: clamp(0.95rem, 2vw, 1.05rem);
      color: var(--accent-teal);
      margin-bottom: 1.5rem;
      opacity: 0.85;
    }

    .hero-description {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 560px;
      margin-inline: auto;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 0.8em 2em;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
      text-decoration: none;
    }

    .btn-primary {
      background: var(--accent-amber);
      color: #0a0e0b;
      box-shadow: 0 2px 12px rgba(240, 168, 50, 0.3);
    }
    .btn-primary:hover, .btn-primary:focus-visible {
      background: #f5bc57;
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(240, 168, 50, 0.45);
      color: #0a0e0b;
      text-decoration: none;
    }

    /* ============================================================
       WHAT IS THIS PLACE? (About section)
       ============================================================ */
    .about-section {
      background: var(--bg-surface);
      border-top: 1px solid var(--border-warm);
      border-bottom: 1px solid var(--border);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
    }

    .about-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.8rem;
    }

    .about-card-icon {
      font-size: 1.6rem;
      margin-bottom: 0.75rem;
      display: block;
    }

    .about-card h3 {
      font-family: var(--font-chalk);
      font-size: 1.15rem;
      color: var(--accent-amber);
      margin-bottom: 0.5rem;
    }

    .about-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* ============================================================
       THE REGULARS — full-width stacked collapsible cards
       ============================================================ */
    .regulars-stack {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .regular-card {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: var(--shadow-card);
      transition: border-color var(--transition-medium);
      position: relative;
      overflow: hidden;
    }
    .regular-card:hover {
      border-color: rgba(61, 214, 200, 0.25);
    }

    /* Subtle warm light from above each card */
    .regular-card::before {
      content: '';
      position: absolute;
      top: -60%;
      left: 20%;
      right: 20%;
      height: 100%;
      background: radial-gradient(ellipse at center top, rgba(240, 168, 50, 0.05), transparent 70%);
      pointer-events: none;
    }

    /* ── Collapsed header (always visible) ── */
    .regular-header {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 1.2rem;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      user-select: none;
      position: relative;
      z-index: 1;
    }

    .regular-header-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      width: 96px;
      flex-shrink: 0;
    }

    .regular-avatar {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 3px solid var(--border-warm);
      box-shadow: 0 0 20px rgba(240, 168, 50, 0.12);
      object-fit: cover;
      background: var(--bg-elevated);
      flex-shrink: 0;
    }

    .regular-socials {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      flex-wrap: wrap;
    }

    .regular-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 0.78rem;
      transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
      text-decoration: none;
    }
    .regular-social-link:hover {
      color: var(--accent-teal);
      border-color: var(--accent-teal);
      background: rgba(61, 214, 200, 0.08);
      text-decoration: none;
    }

    .regular-header-info {
      min-width: 0;
    }

    .regular-name {
      font-family: var(--font-chalk);
      font-size: 1.3rem;
      color: var(--accent-amber);
      margin-bottom: 0.1rem;
      line-height: 1.2;
    }

    .regular-tagline {
      font-size: 0.8rem;
      color: var(--accent-teal);
      font-weight: 500;
      margin-bottom: 0.5rem;
      letter-spacing: 0.02em;
    }

    .regular-preview {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.55;
      margin: 0;
    }

    .regular-expand-btn {
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0.5rem;
      transition: color var(--transition-fast), transform var(--transition-medium);
      flex-shrink: 0;
      align-self: center;
    }
    .regular-expand-btn:hover { color: var(--accent-teal); }
    .regular-card.expanded .regular-expand-btn { transform: rotate(180deg); }

    /* ── Expanded bio (hidden by default) ── */
    .regular-bio-full {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 1.5rem;
    }
    .regular-card.expanded .regular-bio-full {
      max-height: 600px;
      padding: 0 1.5rem 1.5rem;
    }

    .regular-bio-full-inner {
      padding-top: 0.75rem;
      border-top: 1px solid var(--border);
    }

    .regular-bio-text {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.75;
    }

    /* Obi special styling */
    .regular-card.obi-card {
      border-color: rgba(61, 214, 200, 0.2);
    }
    .regular-card.obi-card:hover {
      border-color: rgba(61, 214, 200, 0.35);
    }

    .obi-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-teal);
      background: rgba(61, 214, 200, 0.08);
      border: 1px solid rgba(61, 214, 200, 0.25);
      border-radius: 100px;
      padding: 0.2em 0.7em;
      margin-left: 0.4rem;
    }

    /* Obi easter egg: hidden details panel */
    .obi-secret {
      display: none;
      margin-top: 0.75rem;
      padding: 0.8rem;
      background: rgba(61, 214, 200, 0.05);
      border: 1px dashed rgba(61, 214, 200, 0.25);
      border-radius: 8px;
      font-size: 0.78rem;
      color: var(--accent-teal);
      text-align: left;
      font-family: 'Courier New', monospace;
      line-height: 1.5;
    }
    .obi-secret.revealed { display: block; animation: fadeIn 0.4s ease; }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

    /* ============================================================
       EPISODES
       ============================================================ */
    .episodes-section {
      background: var(--bg-surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .episode-card {
      position: relative;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: border-color var(--transition-medium);
      isolation: isolate;
    }
    .episode-card:hover {
      border-color: rgba(240, 168, 50, 0.3);
    }

    .episode-thumbnail {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.18;
      filter: blur(1px);
      z-index: 0;
      pointer-events: none;
    }
    .episode-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,14,11,0.55) 0%, rgba(10,14,11,0.85) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .episode-info {
      position: relative;
      z-index: 2;
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
    }

    .episode-number {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-teal);
      margin-bottom: 0.3rem;
    }

    .episode-title {
      font-family: var(--font-chalk);
      font-size: 1.2rem;
      color: var(--text-chalk);
      margin-bottom: 0.4rem;
    }

    .episode-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .episode-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .episode-listen {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--accent-amber);
    }
    .episode-listen:hover { color: var(--accent-teal); }

    /* Placeholder for future episodes */
    .episodes-coming {
      text-align: center;
      padding: 2rem;
      color: var(--text-muted);
      font-style: italic;
    }

    /* ============================================================
       SCOREBOARD
       ============================================================ */
    .scoreboard-section {
      background: var(--bg-surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .sb-chip-bars { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
    .sb-chip-row {
      display: grid; grid-template-columns: 80px 1fr 50px;
      align-items: center; gap: 0.75rem;
    }
    .sb-chip-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); text-align: right; }
    .sb-chip-track { height: 28px; background: rgba(240, 168, 50, 0.08); border-radius: 6px; overflow: hidden; }
    .sb-chip-fill {
      height: 100%; border-radius: 6px;
      transition: width 0.6s ease;
    }
    .sb-chip-val { font-size: 0.85rem; font-weight: 700; color: var(--accent-amber); }
    .sb-colors-0 { background: linear-gradient(90deg, rgba(240,168,50,0.3), rgba(240,168,50,0.7)); }
    .sb-colors-1 { background: linear-gradient(90deg, rgba(61,214,200,0.3), rgba(61,214,200,0.7)); }
    .sb-colors-2 { background: linear-gradient(90deg, rgba(255,107,122,0.3), rgba(255,107,122,0.7)); }
    .sb-colors-3 { background: linear-gradient(90deg, rgba(126,202,126,0.3), rgba(126,202,126,0.7)); }
    .sb-colors-4 { background: linear-gradient(90deg, rgba(176,136,249,0.3), rgba(176,136,249,0.7)); }

    .sb-subhead {
      font-family: var(--font-display); font-size: 1rem; font-weight: 700;
      color: var(--accent-amber); margin-bottom: 0.75rem; margin-top: 1.5rem;
    }

    .sb-bet-card {
      background: var(--bg-elevated); border: 1px solid var(--border);
      border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 0.75rem;
    }
    .sb-bet-prediction { font-size: 0.92rem; color: var(--text-primary); margin-bottom: 0.4rem; }
    .sb-bet-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
    .sb-chip-badge { color: var(--accent-amber); font-weight: 600; }
    .sb-status { display: inline-block; font-size: 0.68rem; font-weight: 600; padding: 0.1rem 0.4rem; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.04em; }
    .sb-status-open { color: var(--accent-teal); border: 1px solid rgba(61,214,200,0.3); }
    .sb-status-called { color: var(--accent-amber); border: 1px solid rgba(240,168,50,0.3); }
    .sb-status-win { color: #7eca7e; border: 1px solid rgba(126,202,126,0.3); }
    .sb-status-loss { color: #ff3545; border: 1px solid rgba(255,53,69,0.3); }
    .sb-status-void { color: var(--text-muted); border: 1px solid var(--border); text-decoration: line-through; }

    .sb-endorse-btn {
      background: rgba(61,214,200,0.1); border: 1px solid rgba(61,214,200,0.3);
      color: var(--accent-teal); font-size: 0.75rem; font-weight: 600;
      padding: 0.2rem 0.6rem; border-radius: 4px; cursor: pointer;
      transition: background var(--transition-fast);
    }
    .sb-endorse-btn:hover { background: rgba(61,214,200,0.2); }
    .sb-endorse-btn:disabled { opacity: 0.4; cursor: default; }
    .sb-endorse-count { font-size: 0.72rem; color: var(--accent-teal); }

    .sb-fan-area {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem;
    }
    .sb-fan-box {
      background: var(--bg-elevated); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.2rem;
    }
    .sb-fan-box h3 { font-family: var(--font-display); font-size: 0.95rem; color: var(--accent-amber); margin-bottom: 0.75rem; }
    .sb-fan-input {
      background: var(--bg-surface); border: 1px solid var(--border);
      color: var(--text-primary); padding: 0.5rem 0.75rem; border-radius: 6px;
      font-size: 0.85rem; width: 100%;
    }
    .sb-fan-input:focus { outline: none; border-color: var(--accent-teal); }
    .sb-fan-submit {
      background: var(--accent-teal); color: var(--bg-base); border: none;
      font-size: 0.8rem; font-weight: 600; padding: 0.4rem 1rem;
      border-radius: 6px; cursor: pointer; margin-top: 0.5rem;
    }
    .sb-fan-submit:hover { opacity: 0.9; }
    .sb-fan-row { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.82rem; border-bottom: 1px solid var(--border); }
    .sb-fan-row:last-child { border-bottom: none; }
    .sb-fan-name { color: var(--text-primary); }
    .sb-fan-stat { color: var(--accent-teal); font-weight: 600; }
    .sb-fan-welcome { font-size: 0.85rem; color: var(--accent-teal); margin-bottom: 0.5rem; }
    .sb-fan-mystats { font-size: 0.8rem; color: var(--text-muted); }

    .sb-empty { text-align: center; color: var(--text-muted); font-style: italic; padding: 1.5rem; font-size: 0.85rem; }

    /* ── Auth modal (shared login/register) ──────────────── */
    .auth-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.7);
      display: none; align-items: center; justify-content: center;
      z-index: 1000; padding: 1rem;
    }
    .auth-overlay.open { display: flex; }
    .auth-modal {
      background: var(--bg-elevated); border: 1px solid var(--border);
      border-radius: 12px; padding: 1.5rem; max-width: 400px; width: 100%;
      position: relative;
    }
    .auth-modal h3 {
      font-family: var(--font-display); color: var(--accent-amber);
      font-size: 1.1rem; margin-bottom: 0.5rem;
    }
    .auth-modal p.auth-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
    .auth-modal .auth-close {
      position: absolute; top: 0.6rem; right: 0.9rem;
      background: none; border: none; color: var(--text-muted);
      font-size: 1.3rem; cursor: pointer; line-height: 1;
    }
    .auth-modal .auth-close:hover { color: var(--text-primary); }
    .auth-modal .sb-fan-input { margin-top: 0.4rem; }
    .auth-modal .auth-error { color: #ff3545; font-size: 0.8rem; margin-top: 0.6rem; min-height: 1em; }
    .auth-modal .auth-info { color: var(--accent-teal); font-size: 0.8rem; margin-top: 0.6rem; }
    .auth-modal .auth-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
    .auth-modal .auth-actions .sb-fan-submit { margin-top: 0; }
    .auth-modal .auth-secondary {
      background: transparent; color: var(--text-muted); border: 1px solid var(--border);
    }
    #nav-auth-link .auth-display {
      display: inline-flex; align-items: center; gap: 0.4rem;
    }

    /* ── Games section ───────────────────────────────────── */
    .games-section { padding: 4rem 0; background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .games-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
    @media (max-width: 820px) { .games-grid { grid-template-columns: 1fr; } }
    .games-stack { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
    .pool-wrap { position: relative; width: 100%; margin: 0.75rem auto 0; aspect-ratio: 600 / 320; max-width: 900px; }
    .shuffle-wrap { position: relative; width: 100%; max-width: 260px; margin: 0.75rem auto 0; aspect-ratio: 320 / 560; }
    #shuffle-canvas { width: 100%; height: 100%; display: block; cursor: crosshair; border-radius: 10px; border: 1px solid var(--border); }
    #pool-canvas { width: 100%; height: 100%; display: block; cursor: crosshair; background: #0e2b1a; border-radius: 10px; border: 1px solid var(--border); }
    .game-box, .leaderboard-box {
      background: var(--bg-elevated); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.25rem;
    }
    .game-box h3, .leaderboard-box h3 {
      font-family: var(--font-display); color: var(--accent-amber); font-size: 1rem; margin-bottom: 0.5rem;
    }
    .darts-wrap { position: relative; width: 100%; max-width: 420px; margin: 0.75rem auto 0; aspect-ratio: 1 / 1; }
    #darts-canvas { width: 100%; height: 100%; display: block; cursor: crosshair; background: #1a1f1a; border-radius: 50%; border: 1px solid var(--border); }
    .darts-hud {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; gap: 0.5rem; flex-wrap: wrap;
    }
    .darts-hud strong { color: var(--accent-teal); }
    .darts-msg { min-height: 1.4em; font-size: 0.85rem; color: var(--accent-amber); margin-top: 0.4rem; text-align: center; }
    .darts-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
    .lb-row {
      display: grid; grid-template-columns: 28px 1fr 60px;
      gap: 0.6rem; padding: 0.4rem 0; font-size: 0.85rem;
      border-bottom: 1px solid var(--border);
    }
    .lb-row:last-child { border-bottom: none; }
    .lb-rank { color: var(--text-muted); text-align: right; }
    .lb-name { color: var(--text-primary); }
    .lb-score { color: var(--accent-amber); font-weight: 700; text-align: right; }
    .lb-me { background: rgba(61,214,200,0.08); }

    /* ── Trivia game ─────────────────────────────────────── */
    .trivia-q { font-size: 1rem; line-height: 1.45; margin: 0.75rem 0 0.9rem; min-height: 3rem; }
    .trivia-choices { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
    .trivia-choice {
      background: var(--bg-surface); border: 1px solid var(--border);
      color: var(--text-primary); text-align: left;
      padding: 0.6rem 0.8rem; border-radius: 6px; cursor: pointer;
      font-size: 0.9rem; font-family: inherit; transition: background 0.15s, border-color 0.15s;
    }
    .trivia-choice:hover:not(:disabled) { background: var(--bg-elevated); border-color: var(--accent-teal); }
    .trivia-choice:disabled { opacity: 0.75; cursor: default; }
    .trivia-choice.correct { background: rgba(126,202,126,0.18); border-color: #7eca7e; color: #bfe9bf; }
    .trivia-choice.wrong { background: rgba(255,53,69,0.15); border-color: #ff3545; color: #ffc6ca; }
    .trivia-timer { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin-top: 0.75rem; }
    .trivia-timer-fill { height: 100%; background: var(--accent-amber); width: 100%; transition: width 0.2s linear; }
    .trivia-hud {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.82rem; color: var(--text-muted); margin-top: 0.6rem; gap: 0.5rem; flex-wrap: wrap;
    }
    .trivia-hud strong { color: var(--accent-teal); }
    .trivia-final {
      text-align: center; padding: 1rem; font-size: 0.95rem;
    }
    .trivia-final .big-score { font-family: var(--font-display); font-size: 2.2rem; color: var(--accent-amber); display: block; margin: 0.25rem 0; }

    /* ── Submit section ──────────────────────────────────── */
    .submit-section { padding: 4rem 0; background: var(--bg-deep, var(--bg-base)); }
    .submit-box {
      max-width: 680px; margin: 1.5rem auto 0;
      background: var(--bg-elevated); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.5rem;
    }
    .submit-box h3 { font-family: var(--font-display); color: var(--accent-amber); font-size: 1rem; margin-bottom: 0.75rem; }
    .submit-box textarea.sb-fan-input {
      min-height: 100px; resize: vertical; font-family: inherit; line-height: 1.5;
    }
    .submit-box .submit-kind {
      display: flex; gap: 0.75rem; margin: 0.5rem 0 0.75rem; font-size: 0.85rem;
    }
    .submit-box .submit-kind label { color: var(--text-muted); cursor: pointer; }
    .submit-box .submit-kind input { margin-right: 0.35rem; }
    .submissions-list { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
    .submissions-list h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
    .sub-item {
      padding: 0.6rem 0; border-bottom: 1px solid var(--border);
      font-size: 0.88rem; display: flex; gap: 0.75rem; align-items: flex-start;
    }
    .sub-item:last-child { border-bottom: none; }
    .sub-body { flex: 1; color: var(--text-primary); white-space: pre-wrap; }
    .sub-status {
      font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 10px;
      text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0;
    }
    .sub-status-pending  { color: var(--accent-amber); background: rgba(240, 168, 50, 0.1); }
    .sub-status-approved { color: var(--accent-teal); background: rgba(61, 214, 200, 0.1); }
    .sub-status-used     { color: #7eca7e; background: rgba(126, 202, 126, 0.15); }
    .sub-status-rejected { color: var(--text-muted); background: rgba(120,120,120,0.15); text-decoration: line-through; }
    .sub-delete {
      background: none; border: none; color: var(--text-muted);
      cursor: pointer; padding: 0.1rem 0.3rem; font-size: 0.85rem;
    }
    .sub-delete:hover { color: var(--accent-neon-red); }

    /* ── Episode comments ────────────────────────────────── */
    .episode-comments { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 0.75rem; }
    .ec-toggle {
      background: none; border: none; color: var(--accent-teal);
      font-size: 0.88rem; cursor: pointer; padding: 0.25rem 0;
    }
    .ec-toggle:hover { text-decoration: underline; }
    .ec-panel { margin-top: 0.75rem; }
    .ec-form textarea.sb-fan-input { min-height: 60px; resize: vertical; }
    .ec-form { margin-bottom: 1rem; }
    .ec-form .ec-submit-row { display:flex; gap:0.5rem; align-items:center; margin-top:0.4rem; }
    .ec-comment {
      padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem;
    }
    .ec-comment:last-child { border-bottom: none; }
    .ec-comment.ec-reply { margin-left: 2rem; border-left: 2px solid var(--border); padding-left: 0.75rem; }
    .ec-comment.ec-deleted .ec-body { color: var(--text-muted); font-style: italic; }
    .ec-comment.ec-hidden .ec-body { color: var(--text-muted); font-style: italic; }
    .ec-head { display: flex; gap: 0.5rem; align-items: baseline; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.2rem; }
    .ec-name { color: var(--accent-teal); font-weight: 600; }
    .ec-body { color: var(--text-primary); white-space: pre-wrap; }
    .ec-actions { margin-top: 0.3rem; display: flex; gap: 0.75rem; font-size: 0.78rem; }
    .ec-actions button {
      background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0; font-size: inherit;
    }
    .ec-actions button:hover { color: var(--accent-teal); }
    .ec-signin-prompt { font-size: 0.85rem; color: var(--text-muted); padding: 0.5rem 0; }
    .ec-signin-prompt button {
      background: none; border: none; color: var(--accent-teal); cursor: pointer; padding: 0; font-size: inherit; text-decoration: underline;
    }

    @media (max-width: 700px) {
      .sb-fan-area { grid-template-columns: 1fr; }
      .sb-chip-row { grid-template-columns: 60px 1fr 40px; }
    }

    /* ============================================================
       FOLLOW THE BAR
       ============================================================ */
    .follow-section { text-align: center; }

    .socials-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      justify-content: center;
    }

    .social-platform-link {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--text-primary);
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.7em 1.3em;
      box-shadow: var(--shadow-card);
      transition: color var(--transition-fast), border-color var(--transition-fast),
                  transform var(--transition-fast), box-shadow var(--transition-fast);
      text-decoration: none;
    }
    .social-platform-link:hover, .social-platform-link:focus-visible {
      color: var(--accent-teal);
      border-color: var(--accent-teal);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(61, 214, 200, 0.15);
      text-decoration: none;
    }

    .social-platform-link .fa-brands,
    .social-platform-link .fa-solid { font-size: 1.1rem; }

    .social-platform-link .fa-x-twitter   { color: #e7e7e7; }
    .social-platform-link .fa-instagram    { color: #e1306c; }
    .social-platform-link .fa-youtube      { color: #ff0000; }
    .social-platform-link .fa-spotify      { color: #1db954; }
    .social-platform-link .fa-podcast      { color: #9b59b6; }
    .social-platform-link .fa-discord      { color: #5865f2; }
    .social-platform-link .fa-envelope     { color: var(--accent-amber); }

    /* ============================================================
       FOOTER
       ============================================================ */
    .site-footer {
      background: #060907;
      border-top: 1px solid var(--border-warm);
      padding-block: 3rem;
      text-align: center;
    }

    .footer-logo-img {
      width: 80px;
      height: 80px;
      border-radius: 12px;
      margin: 0 auto 0.75rem;
      opacity: 0.8;
    }

    .footer-name {
      font-family: var(--font-chalk);
      font-size: 1.1rem;
      color: var(--accent-amber);
      margin-bottom: 0.25rem;
    }

    .footer-tagline {
      font-size: 0.82rem;
      color: var(--text-muted);
      font-style: italic;
      margin-bottom: 1rem;
    }

    .footer-copyright {
      font-size: 0.75rem;
      color: #2a3d30;
    }

    /* ============================================================
       UTILITIES
       ============================================================ */
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
      .episode-info { padding: 1.2rem; }
    }

    @media (max-width: 600px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 11, 0.97);
        padding: 1rem;
        gap: 0.8rem;
        border-bottom: 1px solid var(--border);
      }

      .hero { min-height: 90vh; }

      .neon-sign-oval {
        width: 220px;
        height: 105px;
      }
      .neon-sign-chains { gap: 90px; }

      /* Regulars: stack avatar above info on mobile */
      .regular-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.8rem;
        padding: 1.2rem 1rem;
      }
      .regular-header-left {
        justify-self: center;
      }
      .regular-expand-btn {
        justify-self: center;
      }
      .regular-avatar {
        width: 80px;
        height: 80px;
      }
      .regular-bio-full {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .socials-grid { gap: 0.6rem; }
      .social-platform-link { font-size: 0.85rem; padding: 0.6em 1em; }
    }

    /* ============================================================
       EASTER EGG: Konami code effect
       ============================================================ */
    .konami-active .neon-sign-oval {
      animation: neon-party 0.5s infinite alternate;
    }

    @keyframes neon-party {
      0% {
        border-color: var(--accent-neon-red);
        box-shadow: 0 0 15px rgba(255, 53, 69, 0.7), inset 0 0 15px rgba(255, 53, 69, 0.2);
      }
      33% {
        border-color: var(--accent-teal);
        box-shadow: 0 0 15px rgba(61, 214, 200, 0.7), inset 0 0 15px rgba(61, 214, 200, 0.2);
      }
      66% {
        border-color: var(--accent-amber);
        box-shadow: 0 0 15px rgba(240, 168, 50, 0.7), inset 0 0 15px rgba(240, 168, 50, 0.2);
      }
      100% {
        border-color: #9b59b6;
        box-shadow: 0 0 15px rgba(155, 89, 182, 0.7), inset 0 0 15px rgba(155, 89, 182, 0.2);
      }
    }

    .konami-active .neon-sign-text {
      animation: neon-text-party 0.3s infinite alternate;
    }

    @keyframes neon-text-party {
      0% { color: var(--accent-teal); text-shadow: 0 0 10px rgba(61, 214, 200, 0.9), 0 0 30px rgba(61, 214, 200, 0.5); }
      50% { color: var(--accent-neon-pink); text-shadow: 0 0 10px rgba(255, 107, 122, 0.9), 0 0 30px rgba(255, 107, 122, 0.5); }
      100% { color: var(--accent-amber); text-shadow: 0 0 10px rgba(240, 168, 50, 0.9), 0 0 30px rgba(240, 168, 50, 0.5); }
    }

    .konami-toast {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      background: var(--bg-elevated);
      color: var(--accent-teal);
      font-family: var(--font-chalk);
      font-size: 1.1rem;
      padding: 0.8rem 1.5rem;
      border-radius: 12px;
      border: 1px solid var(--accent-teal);
      box-shadow: var(--shadow-neon-teal);
      z-index: 10000;
      animation: toastIn 0.4s ease, toastOut 0.4s ease 7.6s forwards;
      text-align: center;
    }
    .konami-toast-link {
      display: block;
      margin-top: 0.4rem;
      color: var(--accent-amber);
      font-size: 0.95rem;
      text-decoration: underline;
      cursor: pointer;
    }
    .konami-toast-link:hover { color: #fff; }

    .back-room-link {
      color: var(--accent-amber);
      text-decoration: none;
      font-size: 0.82rem;
      opacity: 0.75;
      transition: opacity 0.2s ease;
    }
    .back-room-link:hover { opacity: 1; text-decoration: underline; }

    @keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
    @keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* ── Back room (/backroom.html) ──────────────────────────── */
.backroom-hero {
  padding: 5rem 0 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(240, 168, 50, 0.08) 0%, transparent 60%),
    var(--bg-primary);
}
.backroom-hero h1 {
  font-family: var(--font-chalk);
  font-size: 2.4rem;
  color: var(--accent-amber);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.backroom-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}
.backroom-section {
  padding: 2rem 0 4rem;
}
.backroom-lore {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 1.75rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  line-height: 1.7;
  color: var(--text-primary);
}
.backroom-lore h2 {
  font-family: var(--font-chalk);
  color: var(--accent-teal);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.backroom-lore p { margin-bottom: 1rem; color: var(--text-secondary); }
.backroom-lore p:last-child { margin-bottom: 0; }
.backroom-ascii {
  font-family: monospace;
  color: var(--accent-amber);
  font-size: 0.82rem;
  white-space: pre;
  text-align: center;
  margin: 1.4rem 0;
  opacity: 0.85;
  line-height: 1.25;
}
.backroom-hall {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.backroom-hall h2 {
  font-family: var(--font-chalk);
  color: var(--accent-amber);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.backroom-hall-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.backroom-count {
  display: inline-block;
  font-family: var(--font-chalk);
  color: var(--accent-teal);
  font-size: 1rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--accent-teal);
  border-radius: 20px;
  margin-left: 0.5rem;
}
.backroom-hall ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.backroom-hall li {
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--border);
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.backroom-hall li.found {
  border-left-color: var(--accent-teal);
  color: var(--text-primary);
  background: rgba(61, 214, 200, 0.06);
}
.backroom-hall li .egg-mark {
  display: inline-block;
  width: 1.4rem;
  font-weight: bold;
  color: var(--text-muted);
}
.backroom-hall li.found .egg-mark { color: var(--accent-teal); }
.backroom-hall li .egg-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-left: 0.4rem;
}

/* ── Games page hero (used on games.html) ─────────────── */
.games-hero {
  padding: 3rem 0 1rem;
  text-align: center;
}
