/* ============================================================
   FAST & FORTY — style.css
   Fast & Furious racing theme with flames, chrome & asphalt
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --flame:    #FF6B00;
  --flame2:   #FF4500;
  --chrome:   #C8C8C8;
  --gold:     #FFB800;
  --red:      #CC0000;
  --nitro:    #00BFFF;
  --matrix:   #00ff41;

  --bg:      #0a0a0a;
  --bg-card: #141414;
  --bg-mid:  #111111;
  --border:  rgba(255,107,0,0.2);

  --text:    #e8e4e0;
  --dim:     #888580;

  --font-heading: 'Bebas Neue', 'Orbitron', sans-serif;
  --font-orb:     'Orbitron', sans-serif;
  --font-body:    'Barlow Condensed', 'Rajdhani', sans-serif;
  --font-mono:    'Orbitron', monospace;
  --font-px:      'Bebas Neue', sans-serif;
  --font-vt:      'Barlow Condensed', sans-serif;

  --glow-flame:  0 0 8px var(--flame), 0 0 20px var(--flame);
  --glow-red:    0 0 8px var(--red),   0 0 20px var(--red);
  --glow-chrome: 0 0 8px rgba(200,200,200,0.4), 0 0 20px rgba(200,200,200,0.2);
  /* Keep old aliases for intro screen compat */
  --pink: #ff006e; --blue: #00d4ff; --green: #39ff14;
  --yellow: #f5ff00; --purple: #9b00ff; --orange: #ff6b00;
  --glow-pink: 0 0 8px #ff006e, 0 0 20px #ff006e;
  --glow-blue: 0 0 8px #00d4ff, 0 0 20px #00d4ff;
  --glow-green: 0 0 8px #39ff14, 0 0 20px #39ff14;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='28' font-size='28'>🍌</text></svg>") 8 28, auto;
}

a { color: var(--flame); text-decoration: none; }
a:hover { color: var(--gold); }

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

.hidden { display: none !important; }

/* ── VHS Scanlines overlay (stronger) ──────────────────────── */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 4px,
    rgba(0,0,0,0.06) 4px,
    rgba(0,0,0,0.06) 5px
  );
  opacity: 0.65;
  animation: vhsFlicker 8s ease-in-out infinite;
}
@keyframes vhsFlicker {
  0%, 100% { opacity: 0.65; }
  92%       { opacity: 0.65; }
  93%       { opacity: 0.4; }
  94%       { opacity: 0.65; }
  96%       { opacity: 0.35; }
  97%       { opacity: 0.65; }
}

/* ── Scroll car element — 3D-style CSS car ──────────────────── */
#scroll-car {
  position: fixed;
  right: 10px;
  top: 0;
  z-index: 7500;
  pointer-events: none;
  transition: top 0.12s ease-out;
  width: 40px;
  height: 70px;
}

/* Road track strip on right edge */
.road-track {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 7400;
  pointer-events: none;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(30,30,30,0.6) 15%,
    rgba(50,50,50,0.4) 50%,
    rgba(30,30,30,0.6) 85%,
    transparent 100%
  );
}
.road-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom,
    rgba(255,255,255,0.4) 0px,
    rgba(255,255,255,0.4) 15px,
    transparent 15px,
    transparent 35px
  );
}

/* 3D car body */
.car-3d {
  position: relative;
  width: 36px;
  height: 64px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(255,107,0,0.5));
}

.car-body {
  position: absolute;
  top: 10px; left: 4px;
  width: 28px;
  height: 44px;
  background: linear-gradient(180deg, #cc0000 0%, #990000 40%, #770000 100%);
  border-radius: 6px 6px 4px 4px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.3), inset 0 2px 4px rgba(255,255,255,0.2);
}

/* Windshield */
.car-body::before {
  content: '';
  position: absolute;
  top: 10px; left: 4px; right: 4px;
  height: 10px;
  background: linear-gradient(180deg, rgba(100,180,255,0.6), rgba(50,100,200,0.8));
  border-radius: 3px 3px 1px 1px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Hood stripe */
.car-body::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 0 0 3px 3px;
}

/* Headlights */
.car-headlights {
  position: absolute;
  top: 5px; left: 4px; right: 4px;
  display: flex;
  justify-content: space-between;
}
.car-headlight {
  width: 6px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 -4px 12px 3px rgba(255,255,200,0.6),
              0 -8px 20px 5px rgba(255,255,200,0.2);
  animation: headlightPulse 2s ease-in-out infinite;
}
@keyframes headlightPulse {
  0%, 100% { box-shadow: 0 -4px 12px 3px rgba(255,255,200,0.6), 0 -8px 20px 5px rgba(255,255,200,0.2); }
  50%      { box-shadow: 0 -6px 16px 4px rgba(255,255,200,0.8), 0 -10px 25px 6px rgba(255,255,200,0.3); }
}

/* Wheels */
.car-wheels {
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 40px;
}
.car-wheel {
  position: absolute;
  width: 8px;
  height: 12px;
  background: #222;
  border-radius: 2px;
  border: 1px solid #444;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
}
.car-wheel.fl { top: 0; left: 0; }
.car-wheel.fr { top: 0; right: 0; }
.car-wheel.rl { bottom: 0; left: 0; }
.car-wheel.rr { bottom: 0; right: 0; }

