/* =========================================================
   BARRRNONE.COM — GFC stylesheet
   Palette: deep navy bg, American red accent, parchment text
   Font stack: Barlow Condensed (display) + Inter (body) + Space Mono (mono)
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg:        #080d18;
  --bg-2:      #0c1220;
  --bg-3:      #111827;
  --bg-4:      #192035;
  --accent:    #c8102e;   /* American red */
  --accent-dim:#9a0c23;
  --accent-2:  #b8860b;   /* muted gold for secondary accents */
  --text:      #f2ede3;
  --text-dim:  #8b96a8;
  --text-muted:#3d4a5c;
  --border:    rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =========================================================
   LAYOUT
========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* =========================================================
   NAV
========================================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(8,13,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }
.nav-logo .nav-logo-sep { color: var(--text-muted); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 12px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links .nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 7px 16px;
  font-weight: 700;
}
.nav-links .nav-cta:hover { background: #e01535; color: #fff; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile a {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* =========================================================
   EYEBROW + SECTION TITLES
========================================================= */
.eyebrow {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 5px 12px;
  margin-bottom: 24px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 48px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.btn-primary:hover { background: #e01535; }
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

/* =========================================================
   MARQUEE / TICKER
========================================================= */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   CARDS / GRID
========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.card {
  background: var(--bg-3);
  padding: 40px 36px;
  transition: background 0.2s;
}
.card:hover { background: var(--bg-4); }

/* =========================================================
   VIDEO GRID
========================================================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.video-thumb:hover img { transform: scale(1.04); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: background 0.2s;
}
.video-thumb:hover .video-play { background: rgba(0,0,0,0.2); }
.video-play svg { width: 48px; height: 48px; fill: #fff; opacity: 0.9; }

/* =========================================================
   VIDEO MODAL
========================================================= */
#videoModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
#videoModal.open { display: flex; }
.modal-inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16/9;
}
#modalIframe {
  width: 100%; height: 100%;
  border: none;
}
#modalClose {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 0;
}
#modalClose:hover { color: var(--text); }

/* =========================================================
   CATEGORY FILTER
========================================================= */
.cat-filter {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cat-btn {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--bg-3);
  color: var(--text-dim);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-btn:hover { color: var(--text); border-color: var(--border-hi); }
.cat-btn.active { background: var(--accent); color: #080808; border-color: var(--accent); font-weight: 700; }

/* =========================================================
   CHAT
========================================================= */
.chat-window {
  background: var(--bg-3);
  border: 1px solid var(--border);
  height: 420px;
  overflow-y: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2px;
}
.chat-bubble {
  max-width: 75%;
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.6;
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--bg-4);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.chat-bubble.jake {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}
.chat-form {
  display: flex;
  gap: 2px;
}
.chat-input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  padding: 14px 18px;
  font-family: 'Space Grotesk', sans-serif;
  outline: none;
}
.chat-input:focus { border-color: var(--border-hi); }
.chat-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-submit:hover { background: #e01535; }

/* =========================================================
   FOOTER
========================================================= */
#footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-mark {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-mark span { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* =========================================================
   FADE-IN ANIMATION
========================================================= */
[data-fade] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-fade].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* =========================================================
   ON-AIR INDICATOR
   Studio on-air light — lit red + pulsing when live,
   dark + inert when offline
========================================================= */
.onair-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  user-select: none;
  border-radius: 2px;
}
.onair-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
/* LIVE state */
.onair-indicator.live {
  color: #ff4444;
  text-decoration: none;
  cursor: pointer;
}
.onair-indicator.live .onair-dot {
  background: #ff2222;
  box-shadow:
    0 0 0 2px rgba(255,34,34,0.25),
    0 0 8px #ff0000,
    0 0 18px rgba(255,0,0,0.55);
  animation: onair-pulse 1.5s ease-in-out infinite;
}
.onair-indicator.live:hover { color: #ff6666; }
/* OFFLINE state */
.onair-indicator.offline {
  color: var(--text-muted);
  cursor: default;
}
.onair-indicator.offline .onair-dot {
  background: #1e2232;
  border: 1px solid #2e3347;
}
/* Mobile nav override — larger touch target */
.nav-mobile .onair-indicator {
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 0;
}
.nav-mobile .onair-dot {
  width: 10px;
  height: 10px;
}
@keyframes onair-pulse {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(255,34,34,0.25), 0 0 8px #ff0000, 0 0 18px rgba(255,0,0,0.55);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255,34,34,0.15), 0 0 16px #ff0000, 0 0 40px rgba(255,0,0,0.4), 0 0 70px rgba(255,0,0,0.15);
    opacity: 0.82;
  }
}