/* Exhaust flame */
.car-exhaust {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 12px;
  background: linear-gradient(to bottom, #FF6B00, #FF4500, rgba(255,69,0,0));
  border-radius: 0 0 4px 4px;
  opacity: 0.8;
  animation: exhaustFlicker 0.15s ease-in-out infinite alternate;
}
@keyframes exhaustFlicker {
  0%   { height: 10px; opacity: 0.7; }
  100% { height: 16px; opacity: 1; }
}

/* Radar widget */
.radar-widget {
  position: fixed;
  top: 70px;
  right: 65px;
  z-index: 7500;
  pointer-events: none;
}
.radar-screen {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,30,0,0.9) 0%, rgba(0,15,0,0.95) 100%);
  border: 2px solid rgba(0,255,65,0.4);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,255,65,0.15), inset 0 0 10px rgba(0,0,0,0.5);
}
.radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, rgba(0,255,65,0.8), transparent);
  transform-origin: left center;
  animation: radarSweep 3s linear infinite;
}
@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.radar-dot {
  position: absolute;
  width: 4px; height: 4px;
  background: #00ff41;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff41;
  animation: radarBlink 3s ease infinite;
}
.radar-dot:nth-child(2) { top: 30%; left: 45%; animation-delay: 0.5s; }
.radar-dot:nth-child(3) { top: 55%; left: 65%; animation-delay: 1.2s; }
.radar-dot:nth-child(4) { top: 40%; left: 25%; animation-delay: 2s; }
@keyframes radarBlink {
  0%, 70%, 100% { opacity: 0; }
  75%, 95%      { opacity: 1; }
}
.radar-crosshair {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 1px solid rgba(0,255,65,0.15);
  border-radius: 50%;
}
.radar-crosshair::before,
.radar-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(0,255,65,0.1);
}
.radar-crosshair::before {
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
}
.radar-crosshair::after {
  left: 0; right: 0;
  top: 50%;
  height: 1px;
}
.radar-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  color: rgba(0,255,65,0.5);
  letter-spacing: 2px;
  margin-top: 3px;
}

/* ── Particle canvas ────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9100;
}

/* ── Sound toggle ───────────────────────────────────────────── */
.sound-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  border-radius: 2px;
  font-size: 1rem;
  transition: all 0.2s;
}
.sound-btn:hover {
  border-color: var(--flame);
  box-shadow: var(--glow-flame);
}

/* ── NOS boost flash ────────────────────────────────────────── */
.nos-flash {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,191,255,0.3) 0%, transparent 70%);
  z-index: 9050;
  pointer-events: none;
  animation: nosFlash 0.4s ease-out forwards;
}
@keyframes nosFlash {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ── Speed lines overlay ────────────────────────────────────── */
.speed-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9040;
  opacity: 0;
  transition: opacity 0.3s;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 40px,
    rgba(255,107,0,0.03) 40px,
    rgba(255,107,0,0.03) 41px
  );
}
.speed-lines.active { opacity: 1; }

/* ============================================================
   INTRO / MATRIX SCREEN
   ============================================================ */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#matrix-canvas {
  position: absolute;
  inset: 0;
  display: block;
}

/* Pill choice ─────────────────────────────────────────────── */
#pill-choice {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1s ease;
}

.pill-container {
  background: rgba(0,0,0,0.75);
  border: 1px solid var(--matrix);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  max-width: 600px;
  box-shadow: 0 0 40px rgba(0,255,65,0.2);
  backdrop-filter: blur(4px);
}

.pill-vhs-badge {
  font-family: var(--font-px);
  font-size: 0.55rem;
  color: var(--matrix);
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  text-shadow: var(--glow-green);
}

.pill-year {
  font-family: var(--font-vt);
  font-size: 1.4rem;
  color: var(--dim);
  margin-bottom: 1rem;
}

.pill-title {
  font-family: var(--font-px);
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: var(--matrix);
  text-shadow: var(--glow-green);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.pill-question {
  font-family: var(--font-vt);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.pills-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.pill {
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='28' font-size='28'>🍌</text></svg>") 8 28, pointer;
  border: 2px solid;
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  min-width: 200px;
  background: rgba(0,0,0,0.6);
  transition: all 0.25s;
  font-family: var(--font-orb);
}
.pill-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.pill-circle { font-size: 2rem; }
.pill strong {
  font-size: 1rem;
  letter-spacing: 2px;
}
.pill small {
  font-family: var(--font-vt);
  font-size: 1.1rem;
  opacity: 0.8;
}

.pill.red {
  border-color: #ff2244;
  color: #ff2244;
}
.pill.red:hover, .pill.red:focus {
  background: rgba(255,34,68,0.15);
  box-shadow: 0 0 20px rgba(255,34,68,0.5);
  transform: scale(1.05);
  outline: none;
}

.pill.blue {
  border-color: var(--blue);
  color: var(--blue);
}
.pill.blue:hover, .pill.blue:focus {
  background: rgba(0,212,255,0.1);
  box-shadow: 0 0 20px rgba(0,212,255,0.4);
  transform: scale(1.05);
  outline: none;
}

.lang-intro-toggle { margin-top: 1rem; }
.lang-btn-intro {
  background: none;
  border: 1px solid var(--matrix);
  color: var(--matrix);
  font-family: var(--font-px);
  font-size: 0.5rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: all 0.2s;
}
.lang-btn-intro:hover {
  background: rgba(0,255,65,0.1);
  box-shadow: var(--glow-green);
}

/* Blue pill response ─────────────────────────────────────── */
#blue-pill-response {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.blue-response-content {
  background: rgba(0,0,30,0.85);
  border: 1px solid var(--blue);
  border-radius: 4px;
  padding: 3rem 2rem;
  max-width: 500px;
  animation: fadeIn 0.5s ease;
}

.blue-emoji { font-size: 4rem; margin-bottom: 1rem; }

.blue-response-content h2 {
  font-family: var(--font-orb);
  color: var(--blue);
  margin-bottom: 1rem;
}

.blue-response-content p {
  font-family: var(--font-vt);
  font-size: 1.3rem;
  color: var(--dim);
  margin-bottom: 0.8rem;
}

.blue-small { font-size: 1rem !important; opacity: 0.7; }

#change-mind {
  margin-top: 1.5rem;
  background: rgba(255,34,68,0.15);
  border: 2px solid #ff2244;
  color: #ff2244;
  font-family: var(--font-orb);
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.2s;
}
#change-mind:hover {
  background: rgba(255,34,68,0.3);
  box-shadow: 0 0 16px rgba(255,34,68,0.5);
}

/* Glitch transition overlay ─────────────────────────────── */
#glitch-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--matrix);
  pointer-events: none;
}

@keyframes glitchOut {
  0%   { opacity: 1; clip-path: inset(0 0 0 0); }
  20%  { clip-path: inset(20% 0 60% 0); transform: translateX(-6px); }
  40%  { clip-path: inset(50% 0 10% 0); transform: translateX(6px); }
  60%  { clip-path: inset(5% 0 80% 0); transform: translateX(-3px); }
  80%  { clip-path: inset(70% 0 5% 0); transform: translateX(3px); }
  100% { opacity: 0; clip-path: inset(100% 0 0 0); }
}

.glitch-transition {
  animation: glitchOut 0.6s steps(2) forwards;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background: rgba(10,10,10,0.92);
  border-bottom: 2px solid rgba(255,107,0,0.15);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.98);
  border-bottom-color: var(--flame);
  box-shadow: 0 2px 20px rgba(255,107,0,0.15);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-logo {
  font-family: var(--font-orb);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--flame);
  text-shadow: var(--glow-flame);
  letter-spacing: 1px;
}
.nav-amp { color: var(--chrome); }
.nav-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--dim);
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--chrome);
  padding: 0.4rem 0.7rem;
  border-radius: 2px;
  letter-spacing: 2px;
  transition: all 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: var(--flame);
  text-shadow: var(--glow-flame);
  background: rgba(255,107,0,0.08);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--chrome);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-btn:hover {
  border-color: var(--flame);
  box-shadow: var(--glow-flame);
  color: var(--flame);
}

.easter-sound-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  border-radius: 2px;
  font-size: 1rem;
  transition: all 0.2s;
}
.easter-sound-btn:hover {
  border-color: var(--flame);
  box-shadow: var(--glow-flame);
  transform: scale(1.1);
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.3rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 7900;
  background: rgba(10,10,10,0.98);
  border-bottom: 2px solid var(--flame);
  padding: 1rem 2rem;
  animation: slideDown 0.2s ease;
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--chrome);
  padding: 0.8rem 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--flame); }

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

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  min-height: 100vh;
  padding: 7rem 2rem 5rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Racing label (replaces VHS label) */
.vhs-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--flame);
  letter-spacing: 5px;
  border: 2px solid var(--flame);
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
  text-shadow: var(--glow-flame);
  box-shadow: var(--glow-flame);
  position: relative;
  overflow: hidden;
}
.vhs-label::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.2), transparent);
  animation: labelShine 3s ease-in-out infinite;
}
@keyframes labelShine {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

.section-title {
  font-family: var(--font-orb);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--chrome);
  text-shadow: 0 0 15px rgba(200,200,200,0.3), 3px 3px 0 rgba(255,107,0,0.5);
  letter-spacing: 5px;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--flame);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: var(--glow-flame);
  margin-bottom: 3.5rem;
}

/* Road divider between sections */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--flame), transparent);
  opacity: 0.3;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding: 80px 0 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #050505;
}

.hero-image-container {
  width: 100%;
  position: relative;
  z-index: 2;
  line-height: 0;
}

.hero-full-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-bg-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30,10,0,0.2) 0%, rgba(5,5,5,1) 95%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  text-align: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-date-line {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gold);
  letter-spacing: 5px;
}

.hero-year { font-size: 1.6rem; }

.hero-invite {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  max-width: 850px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  text-align: left;
}
.hero-invite p { margin-bottom: 1.2rem; }
.hero-invite strong { color: var(--flame); font-size: 1.1em; }

.hero-details {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--chrome);
  border-left: 5px solid var(--flame);
  padding-left: 2rem;
  line-height: 1.9;
  margin: 2.5rem 0;
}
.hero-details em { color: var(--dim); font-style: italic; }