/* =========================================================
   JAKE CHAT WIDGET — floating launcher + panel
========================================================= */
.jcw {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
/* Launcher button */
.jcw-launcher {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,16,46,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  flex-shrink: 0;
}
.jcw-launcher:hover {
  background: #e01535;
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(200,16,46,0.65), 0 2px 10px rgba(0,0,0,0.5);
}
.jcw-launcher svg { width: 22px; height: 22px; }
/* Panel */
.jcw-panel {
  width: 340px;
  max-height: 480px;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 48px rgba(0,0,0,0.65), 0 2px 8px rgba(0,0,0,0.3);
  transform-origin: bottom right;
  transform: scale(0.88) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), opacity 0.18s ease;
}
.jcw-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
/* Header */
.jcw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-3);
}
.jcw-header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.jcw-title {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.jcw-sub {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.jcw-header-actions {
  display: flex;
  gap: 4px;
  align-items: center;
}
/* Header icon buttons */
.jcw-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.jcw-btn:hover {
  color: var(--text);
  border-color: var(--border-hi);
  background: var(--bg-4);
}
.jcw-expand-btn { font-size: 11px; }
/* Messages */
.jcw-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-4) transparent;
}
.jcw-messages .chat-bubble {
  font-size: 13px;
  padding: 10px 14px;
}
/* Input form */
.jcw-form {
  display: flex;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.jcw-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 13px;
  padding: 12px 14px;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.jcw-input::placeholder { color: var(--text-muted); }
.jcw-send {
  background: var(--bg-3);
  color: var(--text-dim);
  border: none;
  border-left: 1px solid var(--border);
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.jcw-send svg { width: 16px; height: 16px; }
.jcw-send:hover { background: var(--accent); color: #fff; }
/* Mobile tweaks */
@media (max-width: 420px) {
  .jcw { bottom: 16px; right: 16px; }
  .jcw-panel { width: calc(100vw - 32px); }
  .jcw-launcher { width: 48px; height: 48px; }
}

/* =========================================================
   DARK / DARKER THEME TOGGLE
========================================================= */
[data-theme="darker"] {
  --bg:        #000000;
  --bg-2:      #030507;
  --bg-3:      #080d0f;
  --bg-4:      #0d1418;
  --border:    rgba(255,255,255,0.05);
  --border-hi: rgba(255,255,255,0.10);
}
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-left: 8px;
  white-space: nowrap;
}
.theme-toggle:hover { color: var(--text-dim); border-color: var(--border-hi); }

/* =========================================================
   QUOTE WALL PAGE
========================================================= */
.quote-wall-item {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.quote-wall-item:hover { background: rgba(255,255,255,0.02); }
.quote-wall-item:first-child { border-top: 1px solid var(--border); }
.quote-wall-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.quote-wall-text.featured {
  font-size: clamp(48px, 8vw, 120px);
  color: var(--accent);
}
.quote-wall-meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   STREAMS ARCHIVE PAGE
========================================================= */
.stream-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.stream-item:first-child { border-top: 1px solid var(--border); }
.stream-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-3); }
.stream-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.stream-item:hover .stream-thumb img { transform: scale(1.04); }
.stream-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.stream-rating-star { color: var(--accent); font-size: 14px; }
.stream-rating-star.empty { color: var(--border-hi); }
.stream-meta-chip {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-3);
  padding: 4px 10px;
  display: inline-block;
}
.stream-highlights { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.stream-highlights li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.stream-highlights li::before { content: '—'; position: absolute; left: 0; color: var(--text-muted); }
@media (max-width: 700px) {
  .stream-item { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   LORE TIMELINE PAGE
========================================================= */
.lore-timeline { position: relative; }
.lore-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
}
.lore-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 40px 0;
  position: relative;
}
.lore-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}
.lore-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border-hi);
  flex-shrink: 0;
}
.lore-item[data-type="legendary"] .lore-dot,
.lore-item[data-type="origin"] .lore-dot { background: var(--accent); border-color: var(--accent); }
.lore-item[data-type="milestone"] .lore-dot { background: var(--accent-2); border-color: var(--accent-2); }
.lore-era {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

/* =========================================================
   STREAM BINGO PAGE
========================================================= */
.bingo-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  max-width: 640px;
}
.bingo-cell {
  background: var(--bg-3);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 8px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.bingo-cell:hover { border-color: var(--border-hi); color: var(--text); }
.bingo-cell.marked {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}
.bingo-cell.free {
  background: var(--bg-4);
  color: var(--accent);
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bingo-win-banner {
  display: none;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 24px;
}
.bingo-win-banner.show { display: block; }

/* =========================================================
   YNATQ GENERATOR PAGE
========================================================= */
.ynatq-input-wrap {
  position: relative;
  max-width: 680px;
}
.ynatq-big-input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-bottom-color: var(--accent);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 24px 28px;
  outline: none;
  transition: border-color 0.2s;
}
.ynatq-big-input::placeholder { color: var(--text-muted); font-weight: 400; }
.ynatq-big-input:focus { border-color: var(--accent); }
.ynatq-response-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 40px 48px;
  margin-top: 48px;
  display: none;
}
.ynatq-response-box.show { display: block; }
.ynatq-response-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.ynatq-response-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

/* =========================================================
   QUIZ PAGE
========================================================= */
.quiz-question { display: none; }
.quiz-question.active { display: block; }
.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  padding: 20px 28px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 4px;
}
.quiz-option:hover { border-color: var(--border-hi); color: var(--text); background: var(--bg-4); }
.quiz-option.selected { border-color: var(--accent); color: var(--text); background: rgba(200,16,46,0.08); }
.quiz-progress-bar { height: 3px; background: var(--bg-3); margin-bottom: 40px; }
.quiz-progress-fill { height: 100%; background: var(--accent); transition: width 0.4s ease; }
.quiz-result-box { display: none; }
.quiz-result-box.show { display: block; }
.nav-dropdown { position: relative; } .nav-dropdown-menu { display: none; position: absolute; top: 100%; right: 0; background: var(--bg-3); border: 1px solid var(--border); border-radius: 4px; padding: 8px 0; min-width: 150px; box-shadow: 0 4px 12px rgba(0,0,0,0.5); z-index: 100; flex-direction: column; gap: 0; } .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: flex; } .nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 11px; white-space: nowrap; } .nav-dropdown-menu a:hover { background: var(--bg-4); }

/* =========================================================
   MOBILE FIXES
========================================================= */
body { overflow-x: hidden; }

@media (max-width: 860px) {
  #nav { padding: 0 20px; }
  #footer { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .bingo-card { max-width: 100%; }
  .bingo-cell { padding: 6px 4px; font-size: 9px; }
}