.hero-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  letter-spacing: 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--flame), var(--flame2));
  padding: 1.5rem 4rem;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(255,107,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s;
  margin-top: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-cta:hover {
  background: linear-gradient(135deg, var(--flame2), var(--red));
  color: #fff;
  box-shadow: 0 0 30px rgba(255,69,0,0.6);
  transform: scale(1.05);
}

/* VHS/REC indicator repurposed as status light */
.vhs-indicator {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dim);
}
.vhs-rec {
  color: var(--red);
  animation: recBlink 1s step-end infinite;
}
@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Poster bottom */
.hero-poster-bottom {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem; right: 2rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.poster-bottom-line {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 5px;
}

/* ============================================================
   RSVP SECTION
   ============================================================ */
.rsvp-section {
  background: var(--bg-mid);
  border-top: none;
}

#rsvp-form {
  max-width: 750px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 2rem;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--flame);
  letter-spacing: 4px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.field-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dim);
  letter-spacing: 0;
  font-weight: normal;
  text-transform: none;
  margin-top: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.neon-input {
  width: 100%;
  background: rgba(15,15,15,0.9);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.neon-input:focus {
  border-color: var(--flame);
  box-shadow: 0 0 15px rgba(255,107,0,0.3);
  background: rgba(30,30,30,1);
}
.neon-input::placeholder { color: var(--dim); }
textarea.neon-input { resize: vertical; min-height: 80px; }
.neon-input.error {
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(204, 0, 0, 0.4);
}
.error-msg {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 0.4rem;
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Number stepper */
.number-stepper {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-btn {
  background: rgba(255,107,0,0.1);
  border: 1px solid var(--border);
  color: var(--flame);
  font-size: 1.3rem;
  width: 2.5rem;
  height: 2.8rem;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-orb);
}
.step-btn:first-child { border-radius: 3px 0 0 3px; }
.step-btn:last-child  { border-radius: 0 3px 3px 0; }
.step-btn:hover {
  background: rgba(255,107,0,0.2);
  color: var(--gold);
}
.step-input {
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
  text-align: center;
  width: 70px;
}

/* BBQ Toggle */
.toggle-group {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  width: fit-content;
}
.toggle-opt {
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 0.7rem 1.3rem;
  cursor: pointer;
  background: rgba(20,20,20,0.8);
  border: none;
  color: var(--dim);
  letter-spacing: 1px;
  transition: all 0.2s;
}
.toggle-opt:not(:last-child) { border-right: 1px solid var(--border); }
.toggle-opt.active {
  background: rgba(255,107,0,0.15);
  color: var(--flame);
  box-shadow: inset 0 0 10px rgba(255,107,0,0.1);
}

/* Submit button */
.submit-btn {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: #fff;
  background: linear-gradient(135deg, var(--flame), var(--flame2));
  border: none;
  padding: 1.1rem;
  cursor: pointer;
  border-radius: 3px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255,107,0,0.3);
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover {
  background: linear-gradient(135deg, var(--flame2), var(--red));
  box-shadow: 0 0 25px rgba(255,69,0,0.5);
  transform: scale(1.02);
}

/* Success message */
.success-message {
  max-width: 500px;
  margin: 2rem auto 0;
  text-align: center;
  background: rgba(255,107,0,0.05);
  border: 1px solid var(--flame);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  animation: fadeIn 0.5s ease;
}
.success-tape { font-size: 3rem; margin-bottom: 0.5rem; }
.success-message h3 {
  font-family: var(--font-orb);
  color: var(--flame);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: var(--glow-flame);
}
.success-message p { font-size: 1.3rem; margin-bottom: 0.6rem; }
.success-sub { color: var(--dim); font-size: 1rem; }

/* ============================================================
   TIMETABLE SECTION
   ============================================================ */
.timetable-section {
  background: var(--bg);
  border-top: none;
}

.timetable {
  max-width: 900px;
  margin: 0 auto 6rem;
  position: relative;
}

/* Timeline vertical line — road stripe */
.timetable::before {
  content: '';
  position: absolute;
  left: 130px;
  top: 0; bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(to bottom,
    var(--flame) 0px, var(--flame) 15px,
    transparent 15px, transparent 30px
  );
  opacity: 0.6;
}

.tt-item {
  display: grid;
  grid-template-columns: 200px 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3rem;
  padding: 1.5rem 1.5rem 1.5rem 30px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
  border: 1px solid transparent;
}

.tt-item:hover {
  background: rgba(255,107,0,0.06);
  border-color: rgba(255,107,0,0.25);
  transform: translateX(10px);
}

.tt-item.finale {
  border: 1px solid rgba(255,107,0,0.4);
  background: rgba(255,107,0,0.08);
}

.tt-time {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--flame);
  letter-spacing: 2px;
  text-shadow: var(--glow-flame);
}

.tt-hours {
  flex: 1;
  text-align: right;
  padding-right: 15px;
}

.tt-minutes {
  flex: 1;
  text-align: left;
  padding-left: 15px;
}

.tt-icon {
  font-size: 2.2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tt-body h3 {
  font-family: var(--font-orb);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
}

.tt-body h3 em { color: var(--flame); font-style: normal; }

.tt-note {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--dim);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.tt-quote {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,107,0,0.65);
  font-style: italic;
}

/* Kids corner */
.kids-corner {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 6px;
  padding: 3rem;
  background: rgba(255,107,0,0.03);
}

.kids-title {
  font-family: var(--font-orb);
  font-size: 1.3rem;
  color: var(--flame);
  text-shadow: var(--glow-flame);
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.placeholder-block {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--dim);
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--bg-mid);
  border-top: none;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.location-map-wrap {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255,107,0,0.1);
}
.location-map-wrap iframe { display: block; }

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.2s;
}
.loc-card:hover { border-color: var(--flame); }

.loc-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.loc-card h3 {
  font-family: var(--font-orb);
  font-size: 0.9rem;
  color: var(--flame);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.loc-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.loc-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--flame);
  letter-spacing: 1px;
  border-bottom: 1px solid var(--flame);
  transition: color 0.2s;
}
.loc-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   PLAYLIST SECTION
   ============================================================ */
.playlist-section {
  background: var(--bg);
  border-top: none;
}

.playlist-content {
  max-width: 750px;
  margin: 0 auto;
}

.spotify-wrapper {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.spotify-placeholder {
  background: rgba(30,215,96,0.05);
  border: 2px dashed rgba(30,215,96,0.3);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}
.spotify-ph-icon { font-size: 3rem; margin-bottom: 1rem; }
.spotify-placeholder p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--dim);
  margin-bottom: 0.8rem;
}
.spotify-placeholder code {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(30,215,96,0.5);
}

.playlist-cta { text-align: center; }
.playlist-copy {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.playlist-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #fff;
  background: #1db954;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  transition: all 0.2s;
  box-shadow: 0 0 15px rgba(29,185,84,0.4);
}
.playlist-btn:hover {
  background: #1ed760;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 0 25px rgba(29,185,84,0.6);
}

/* ============================================================
   GIFTS SECTION
   ============================================================ */
.gifts-section {
  background: var(--bg-mid);
  border-top: none;
  min-height: auto;
  padding-bottom: 6rem;
}

.gifts-content {
  max-width: 700px;
  margin: 0 auto;
}

.gifts-note {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--dim);
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
}

.gift-list {
  display: grid;
  gap: 1rem;
}

.gift-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.2s;
}
.gift-item:hover { border-color: var(--flame); }
.gift-item.placeholder { border-style: dashed; opacity: 0.6; }

.gift-emoji { font-size: 2rem; flex-shrink: 0; }
.gift-body h4 {
  font-family: var(--font-orb);
  font-size: 0.9rem;
  color: var(--flame);
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}
.gift-body p {
  font-size: 1rem;
  color: var(--dim);
}
.gift-body a {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--flame);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  border-top: 2px solid var(--flame);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-inner { max-width: 700px; margin: 0 auto; }

.footer-logo {
  font-family: var(--font-orb);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--flame);
  text-shadow: var(--glow-flame);
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
}

.footer-date {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--chrome);
  margin-bottom: 1rem;
}

.footer-icons {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-credits {
  font-size: 0.95rem;
  color: var(--dim);
  margin-bottom: 0.5rem;
}

.footer-hint {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 3px;
}

/* ============================================================
   EASTER EGGS — Racing themed
   ============================================================ */

/* ── Tama Forty widget restyled (bottom-left) ─────────────── */
.tama-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 7000;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='28' font-size='28'>🍌</text></svg>") 8 28, pointer;
  user-select: none;
}

.tama-shell {
  background: linear-gradient(135deg, #ff6eb4, #ffcc00, #00cfff);
  border: 3px solid rgba(255,255,255,0.4);
  border-radius: 45% 45% 55% 55% / 40% 40% 60% 60%;
  width: 90px;
  height: 100px;
  padding: 0;
  box-shadow: 0 0 20px rgba(255,110,180,0.5), inset 0 0 20px rgba(0,0,0,0.2);
  transition: transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tama-shell:hover { transform: scale(1.08) rotate(-3deg); }

.tama-screen {
  background: rgba(180,240,180,0.9);
  border: 2px solid rgba(0,0,0,0.3);
  border-radius: 8px;
  width: 64px;
  height: 60px;
  text-align: center;
  font-family: var(--font-px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.tama-creature { margin-bottom: 2px; }

.tama-eyes {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 1rem;
  font-family: monospace;
  color: #222;
  margin-bottom: 2px;
}
.tama-eye {
  display: inline-block;
  transition: transform 0.1s;
}
.tama-eye.blink { transform: scaleY(0.1); }

.tama-mouth {
  font-size: 0.7rem;
  color: #333;
  font-family: monospace;
}

.tama-stats {
  font-size: 0.5rem;
  color: #555;
}

.tama-msg {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,0.95);
  color: #ffcc00;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid #ffcc00;
}
.tama-msg.show { opacity: 1; }

.tama-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  color: #ffcc00;
  margin-top: 4px;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #ffcc00;
}

/* ── Furby Eye widget restyled (bottom-right) ────────────── */
.furby-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 7000;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='28' font-size='28'>🍌</text></svg>") 8 28, pointer;
  user-select: none;
}

.furby-body {
  background: radial-gradient(circle at 40% 35%, #c8a, #9a7, #654);
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(180,120,80,0.5);
  transition: transform 0.15s;
  gap: 4px;
}
.furby-body:hover { transform: scale(1.08); }

.furby-eye-container {
  position: relative;
  width: 44px;
  height: 44px;
}

.furby-eyeball {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffffff, #aaddff 40%, #88bbee 70%, #334455);
  border: 2px solid #222;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), 0 0 10px rgba(0,191,255,0.3);
}

.furby-pupil {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #555, #111);
  border: 2px solid #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
  box-shadow: 0 0 4px rgba(0,0,0,0.8);
}
.furby-pupil::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
}

.furby-beak-small {
  font-size: 1rem;
  line-height: 1;
}

.tama-shell {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid var(--flame);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding: 0;
  box-shadow: 0 0 15px rgba(255,107,0,0.3), inset 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tama-shell:hover { transform: scale(1.08); }

.tama-screen {
  background: transparent;
  border: none;
  width: 70px;
  height: 70px;
  text-align: center;
  font-family: var(--font-orb);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
}

.tama-creature { margin-bottom: 0; }

.tama-eyes {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 1.4rem;
  margin-bottom: 0;
  font-family: var(--font-orb);
  color: var(--flame);
  text-shadow: var(--glow-flame);
}

.tama-eye { display: inline-block; }

.tama-mouth {
  font-size: 0.55rem;
  color: var(--chrome);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.tama-stats {
  font-size: 0.5rem;
  color: var(--flame);
}

.tama-msg {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,0.95);
  color: var(--flame);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid var(--flame);
}
.tama-msg.show { opacity: 1; }

.tama-btns {
  display: none;
}

.tama-btn {
  display: none;
}

.tama-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.55rem;
  color: var(--dim);
  margin-top: 4px;
  letter-spacing: 2px;
}


/* ── Finish Line — checkered flag ───────────────────────────── */
.banana-float {
  position: fixed;
  font-size: 8rem;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  z-index: 6500;
  transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
  user-select: none;
  pointer-events: none;
}
.banana-float.finish-line-crossed {
  bottom: 2rem;
  animation: giantFlagWave 2s ease-in-out infinite;
}

@keyframes giantFlagWave {
  0%, 100% { transform: translateX(-50%) rotate(-10deg); }
  50%       { transform: translateX(-50%) rotate(10deg); }
}

/* ── Toast notification ──────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,0.95);
  border: 1px solid var(--flame);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  z-index: 9999;
  box-shadow: var(--glow-flame);
  animation: toastIn 0.3s ease;
  max-width: 90vw;
  text-align: center;
}
@keyframes toastIn {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}

/* ── Konami screen ───────────────────────────────────────── */
.konami-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.konami-inner {
  text-align: center;
  padding: 3rem;
  border: 2px solid var(--flame);
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(255,107,0,0.3);
  max-width: 500px;
}

.konami-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--gold);
}
.konami-inner h2 {
  font-family: var(--font-orb);
  font-size: 2.5rem;
  color: var(--flame);
  text-shadow: var(--glow-flame);
  margin-bottom: 1rem;
}
.konami-inner p {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.konami-btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  background: var(--flame);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  cursor: pointer;
  border-radius: 3px;
  letter-spacing: 3px;
  transition: all 0.2s;
}
.konami-btn:hover { transform: scale(1.05); background: var(--flame2); }

/* ============================================================
   GLITCH HOVER → FLAME HOVER EFFECT
   ============================================================ */
.glitch-hover {
  position: relative;
}
.glitch-hover::before,
.glitch-hover::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.glitch-hover:hover::before {
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.1), transparent);
  opacity: 1;
  animation: flameGlow 0.5s ease;
}

@keyframes flameGlow {
  0%   { transform: scaleX(0.8); opacity: 0; }
  50%  { transform: scaleX(1.05); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0.5; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fire flicker for decorative elements */
@keyframes fireFlicker {
  0%, 100% { opacity: 1; filter: brightness(1); }
  25%      { opacity: 0.9; filter: brightness(1.1); }
  50%      { opacity: 1; filter: brightness(0.95); }
  75%      { opacity: 0.95; filter: brightness(1.05); }
}

/* ── Police Car Easter Egg (3D) ───────────────────────── */
.police-car-3d {
  position: fixed;
  bottom: 25%;
  left: -200px;
  z-index: 9999;
  width: 140px;
  height: 60px;
  pointer-events: none;
  animation: drivePolice 2.5s linear forwards;
  transform: perspective(600px) rotateY(15deg) rotateX(5deg);
  filter: drop-shadow(0 15px 10px rgba(0,0,0,0.5));
}

.police-body {
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 10px;
  background: linear-gradient(to bottom, #eee 45%, #111 45%, #111 100%);
  border-radius: 20px 30px 5px 5px;
  border: 2px solid #222;
  box-sizing: border-box;
}

.police-body::after {
  content: 'POLICE';
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 2px;
}

.police-wheel {
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 28px;
  background: #111;
  border: 4px dashed #555;
  border-radius: 50%;
  box-sizing: border-box;
  animation: spinWheel 0.5s linear infinite;
}
.police-wheel.front { right: 15px; }
.police-wheel.rear { left: 15px; }

@keyframes spinWheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes drivePolice {
  0%   { left: -200px; }
  100% { left: 110vw; }
}

/* ── Busted Popup (replaces Police Moto) ─────────────────── */
.busted-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}
.busted-content {
  position: relative;
  background: linear-gradient(135deg, #111, #222);
  border: 3px solid #ff0000;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
  max-width: 90%;
  width: 400px;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.busted-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.busted-close:hover {
  color: #ff0000;
}
.busted-police-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 0, 255, 0.8));
  animation: bustedSirenFlash 0.5s infinite alternate;
}
.busted-title {
  font-family: var(--font-heading);
  color: #ff0000;
  font-size: 2.5rem;
  letter-spacing: 4px;
  margin: 0 0 1rem;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255,0,0,0.8);
}
.busted-text {
  font-size: 1.2rem;
  color: #ddd;
}
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes bustedSirenFlash {
  0% { text-shadow: 0 0 20px red; }
  100% { text-shadow: 0 0 20px blue; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-tagline { display: none; }
  .hamburger { display: block; }
  .easter-sound-btn { display: none; }
  .sound-btn { display: none; }
  #scroll-car { right: -5px; }
  .car-3d { transform: scale(0.6); transform-origin: center right; }
  .road-track { right: 20px; opacity: 0.5; }
  .radar-widget { top: 60px; right: 10px; transform: scale(0.6); transform-origin: top right; }

  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }

  .form-row { grid-template-columns: 1fr; }

  .timetable::before { left: 85px; }
  .tt-item { grid-template-columns: 110px 36px 1fr; gap: 0.5rem; padding-left: 0; }
  .tt-time { font-size: 1.1rem; }
  .tt-hours { padding-right: 10px; }
  .tt-minutes { padding-left: 10px; }

  .poster-top-stripe,
  .hero-poster-bottom { display: none; }

  .tama-widget { bottom: 1rem; left: 1rem; }
  .furby-widget { bottom: 1rem; right: 1rem; }
  .tama-shell { width: 70px; height: 70px; }
  .furby-body { width: 55px; height: 55px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .section { padding: 6rem 1.2rem 3rem; }
  .pills-wrapper { flex-direction: column; align-items: center; }
  .pill { min-width: 200px; }
  .pill-container { padding: 2rem 1.2rem; }
  .tama-widget,
  .furby-widget { transform: scale(0.85); transform-origin: bottom; }
  .furby-widget { right: 0.2rem; }
  .tama-widget  { left: 0.2rem; }
}

/* ============================================================
   NEW FEATURES — Added enhancements
   ============================================================ */

/* Intro mute button */
.intro-mute-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10001;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--matrix);
  color: var(--matrix);
  font-size: 1.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.intro-mute-btn:hover { background: rgba(0,255,65,0.15); box-shadow: var(--glow-green); }

/* Mario Kart Racer */
.mario-kart-racer {
  position: fixed;
  bottom: 12px;
  left: -120px;
  z-index: 7200;
  pointer-events: none;
  font-size: 3rem;
  display: flex;
  align-items: flex-end;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}
.mario-kart-racer.racing { animation: kartRace 6s linear forwards; }
@keyframes kartRace {
  0%   { left: -120px; }
  100% { left: calc(100vw + 120px); }
}
.banana-peel {
  position: absolute;
  left: -25px;
  bottom: 2px;
  font-size: 1.2rem;
  animation: bananaSpin 0.6s linear infinite;
}
@keyframes bananaSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hardcore Easter Egg */
.hardcore-stamp {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.hardcore-inner {
  text-align: center;
  padding: 3rem 2.5rem;
  border: 4px solid #ff0000;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(255,0,0,0.5);
  max-width: 480px;
  width: 90vw;
  position: relative;
  background: #080000;
  transform: rotate(-2deg);
}
.hardcore-close {
  position: absolute;
  top: 0.5rem; right: 1rem;
  background: none; border: none;
  color: #ff0000; font-size: 2.5rem;
  cursor: pointer; line-height: 1;
}
.hardcore-close:hover { color: #ff6666; }
.hardcore-skull { font-size: 4rem; margin-bottom: 0.5rem; }
.hardcore-text {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: #ff0000;
  letter-spacing: 8px;
  text-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
  line-height: 1;
}
.hardcore-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: #ff4444;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}
.hardcore-thunder {
  font-family: var(--font-orb);
  font-size: 1rem;
  color: #ffdd00;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #ffdd00;
  margin-bottom: 0.5rem;
}
.hardcore-year { font-size: 1rem; color: rgba(255,68,68,0.5); letter-spacing: 4px; }

/* Jurassic Park Gate Divider */
.jp-gate-divider {
  background: linear-gradient(135deg, #0a1a0a, #0f2b0f);
  border-top: 2px solid #3a7a3a;
  border-bottom: 2px solid #3a7a3a;
  padding: 0.7rem 1rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.jp-fence {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  color: #ffdd00;
  letter-spacing: 3px;
  text-shadow: 0 0 6px #ffdd00;
  white-space: nowrap;
  overflow: hidden;
  padding: 0.15rem 0;
  animation: fenceScroll 14s linear infinite;
}
@keyframes fenceScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.jp-gate-text {
  font-family: var(--font-orb);
  font-size: clamp(0.85rem, 2.5vw, 1.3rem);
  color: #7dff7d;
  letter-spacing: 5px;
  text-shadow: 0 0 15px rgba(0,200,0,0.6);
  padding: 0.4rem 0;
}

/* Farm & Location extras */
.farmville-subtitle { font-family: var(--font-heading); font-size: 0.95rem; color: #c8a96e; letter-spacing: 4px; margin-top: 0.5rem; }
.hold-on-butts { font-family: var(--font-body); font-size: 1rem; color: #7dff7d; font-style: italic; margin-top: 0.3rem; }
.farmville-badge { font-family: var(--font-body); font-size: 0.7rem; background: rgba(200,169,110,0.12); border: 1px solid rgba(200,169,110,0.3); color: #c8a96e; padding: 0.1rem 0.4rem; border-radius: 3px; vertical-align: middle; }
.farm-icons { margin-top: 0.5rem; font-size: 1.3rem; letter-spacing: 2px; opacity: 0.7; }
.dumb-dumber-map { font-size: 0.9rem; color: rgba(200,200,200,0.55); margin-top: 0.5rem; font-style: italic; }

/* Hero Indiana Jones quote */
.hero-indy-quote { font-family: var(--font-body); font-size: 1rem; color: #c8a96e; margin-top: 1rem; font-style: italic; }

/* Retro floating 90s items */
.retro-items-hero { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.retro-item { position: absolute; font-size: 1.8rem; opacity: 0.12; animation: floatRetro 8s ease-in-out infinite; }
.ri-vhs  { top: 15%; left: 3%;  animation-delay: 0s;   animation-duration: 7s; }
.ri-game { top: 65%; left: 6%;  animation-delay: 1.5s; animation-duration: 9s; }
.ri-disk { top: 25%; right: 4%; animation-delay: 0.8s; animation-duration: 8s; }
.ri-walk { top: 70%; right: 5%; animation-delay: 2.2s; animation-duration: 6s; }
.ri-poke { top: 40%; left: 2%;  animation-delay: 3.5s; animation-duration: 10s; }
@keyframes floatRetro {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}

/* Kids Corner Jumanji styles */
.kids-content { font-family: var(--font-body); font-size: 1.15rem; line-height: 1.7; }
.kids-content p { margin-bottom: 0.8rem; }
.kids-content strong { color: var(--flame); }
.jumanji-quote { margin-top: 1.5rem; padding: 1rem 1.5rem; border-left: 4px solid #7dff7d; background: rgba(0,100,0,0.07); border-radius: 0 4px 4px 0; display: flex; align-items: flex-start; gap: 0.8rem; }
.jumanji-book { font-size: 1.8rem; flex-shrink: 0; }
.jumanji-quote blockquote { font-family: var(--font-body); font-size: 1.05rem; color: #7dff7d; font-style: italic; margin: 0 0 0.3rem; }
.jumanji-quote cite { font-size: 0.9rem; color: rgba(125,255,125,0.55); }
.kids-somebody-stop-me { margin-top: 1rem; font-size: 0.9rem; color: rgba(200,200,200,0.45); font-style: italic; text-align: right; }

/* RSVP movie quote */
.rsvp-movie-quote { font-family: var(--font-body); font-size: 1.1rem; color: var(--gold); font-style: italic; margin-bottom: 0.5rem !important; }

/* Gifts section updates */
.gifts-dumb-quote { font-size: 0.95rem; color: rgba(200,200,200,0.45); font-style: italic; border-left: 3px solid var(--flame); padding-left: 1rem; margin-bottom: 1.5rem; }
.lijstje-placeholder { background: rgba(255,184,0,0.04); border: 2px dashed rgba(255,184,0,0.25); border-radius: 8px; padding: 3rem 2rem; text-align: center; }
.lijstje-ph-icon { font-size: 3rem; margin-bottom: 1rem; }
.lijstje-placeholder p { font-family: var(--font-body); font-size: 1.15rem; color: var(--dim); margin-bottom: 0.8rem; }
.lijstje-placeholder code { font-size: 0.85rem; color: rgba(255,184,0,0.35); }

/* Responsive additions */
@media (max-width: 768px) {
  .jp-fence { font-size: 0.5rem; }
  .jp-gate-text { font-size: 0.75rem; letter-spacing: 3px; }
  .retro-item { font-size: 1.3rem; }
  .hardcore-inner { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .pill { min-width: 80vw; }
  .farmville-subtitle { font-size: 0.8rem; }
}

/* ============================================================
   UPDATE BATCH 2
   ============================================================ */

/* Equal pill button sizes */
.pills-wrapper { align-items: stretch; }
.pill { width: 220px; min-width: 220px; justify-content: center; }
.pill-inner { height: 100%; justify-content: center; }

/* Matrix cursor — sentinel squid (intro screen only) */
#intro-screen {
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='28' font-size='26'>🦑</text></svg>") 16 28, crosshair;
}
#intro-screen button, #intro-screen a {
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='28' font-size='26'>🦑</text></svg>") 16 28, pointer;
}

/* Waving checkered finish flag */
.banana-float {
  display: flex;
  align-items: flex-end;
  gap: 0;
  bottom: -220px;
  font-size: unset;
}
.banana-float.finish-line-crossed { bottom: 2rem; }

.finish-flag-pole {
  width: 6px;
  height: 160px;
  background: linear-gradient(to bottom, #ddd, #888, #555);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 2px 0 4px rgba(0,0,0,0.4);
}

.finish-flag-cloth {
  width: 90px;
  height: 70px;
  background-image:
    linear-gradient(45deg, #000 25%, transparent 25%),
    linear-gradient(-45deg, #000 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #000 75%),
    linear-gradient(-45deg, transparent 75%, #000 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0px;
  background-color: #fff;
  border: 2px solid rgba(0,0,0,0.2);
  transform-origin: left center;
  align-self: flex-start;
  margin-top: 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.banana-float.finish-line-crossed .finish-flag-cloth {
  animation: flagWave 0.6s ease-in-out infinite alternate;
}
@keyframes flagWave {
  0%   { transform: skewY(-4deg) scaleX(1); }
  50%  { transform: skewY(2deg) scaleX(0.97); }
  100% { transform: skewY(-2deg) scaleX(1.03); }
}

/* Timetable: floor call paragraph */
.tt-floor-call {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

/* Gift list iframe wrapper */
.lijstje-embed-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 20px rgba(255,107,0,0.1);
}


/* ── Lijstje.nl link card (replaces broken iframe) ───────── */
.lijstje-link-card {
  display: block;
  text-decoration: none;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 1.5rem 2rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.lijstje-link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,184,0,0.04), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.lijstje-link-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255,184,0,0.15), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.lijstje-link-card:hover::before { opacity: 1; }

.lijstje-card-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lijstje-card-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: giftBounce 2s ease-in-out infinite;
}
@keyframes giftBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%       { transform: translateY(-6px) rotate(-5deg); }
  60%       { transform: translateY(-3px) rotate(3deg); }
}
.lijstje-card-text { flex: 1; }
.lijstje-card-text h3 {
  font-family: var(--font-orb);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 8px rgba(255,184,0,0.3);
}
.lijstje-card-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dim);
  line-height: 1.5;
}
.lijstje-card-arrow {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
  opacity: 0.7;
}
.lijstje-link-card:hover .lijstje-card-arrow {
  transform: translateX(6px);
  opacity: 1;
}
.lijstje-card-url {
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,184,0,0.4);
  letter-spacing: 1px;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,184,0,0.1);
}


/* ── JP Gate — proper seamless marquee ─────────────────────── */
/* Override old fence styles */
.jp-fence {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.15rem 0;
  /* remove old animation from the div itself */
  animation: none !important;
}

/* ── JP Gate — proper seamless marquee ─────────────────────── */
.jp-fence {
  overflow: hidden;
  position: relative;
  height: 1.4em;
  padding: 0.15rem 0;
}

.jp-marquee-track {
  display: flex;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.jp-marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  animation: seamlessScroll 15s linear infinite;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  color: #ffdd00;
  letter-spacing: 3px;
  text-shadow: 0 0 6px #ffdd00;
  padding-right: 1.5rem; /* slight spacing at the seam */
}

.jp-marquee-slow .jp-marquee-content {
  animation-duration: 22s;
}

@keyframes seamlessScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   PACMAN MODAL & ARCADE TRIGGER
   ============================================================ */
.pacman-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.3s;
}

.pacman-modal-overlay.hidden {
  display: none;
  opacity: 0;
}

.pacman-modal-content {
  background: #111;
  border: 4px solid #ffdd00;
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 0 50px rgba(255, 221, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pacman-close-btn {
  background: #222;
  color: white;
  border: none;
  padding: 1rem;
  text-align: right;
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.pacman-close-btn:hover {
  background: #333;
  color: #ff3333;
}

.pacman-game-wrapper {
  width: 100%;
  height: 450px;
  background: black;
}

.pacman-instructions {
  background: #222;
  color: #ffdd00;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-body, monospace);
  font-size: 1.1rem;
}

/* ARCADE MACHINE TRIGGER */
.arcade-trigger {
  background: #222;
  border: 2px solid #ffdd00;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
}

.arcade-trigger:hover {
  background: #333;
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 221, 0, 0.4);
}

.arcade-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   EQUAL SIZED PILLS SIDE-BY-SIDE MOBILE FIX
   ============================================================ */
.pills-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 15px !important;
  width: 100% !important;
  max-width: 600px !important;
  margin: 0 auto 1.5rem auto !important;
}

.pill {
  flex: 1 1 0px !important; /* Force exact 50/50 width regardless of text size */
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 1.5rem 0.5rem !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 160px !important; /* Gives them a solid, identical height */
  min-width: 0 !important;
}

.pill-inner {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100% !important;
  width: 100% !important;
}

.pill strong {
  font-size: clamp(0.9rem, 3.5vw, 1.2rem) !important;
  text-align: center !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0.3rem !important;
}

.pill small {
  font-size: clamp(0.7rem, 2.5vw, 0.9rem) !important;
  text-align: center !important;
  line-height: 1.2 !important;
}

/* ============================================================
   SPA 3-SECTION TRANSITIONS
   ============================================================ */
.spa-section {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  z-index: 1000;
  overflow: hidden;
}

.spa-section.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
  visibility: hidden;
}

.spa-section.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  visibility: visible;
}

/* SECTION 1: IGNITION */
#section-ignition {
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  text-align: center;
}

.ignition-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.racing-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 3rem;
  background: linear-gradient(to bottom, #fff 0%, #888 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.4));
  font-style: italic;
}

.ignition-btn {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #111;
  border: 4px solid #222;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,255,255,0.05);
  transition: transform 0.2s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
}

.ignition-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 70px rgba(255, 69, 0, 0.3);
}

.btn-core {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ff4500 0%, #900 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #b00;
  box-shadow: 0 0 40px rgba(255, 69, 0, 0.5), inset 0 2px 15px rgba(255,255,255,0.4);
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn-label {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.btn-sub {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 1 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.lang-ignition-wrapper {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.lang-btn-ignition {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
  padding: 0.6rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn-ignition.active {
  border-color: var(--flame);
  color: #fff;
  background: rgba(255,107,0,0.1);
}

.lang-btn-ignition:hover {
  border-color: #fff;
  color: #fff;
}

/* SECTION 2: THE FORK */
#section-choice {
  z-index: 1500;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-choice-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.lang-btn-intro-large {
  background: transparent;
  border: 1px solid var(--matrix);
  color: var(--matrix);
  font-family: var(--font-px);
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  letter-spacing: 3px;
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: 2rem;
}

.lang-btn-intro-large:hover {
  background: rgba(0, 255, 65, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.pill small {
  display: block;
  font-family: var(--font-vt);
  font-size: 1rem;
  margin-top: 0.3rem;
  opacity: 0.7;
}

/* SECTION 3: THE MAIN GRID */
#main-site {
  position: relative !important;
  z-index: 1;
  display: block;
}

/* Override existing #intro-screen for SPA flow */
#intro-screen { display: none !important; }
#enter-screen { display: none !important; }

