/* ============================================================
   FESTGO · SHARED STYLESHEET
   Neon / after-dark festival aesthetic. Used by every page.
   ============================================================ */

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

:root {
  --void: #03020A;
  --deep: #090618;
  --surface: #100D22;
  --surface2: #18143A;
  --cyan: #00F5FF;
  --cyan-dim: rgba(0,245,255,0.15);
  --cyan-glow: rgba(0,245,255,0.35);
  --magenta: #FF2D78;
  --magenta-dim: rgba(255,45,120,0.15);
  --violet: #9B5CFF;
  --violet-dim: rgba(155,92,255,0.2);
  --amber: #FFB800;
  --amber-dim: rgba(255,184,0,0.15);
  --earth: #C4956A;
  --snow: #F0EFFF;
  --mist: rgba(240,239,255,0.55);
  --border-neon: rgba(0,245,255,0.18);
  --border-soft: rgba(240,239,255,0.08);
  --ff-rave: 'Black Ops One', sans-serif;
  --ff-ui: 'Space Grotesk', sans-serif;
  --ff-body: 'Outfit', sans-serif;
  --r: 3px;
  --maxw: 1240px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--snow);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* theme color helpers */
.t-cyan   { color: var(--cyan); }
.t-magenta{ color: var(--magenta); }
.t-violet { color: var(--violet); }
.t-amber  { color: var(--amber); }

/* ── CANVAS STARS ── */
#starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 96px;
  background: rgba(3,2,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-neon);
}

.nav-logo {
  font-family: var(--ff-rave);
  font-size: 24px;
  letter-spacing: 4px;
  text-decoration: none;
  color: var(--snow);
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Crisp text wordmark for the nav (vector-sharp at any size) */
.nav-wordmark { display: flex; flex-direction: column; justify-content: center; line-height: 1; gap: 3px; text-decoration: none; letter-spacing: 0; }
.nw-main { font-family: var(--ff-rave); font-size: 60px; letter-spacing: 5px; background: linear-gradient(90deg, var(--cyan), #b06bff 55%, #ff2ec4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; filter: drop-shadow(0 0 12px rgba(0,245,255,0.5)) drop-shadow(0 0 22px rgba(255,46,196,0.3)); }
.nw-sub { font-family: var(--ff-ui); font-size: 16px; letter-spacing: 6px; color: var(--mist); padding-left: 3px; }
.nw-over { font-size: 18px; letter-spacing: 12px; margin-bottom: 2px; opacity: 0.9; }
.nw-tm { -webkit-text-fill-color: var(--mist); color: var(--mist); font-size: 18px; vertical-align: super; margin-left: 4px; }
@media (max-width: 600px) { nav { height: 74px; } .nw-main { font-size: 42px; } .nw-over { font-size: 13px; letter-spacing: 8px; } }
.nav-logo .logo-glow {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0,245,255,0.4);
}

.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }

.nav-links a {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  padding: 0 1.1rem;
  height: 58px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
  box-shadow: 0 0 8px var(--cyan);
}
.nav-links a:hover { color: var(--snow); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--snow); }

.nav-cta {
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  color: var(--snow) !important;
  font-family: var(--ff-ui) !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  padding: 10px 20px !important;
  height: auto !important;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.15s !important;
  box-shadow: 0 0 20px rgba(255,45,120,0.4);
  margin-left: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* mobile menu button */
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border-neon);
  color: var(--snow);
  width: 40px; height: 38px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn-neon {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 20px rgba(0,245,255,0.2), inset 0 0 20px rgba(0,245,255,0.05);
}
.btn-neon:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: 0 0 30px rgba(0,245,255,0.4), inset 0 0 30px rgba(0,245,255,0.1);
  transform: translateY(-2px);
}
.btn-neon-magenta {
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: 0 0 20px rgba(255,45,120,0.2), inset 0 0 20px rgba(255,45,120,0.05);
}
.btn-neon-magenta:hover {
  background: rgba(255,45,120,0.1);
  box-shadow: 0 0 30px rgba(255,45,120,0.4);
}
.btn-solid {
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  border: none;
  color: var(--snow);
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 0 22px rgba(255,45,120,0.35);
}
.btn-solid:hover { opacity: 0.92; transform: translateY(-2px); }
.btn-sm { font-size: 11px; padding: 11px 20px; }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(155,92,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,245,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: orb-drift 9s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, 40px) scale(1.1); }
}

.hero-kicker {
  font-family: var(--ff-ui);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  animation: fadeUp 0.6s both;
}
.hero-kicker span { width: 30px; height: 1px; background: var(--cyan); display: block; opacity: 0.6; }
.hero-brand { position: relative; display: inline-block; margin: 0 auto 1.6rem; }
.hero-brand-logo { display: block; width: 320px; max-width: 82vw; height: auto; border-radius: 14px; border: 1px solid var(--border-neon); box-shadow: 0 14px 48px rgba(0,0,0,0.55), 0 0 26px rgba(0,245,255,0.12); }
.hero-brand .brand-tm { top: 8px; right: 2px; font-size: 12px; }
/* Logo-as-hero: big, de-boxed via screen blend so only the neon shows */
.hero-brand-lead { display: block; margin: 0.2rem auto 0.1rem; }
.hero-brand-lead .hero-brand-logo { width: min(560px, 82vw); border: none; border-radius: 0; box-shadow: none; animation: logoPulse 3.4s ease-in-out infinite; }
/* home logo breathes between an icy blue and a bright white hue */
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(60,150,255,0.5)) drop-shadow(0 0 60px rgba(40,120,255,0.28)); }
  50% { filter: drop-shadow(0 0 46px rgba(255,255,255,0.9)) drop-shadow(0 0 95px rgba(130,200,255,0.55)); }
}
/* home-page strobe lights, gated to the opt-in strobe/psycho consent */
.hero { position: relative; }
.hero > *:not(.hero-strobe) { position: relative; z-index: 1; }
.hero-strobe { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; mix-blend-mode: screen; }
body.strobe-full .hero-strobe { opacity: 1; animation: heroStrobe 0.5s steps(1, end) infinite; }
@keyframes heroStrobe {
  0%, 100% { background: radial-gradient(28% 30% at 14% 20%, rgba(0,245,255,0.65), transparent 55%), radial-gradient(30% 32% at 86% 76%, rgba(255,46,196,0.65), transparent 55%); }
  33% { background: radial-gradient(30% 30% at 82% 18%, rgba(176,107,255,0.65), transparent 55%), radial-gradient(30% 32% at 18% 82%, rgba(255,176,32,0.65), transparent 55%); }
  66% { background: radial-gradient(32% 34% at 50% 52%, rgba(56,255,176,0.65), transparent 55%), radial-gradient(26% 28% at 50% 8%, rgba(0,245,255,0.7), transparent 55%); }
}
.hero-kicker-sub { margin-top: 6px; color: var(--mist); font-size: 13px; font-style: italic; letter-spacing: 0.4px; opacity: 0.92; text-shadow: 0 0 10px rgba(120,200,255,0.25); }
@media (prefers-reduced-motion: reduce) { .hero-brand-lead .hero-brand-logo, body.strobe-full .hero-strobe { animation: none; } body.strobe-full .hero-strobe { opacity: 0; } }
.hero-brand-lead .brand-tm { top: 14px; right: 8px; background: none; padding: 0; }
/* CHASE THE NIGHT scrolling slogan */
.hero-slogan-marquee { width: 100%; max-width: 1200px; overflow: hidden; margin: 0 auto 1.5rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.hsm-track { display: inline-flex; align-items: flex-start; white-space: nowrap; will-change: transform; animation: hsmScroll 26s linear infinite; }
.hsm-word {
  font-family: var(--ff-rave);
  font-size: clamp(26px, 4.2vw, 56px);
  letter-spacing: 4px;
  padding: 0 2px;
  background: linear-gradient(92deg, #00f5ff, #2bd6ff 18%, #b06bff 42%, #ff2ec4 64%, #ffb020 84%, #00f5ff);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  /* downward colored blur = neon dripping / melting away */
  text-shadow: 0 10px 16px rgba(176,107,255,0.45), 0 22px 30px rgba(255,46,196,0.32), 0 38px 48px rgba(0,245,255,0.18);
  filter: drop-shadow(0 0 10px rgba(0,245,255,0.45)) drop-shadow(0 0 18px rgba(255,46,196,0.35));
  animation: hsmNeon 6s linear infinite;
}
.hsm-dot { margin: 0 26px; font-size: clamp(12px, 1.6vw, 20px); color: #b06bff; text-shadow: 0 0 12px #b06bff, 0 8px 16px rgba(255,46,196,0.4); }
.hero-slogan-marquee:hover .hsm-track { animation-play-state: paused; }
@keyframes hsmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hsmNeon { from { background-position: 0% 0; } to { background-position: 300% 0; } }
@media (prefers-reduced-motion: reduce) { .hsm-track, .hsm-word { animation: none; } }

/* All-Festivals region map (replaces continent chips) */
.bw-map-wrap { margin: 14px 0 6px; border: 1px solid var(--border-neon); border-radius: 16px; background: linear-gradient(180deg,#0a0820,#070514); padding: 12px 14px 8px; box-shadow: inset 0 0 50px rgba(0,245,255,.04); }
.bw-view-toggle { display: flex; justify-content: center; gap: 4px; margin-bottom: 8px; }
.bw-vtab { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.03); border: 1px solid var(--border-neon); color: var(--mist); border-radius: 999px; padding: 6px 16px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: .18s; }
.bw-vtab:hover { border-color: rgba(255,255,255,.3); color: var(--snow); }
.bw-vtab.active { background: rgba(0,245,255,.08); border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 12px rgba(0,245,255,.15); }
.bw-vtab svg { width: 14px; height: 14px; }
.bw-globe { position: relative; width: 100%; max-width: none; margin: 4px auto 0; display: flex; justify-content: center; overflow: hidden; border-radius: 12px; }
.bw-map-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.bw-map-hint { color: var(--mist); font-size: 12px; }
.bw-map-clear { margin-left: auto; background: rgba(255,255,255,.05); border: 1px solid var(--border-neon); color: var(--snow); border-radius: 999px; padding: 5px 12px; font-size: 12px; cursor: pointer; }
.bw-map-clear:hover { border-color: rgba(255,255,255,.45); }
.bw-map-clear b { color: var(--cyan); }
.bw-map { position: relative; width: 100%; max-width: none; margin: 4px auto 0; }
.bw-zoom { display: flex; align-items: center; gap: 12px; max-width: 460px; margin: 6px auto 0; color: var(--mist); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.bw-zoom input[type="range"] { flex: 1; height: 4px; accent-color: var(--cyan); cursor: pointer; }
.bw-zoom-lbl { opacity: 0.8; }
.bwg-svg { display: block; width: 100%; height: auto; cursor: grab; touch-action: pan-y; }
.bwg-svg:active { cursor: grabbing; }
.bwg-dot { cursor: pointer; }
.bw-map-legend { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 12px 0 2px; }
.bwg-pill { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--border-neon); background: rgba(255,255,255,.02); color: var(--snow); border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 600; cursor: pointer; transition: .18s; }
.bwg-pill:hover { border-color: rgba(255,255,255,.4); }
.bwg-pill.on { background: rgba(255,255,255,.08); box-shadow: 0 0 0 1px rgba(255,255,255,.25); }
.bwg-sw { width: 10px; height: 10px; border-radius: 50%; }
.bwg-n { color: var(--mist); font-weight: 500; }
.bwm-svg { display: block; width: 100%; height: auto; }
.bwm-grat { stroke: rgba(150,140,200,.10); stroke-width: 1; fill: none; }
.bwm-eq { stroke: rgba(0,245,255,.16); }
.bwm-dot { cursor: pointer; transition: r .15s ease, opacity .2s ease; }
.bwm-hit { fill: transparent; cursor: pointer; }
.bwm-lab { cursor: pointer; }
.bwm-lab-t { font-family: var(--ff-ui,sans-serif); font-weight: 800; font-size: 22px; letter-spacing: 1px; paint-order: stroke; stroke: #05030f; stroke-width: 4px; transition: font-size .15s ease; }
.bwm-lab-c { font-size: 13px; font-weight: 600; opacity: .75; }
.bwm-lab:hover .bwm-lab-t { font-size: 24px; }
.bwm-lab.on .bwm-lab-t { font-size: 27px; }
.bwm-lab.off { opacity: .5; }
.bwm-tip { position: absolute; pointer-events: none; transform: translate(-50%,-135%); background: #0c0a22; border: 1px solid var(--border-neon); border-radius: 10px; padding: 6px 10px; font-size: 12px; white-space: nowrap; opacity: 0; transition: opacity .12s; z-index: 6; box-shadow: 0 8px 24px rgba(0,0,0,.5); color: var(--mist); }
.bwm-tip b { display: block; color: var(--snow); font-size: 13px; }
@media (max-width: 600px) { .bwm-lab-t { font-size: 31px; } .bwm-lab-c { font-size: 17px; } .bwm-lab.on .bwm-lab-t { font-size: 36px; } }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.hero-title {
  font-family: var(--ff-rave);
  font-size: clamp(64px, 11vw, 160px);
  letter-spacing: 6px;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.7s 0.1s both;
  position: relative;
}
.hero-title .line1 { display: block; -webkit-text-stroke: 1px var(--cyan); color: transparent; text-shadow: 0 0 40px rgba(0,245,255,0.3); }
.hero-title .line2 { display: block; color: var(--snow); }
.hero-title .line3 { display: block; -webkit-text-stroke: 1px var(--magenta); color: transparent; text-shadow: 0 0 40px rgba(255,45,120,0.3); }

.hero-subtitle {
  font-weight: 400;
  font-size: clamp(19px, 2.3vw, 27px);
  color: #ffffff;
  max-width: 760px;
  margin: 2.2rem auto;
  line-height: 1.55;
  text-shadow: 0 0 16px rgba(255,255,255,0.55), 0 0 38px rgba(255,255,255,0.28), 0 0 70px rgba(0,245,255,0.18);
  animation: fadeUp 0.7s 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s both;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-neon);
  background: rgba(16,13,34,0.7);
  backdrop-filter: blur(10px);
  animation: fadeUp 0.7s 0.4s both;
  flex-wrap: wrap;
  justify-content: center;
}
.hstat { padding: 1.25rem 2.3rem; border-right: 1px solid var(--border-neon); text-align: center; }
.hstat:last-child { border-right: none; }
.hstat-num { font-family: var(--ff-rave); font-size: 36px; letter-spacing: 2px; display: block; line-height: 1; margin-bottom: 4px; }
.hstat-num.c { color: var(--cyan); text-shadow: 0 0 15px var(--cyan-glow); }
.hstat-num.m { color: var(--magenta); text-shadow: 0 0 15px rgba(255,45,120,0.5); }
.hstat-num.v { color: var(--violet); text-shadow: 0 0 15px rgba(155,92,255,0.5); }
.hstat-num.a { color: var(--amber); text-shadow: 0 0 15px rgba(255,184,0,0.5); }
.hstat-label { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-ui);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mist);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--cyan), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100%{transform:scaleY(0.4);opacity:0.4} 50%{transform:scaleY(1);opacity:1} }

/* ── TICKER ── */
.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border-neon);
  border-bottom: 1px solid var(--border-neon);
  padding: 10px 0;
  background: var(--surface);
}
.ticker-track { display: inline-flex; white-space: nowrap; animation: ticker 32s linear infinite; }
.ticker-track.fast { animation-duration: 14s; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mist); padding: 0 2rem; display: flex; align-items: center; gap: 8px; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); flex-shrink: 0; }
.ticker-dot.m { background: var(--magenta); box-shadow: 0 0 6px var(--magenta); }
.ticker-dot.v { background: var(--violet); box-shadow: 0 0 6px var(--violet); }
.ticker-dot.a { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTION WRAP ── */
.section-wrap { position: relative; z-index: 1; padding: 5rem 3rem; }
.section-wrap .wrap { width: 100%; }
.section-wrap.alt { background: var(--surface); }
.section-wrap.alt2 { background: var(--deep); }

.sh { margin-bottom: 3rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.sh-eye { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.sh-eye::before { content: ''; display: block; width: 18px; height: 1px; background: var(--cyan); opacity: 0.7; }
.sh-title { font-family: var(--ff-rave); font-size: clamp(34px, 5vw, 60px); letter-spacing: 3px; line-height: 1; color: var(--snow); }
.sh-link { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid rgba(240,239,255,0.25); transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.sh-link:hover { color: var(--cyan); border-color: var(--cyan); }

/* ── FILTER TABS / CHIPS ── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.ftab {
  font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border: 1px solid var(--border-soft); background: transparent; color: var(--mist);
  cursor: pointer; border-radius: 2px; transition: all 0.2s;
}
.ftab.active, .ftab:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); box-shadow: 0 0 15px rgba(0,245,255,0.1); }

/* ── FESTIVAL GRID + CARDS ── */
.fest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); }
.fest-card {
  background: var(--deep); padding: 2rem 1.75rem; position: relative; overflow: hidden;
  cursor: pointer; transition: background 0.25s; text-decoration: none; color: inherit; display: block;
}
.fest-card:hover { background: var(--surface2); }
.fest-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.fc-cyan::before { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.fc-magenta::before { background: var(--magenta); box-shadow: 0 0 12px var(--magenta); }
.fc-violet::before { background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.fc-amber::before { background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.fest-card::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 120px; height: 120px; border-radius: 50%; opacity: 0; transition: opacity 0.3s; }
.fc-cyan::after { background: radial-gradient(circle, rgba(0,245,255,0.12), transparent 70%); }
.fc-magenta::after { background: radial-gradient(circle, rgba(255,45,120,0.12), transparent 70%); }
.fc-violet::after { background: radial-gradient(circle, rgba(155,92,255,0.12), transparent 70%); }
.fc-amber::after { background: radial-gradient(circle, rgba(255,184,0,0.12), transparent 70%); }
.fest-card:hover::after { opacity: 1; }

.fc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.fc-glyph { font-size: 26px; line-height: 1; color: var(--cyan); filter: drop-shadow(0 0 5px currentColor); }
.fc-tag { display: inline-flex; align-items: center; gap: 5px; font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.fc-uncen { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; color: #ff2ec4; filter: drop-shadow(0 0 5px rgba(255,46,196,0.85)); }
.fc-uncen svg { width: 15px; height: 15px; }
.fct-cyan { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,245,255,0.25); }
.fct-magenta { background: var(--magenta-dim); color: var(--magenta); border: 1px solid rgba(255,45,120,0.25); }
.fct-violet { background: var(--violet-dim); color: var(--violet); border: 1px solid rgba(155,92,255,0.25); }
.fct-amber { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(255,184,0,0.25); }
.fc-name { font-family: var(--ff-rave); font-size: 28px; letter-spacing: 2px; line-height: 1; margin-bottom: 4px; }
.fc-location { font-size: 11px; color: var(--mist); margin-bottom: 1rem; font-family: var(--ff-ui); }
.fc-desc { font-size: 13px; color: rgba(240,239,255,0.5); line-height: 1.65; margin-bottom: 1.5rem; font-weight: 300; }
.fc-footer { border-top: 1px solid var(--border-soft); padding-top: 1rem; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.fc-meta { display: flex; flex-direction: column; gap: 3px; }
.fc-date { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; color: var(--mist); }
.fc-ticket { font-size: 11px; color: rgba(240,239,255,0.4); }
.fc-cost { font-family: var(--ff-rave); font-size: 24px; letter-spacing: 1px; }
.fc-cost.c { color: var(--cyan); } .fc-cost.m { color: var(--magenta); } .fc-cost.v { color: var(--violet); } .fc-cost.a { color: var(--amber); }

/* ── FEATURED ── */
.featured-wrap { position: relative; z-index: 1; background: var(--surface); border-top: 1px solid var(--border-neon); border-bottom: 1px solid var(--border-neon); overflow: hidden; }
.featured-inner { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: center; padding: 5rem 3rem; max-width: var(--maxw); margin: 0 auto; }
.featured-wrap .bg-orb { position: absolute; left: -200px; top: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(155,92,255,0.12) 0%, transparent 65%); pointer-events: none; }
.feat-eye { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--magenta); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.feat-eye::before { content: ''; width: 18px; height: 1px; background: var(--magenta); display: block; }
.feat-title { font-family: var(--ff-rave); font-size: clamp(52px, 8vw, 100px); letter-spacing: 3px; line-height: 0.9; margin-bottom: 1.5rem; }
.feat-title span { display: block; -webkit-text-stroke: 1px var(--magenta); color: transparent; text-shadow: 0 0 30px rgba(255,45,120,0.25); }
.feat-desc { font-size: 15px; color: var(--mist); line-height: 1.7; max-width: 480px; font-weight: 300; margin-bottom: 2rem; }

/* cost panel */
.cost-panel { border: 1px solid var(--border-neon); background: rgba(3,2,10,0.7); }
.cost-panel-head { padding: 12px 18px; font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--border-neon); display: flex; align-items: center; gap: 6px; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.cost-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--border-soft); font-size: 13px; }
.cost-row:last-child { border-bottom: none; }
.cost-label { color: rgba(240,239,255,0.55); font-weight: 300; }
.cost-val { font-family: var(--ff-ui); font-weight: 500; color: var(--snow); }
.cost-total { background: rgba(0,245,255,0.06); }
.cost-total .cost-label { color: var(--mist); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }
.cost-total .cost-val { font-family: var(--ff-rave); font-size: 24px; color: var(--cyan); text-shadow: 0 0 15px var(--cyan-glow); }

/* ── REGIONS ── */
.regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); }
.region-card { background: var(--deep); padding: 2.5rem 1.5rem; text-align: center; cursor: pointer; position: relative; overflow: hidden; transition: background 0.25s; text-decoration: none; color: inherit; display: block; }
.region-card:hover { background: var(--surface2); }
.region-card .rc-orb { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 160px; height: 160px; border-radius: 50%; opacity: 0; transition: opacity 0.3s; }
.region-card:hover .rc-orb { opacity: 1; }
.rc-orb.c { background: radial-gradient(circle, rgba(0,245,255,0.08), transparent 70%); }
.rc-orb.m { background: radial-gradient(circle, rgba(255,45,120,0.08), transparent 70%); }
.rc-orb.v { background: radial-gradient(circle, rgba(155,92,255,0.08), transparent 70%); }
.rc-orb.a { background: radial-gradient(circle, rgba(255,184,0,0.08), transparent 70%); }
.region-icon { font-size: 34px; margin-bottom: 1rem; display: block; position: relative; z-index: 1; }
.region-name { font-family: var(--ff-rave); font-size: 20px; letter-spacing: 2px; margin-bottom: 6px; position: relative; z-index: 1; }
.region-count { font-size: 11px; color: rgba(240,239,255,0.4); margin-bottom: 1rem; position: relative; z-index: 1; }
.region-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; position: relative; z-index: 1; }
.rtag { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border: 1px solid var(--border-soft); color: rgba(240,239,255,0.45); }

/* ── PLANNER (home teaser) ── */
.planner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: var(--maxw); margin: 0 auto; }
.planner-title { font-family: var(--ff-rave); font-size: clamp(36px, 5vw, 56px); letter-spacing: 3px; line-height: 1; margin-bottom: 1rem; }
.planner-title .cyan { color: var(--cyan); text-shadow: 0 0 20px var(--cyan-glow); }
.planner-sub { font-size: 14px; color: var(--mist); line-height: 1.7; font-weight: 300; max-width: 400px; margin-bottom: 1.5rem; }
.planner-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pf-field { display: flex; flex-direction: column; gap: 6px; }
.pf-label { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }
.pf-field select, .pf-field input {
  background: var(--surface); border: 1px solid var(--border-soft); padding: 11px 13px;
  font-family: var(--ff-body); font-size: 13px; color: var(--snow); border-radius: 0; outline: none;
  appearance: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.pf-field select:focus, .pf-field input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,245,255,0.08); }
.pf-field input::placeholder { color: rgba(240,239,255,0.3); }
.pf-span { grid-column: 1 / -1; }

/* ── BLOG / GUIDES ── */
.blog-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); }
.blog-main { background: var(--deep); padding: 2.5rem; }
.blog-sidebar { background: var(--deep); }
.blog-sidebar-item { padding: 1.5rem; border-bottom: 1px solid var(--border-soft); cursor: pointer; transition: background 0.2s; text-decoration: none; color: inherit; display: block; }
.blog-sidebar-item:last-child { border-bottom: none; }
.blog-sidebar-item:hover { background: var(--surface2); }
.blog-cat { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.blog-main-title { font-family: var(--ff-rave); font-size: 28px; letter-spacing: 1px; line-height: 1.15; margin-bottom: 1rem; }
.blog-byline { font-size: 11px; color: rgba(240,239,255,0.35); margin-bottom: 1.25rem; display: flex; gap: 10px; flex-wrap: wrap; }
.blog-excerpt { font-size: 14px; color: var(--mist); line-height: 1.7; font-weight: 300; margin-bottom: 1.75rem; }
.blog-sidebar-title { font-family: var(--ff-ui); font-size: 14px; font-weight: 500; line-height: 1.35; margin-bottom: 6px; }
.blog-sidebar-meta { font-size: 11px; color: rgba(240,239,255,0.35); }

/* ── NEWSLETTER ── */
.newsletter-wrap { position: relative; z-index: 1; padding: 6rem 3rem; text-align: center; overflow: hidden; background: var(--deep); border-top: 1px solid var(--border-neon); }
.newsletter-wrap .nl-orb-l { position: absolute; top: -150px; left: -150px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(155,92,255,0.15), transparent 70%); pointer-events: none; }
.newsletter-wrap .nl-orb-r { position: absolute; bottom: -150px; right: -150px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,245,255,0.1), transparent 70%); pointer-events: none; }
.nl-kicker { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--violet); margin-bottom: 1.5rem; position: relative; }
.nl-title { font-family: var(--ff-rave); font-size: clamp(44px, 7vw, 88px); letter-spacing: 4px; line-height: 0.95; margin-bottom: 1.25rem; position: relative; }
.nl-title .outline { -webkit-text-stroke: 1px var(--violet); color: transparent; }
.nl-sub { font-size: 15px; color: var(--mist); font-weight: 300; max-width: 420px; margin: 0 auto 2.5rem; position: relative; line-height: 1.7; }
.nl-form { display: flex; max-width: 460px; margin: 0 auto; position: relative; }
.nl-form input { flex: 1; background: var(--surface); border: 1px solid var(--border-neon); border-right: none; padding: 14px 16px; font-family: var(--ff-body); font-size: 14px; color: var(--snow); outline: none; border-radius: 0; }
.nl-form input::placeholder { color: rgba(240,239,255,0.3); }
.nl-form input:focus { border-color: var(--violet); }
.nl-form button { background: linear-gradient(135deg, var(--violet), var(--magenta)); border: none; color: var(--snow); font-family: var(--ff-ui); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; padding: 14px 24px; cursor: pointer; transition: opacity 0.2s; }
.nl-form button:hover { opacity: 0.85; }
.nl-note { font-size: 10px; color: rgba(240,239,255,0.2); margin-top: 1.25rem; font-family: var(--ff-ui); letter-spacing: 0.5px; position: relative; }

/* ── FOOTER ── */
footer { background: var(--void); border-top: 1px solid var(--border-soft); padding: 4rem 3rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; max-width: var(--maxw); margin: 0 auto; }
.footer-logo { font-family: var(--ff-rave); font-size: 32px; letter-spacing: 4px; margin-bottom: 1rem; color: var(--snow); text-decoration: none; display: inline-block; }
.footer-logo span { color: var(--cyan); text-shadow: 0 0 20px var(--cyan-glow); }
.brand-mark { position: relative; display: inline-block; margin: 0.25rem 0 0.75rem; }
.brand-logo { display: block; width: 168px; max-width: 60vw; height: auto; filter: drop-shadow(0 0 14px rgba(0,245,255,0.18)); }
.brand-tm { position: absolute; top: 6px; right: -2px; font-size: 11px; color: var(--snow); background: rgba(6,4,16,0.7); padding: 1px 4px; border-radius: 3px; }
.footer-tagline { font-size: 12px; color: rgba(240,239,255,0.35); line-height: 1.65; max-width: 220px; font-weight: 300; }
.footer-col-head { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mist); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(240,239,255,0.35); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { background: var(--void); border-top: 1px solid var(--border-soft); padding: 1rem 3rem; display: flex; justify-content: space-between; align-items: center; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1px; color: rgba(240,239,255,0.2); flex-wrap: wrap; gap: 8px; }

.badge-live { display: inline-flex; align-items: center; gap: 5px; font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 9px; background: rgba(255,45,120,0.12); border: 1px solid rgba(255,45,120,0.3); color: var(--magenta); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head { position: relative; z-index: 1; padding: 5rem 3rem 3rem; overflow: hidden; border-bottom: 1px solid var(--border-neon); }
.page-head .wrap { max-width: var(--maxw); margin: 0 auto; }
.page-head::before { content: ''; position: absolute; top: -160px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(0,245,255,0.12), transparent 70%); pointer-events: none; }
.page-eye { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.page-eye span { width: 26px; height: 1px; background: var(--cyan); display: block; opacity: 0.6; }
.page-title { font-family: var(--ff-rave); font-size: clamp(44px, 8vw, 92px); letter-spacing: 4px; line-height: 0.92; }
.page-title .outline { -webkit-text-stroke: 1px var(--magenta); color: transparent; }
.page-sub { font-size: 15px; color: var(--mist); font-weight: 300; max-width: 560px; margin-top: 1.25rem; line-height: 1.7; }
.crumbs { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,239,255,0.4); margin-bottom: 1.25rem; }
.crumbs a { color: var(--mist); text-decoration: none; transition: color 0.2s; }
.crumbs a:hover { color: var(--cyan); }

/* ============================================================
   BROWSE PAGE
   ============================================================ */
.browse-wrap { position: relative; z-index: 1; padding: 3rem; max-width: var(--maxw); margin: 0 auto; }
.toolbar { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.toolbar-search { position: relative; }
.toolbar-search input {
  width: 100%; background: var(--surface); border: 1px solid var(--border-neon); color: var(--snow);
  font-family: var(--ff-body); font-size: 15px; padding: 14px 16px 14px 44px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.toolbar-search input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,245,255,0.08); }
.toolbar-search .search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); opacity: 0.5; font-size: 15px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-group-label { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }
.chip-row { display: flex; gap: 6px; flex-wrap: wrap; }
.sort-select { background: var(--surface); border: 1px solid var(--border-soft); color: var(--snow); font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1px; padding: 9px 12px; outline: none; cursor: pointer; appearance: none; }
.sort-select:focus { border-color: var(--cyan); }
.results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 10px; }
.results-count { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.results-count b { color: var(--cyan); }
.btn-reset { background: none; border: 1px solid var(--border-soft); color: var(--mist); font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 14px; cursor: pointer; transition: all 0.2s; }
.btn-reset:hover { border-color: var(--magenta); color: var(--magenta); }
.empty-state { text-align: center; padding: 5rem 1rem; border: 1px dashed var(--border-neon); }
.empty-state .es-glyph { font-size: 48px; margin-bottom: 1rem; opacity: 0.6; }
.empty-state h3 { font-family: var(--ff-rave); font-size: 24px; letter-spacing: 2px; margin-bottom: 8px; }
.empty-state p { color: var(--mist); font-weight: 300; }

/* ============================================================
   FESTIVAL DETAIL PAGE
   ============================================================ */
.detail-hero { position: relative; z-index: 1; min-height: 64vh; display: flex; align-items: flex-end; padding: 3rem; overflow: hidden; border-bottom: 1px solid var(--border-neon); }
.detail-hero .dh-bg { position: absolute; inset: 0; z-index: -1; opacity: 0.9; }
.detail-hero .dh-glyph { position: absolute; right: 4%; top: 20%; font-size: clamp(120px, 22vw, 320px); opacity: 0.12; filter: blur(1px); pointer-events: none; line-height: 1; }
.detail-hero.has-photo { min-height: 80vh; }
.detail-hero .dh-photo { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.detail-hero.has-photo .dh-bg { z-index: 1; opacity: 1; background: linear-gradient(180deg, rgba(3,2,10,0.38) 0%, rgba(3,2,10,0.58) 55%, rgba(3,2,10,0.95) 100%) !important; }
.detail-hero.has-photo .wrap { position: relative; z-index: 2; }
.detail-hero .wrap { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.dh-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1rem; }
.dh-lineup { margin-bottom: 0.85rem; }
.dh-lu-label { display: block; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--lp, var(--cyan)); margin-bottom: 6px; opacity: 0.9; }
.dh-lu-acts { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 12px; font-family: var(--ff-rave); letter-spacing: 1.5px; line-height: 1.02; }
.dh-lu-act { transition: filter 0.2s ease; }
.dh-lu-act:hover { filter: brightness(1.3); }
.dh-lu-t1 { font-size: clamp(28px, 4.6vw, 58px); }
.dh-lu-t2 { font-size: clamp(18px, 2.6vw, 34px); }
.dh-lu-t3 { font-size: clamp(13px, 1.5vw, 19px); opacity: 0.92; }
.dh-lu-sep { color: rgba(240,239,255,0.22); font-family: var(--ff-rave); font-weight: 400; align-self: center; }
/* RGB neon-outlined festival title; --beat (0..1) is driven by the turntable
   audio so the glow pulses with the mixer. Idle = slow hue cycle. */
@property --dh-hue { syntax: '<number>'; initial-value: 190; inherits: true; }
.dh-title { font-family: var(--ff-rave); font-size: clamp(52px, 10vw, 130px); letter-spacing: 4px; line-height: 0.92; text-wrap: balance; margin-bottom: 0.75rem; --beat: 0; --dh-hue: 190; animation: dhHue 7s linear infinite; }
.dh-title.dh-title-l  { font-size: clamp(40px, 7.6vw, 96px); letter-spacing: 3px; }
.dh-title.dh-title-xl { font-size: clamp(30px, 5.8vw, 70px); letter-spacing: 2px; }
.dh-title, .dh-title .char {
  color: transparent;
  -webkit-text-stroke: 2px hsl(var(--dh-hue) 100% 62%);
  text-shadow: 0 0 calc(6px + var(--beat) * 44px) hsl(var(--dh-hue) 100% 60%),
               0 0 calc(3px + var(--beat) * 22px) hsl(calc(var(--dh-hue) + 130) 100% 60%);
}
.dh-title.beat-on { animation-duration: 2.6s; }
.dh-title.beat-on .char { transition: text-shadow 0.06s linear; }
@keyframes dhHue { to { --dh-hue: 550; } }
@media (prefers-reduced-motion: reduce) { .dh-title { animation: none; } }
/* Uncensored mode switch (flips clean/explicit festival copy) */
.uncensor-switch { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; margin-bottom: 0.85rem; user-select: none; }
.uncensor-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.us-track { position: relative; width: 40px; height: 22px; border-radius: 999px; background: rgba(240,239,255,0.14); border: 1px solid var(--border-neon); transition: background 0.2s ease; flex: none; }
.us-thumb { position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #f0efff; transition: transform 0.2s ease, background 0.2s ease; }
.uncensor-switch input:checked + .us-track { background: linear-gradient(90deg, var(--magenta), #ff7a45); }
.uncensor-switch input:checked + .us-track .us-thumb { transform: translateX(18px); }
.uncensor-switch input:focus-visible + .us-track { box-shadow: 0 0 0 2px rgba(0,245,255,0.4); }
.us-label { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.us-18 { font-family: var(--ff-ui); font-size: 8px; font-weight: 700; letter-spacing: 1px; color: #0a0820; background: var(--magenta); padding: 2px 5px; border-radius: 4px; }

/* Neon RGB burst on any button press (added globally in app.js boot) */
.fx-pop { position: fixed; z-index: 99999; width: 14px; height: 14px; border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; mix-blend-mode: screen;
  background: conic-gradient(from 0deg, #ff0040, #ff8a00, #ffe600, #00ff66, #00f5ff, #7a00ff, #ff00e5, #ff0040);
  animation: fxPop 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.fx-pop::after { content: ""; position: absolute; inset: 22%; border-radius: 50%; background: #fff; filter: blur(2px); }
@keyframes fxPop { 0% { opacity: 1; transform: translate(-50%, -50%) scale(0.25); } 70% { opacity: 0.85; } 100% { opacity: 0; transform: translate(-50%, -50%) scale(16); } }
@keyframes fxFlash { 0% { box-shadow: 0 0 0 0 rgba(0,245,255,0); } 28% { box-shadow: 0 0 22px 4px var(--cyan), 0 0 40px 10px var(--magenta); filter: brightness(1.45) saturate(1.4); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); filter: brightness(1); } }
.fx-flash { animation: fxFlash 0.55s ease-out; }
@media (prefers-reduced-motion: reduce) { .fx-pop { display: none; } .fx-flash { animation: none; } }
/* Hero controls row: uncensored + voice + psycho */
.hero-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin: 0.5rem 0 1rem; }
.hero-controls .uncensor-switch { margin-bottom: 0; }
.voice-ctrl { display: inline-flex; align-items: center; gap: 10px; }
.voice-play { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; color: #0a0820; padding: 8px 15px; border: none; border-radius: 999px; cursor: pointer; background: linear-gradient(90deg, #ff2ec4, #ff7ad9); box-shadow: 0 0 16px rgba(255,46,196,0.4); }
.voice-play .vp-ic { font-size: 10px; }
.voice-play.playing { background: linear-gradient(90deg, var(--cyan), #7a00ff); color: #04121a; box-shadow: 0 0 18px rgba(0,245,255,0.5); }
.voice-persona-sw { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; user-select: none; }
.voice-persona-sw input { position: absolute; opacity: 0; width: 0; height: 0; }
.vps-end { font-family: var(--ff-ui); font-size: 16px; line-height: 1; color: var(--mist); transition: color 0.2s, text-shadow 0.2s; }
.vps-female.on { color: #ff2ec4; text-shadow: 0 0 9px rgba(255,46,196,0.7); }
.vps-male.on { color: var(--cyan); text-shadow: 0 0 9px rgba(0,245,255,0.7); }
.vps-track { position: relative; width: 36px; height: 20px; border-radius: 999px; background: rgba(240,239,255,0.14); border: 1px solid var(--border-neon); flex: none; }
.vps-thumb { position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: #f0efff; transition: transform 0.2s ease; }
.voice-persona-sw input:checked + .vps-track .vps-thumb { transform: translateX(16px); }
/* Karaoke reader: words glow neon pink as they are spoken, trailing afterglow */
.voice-reader { display: none; margin: 0.1rem 0 1.1rem; max-width: 820px; font-family: var(--ff-ui); font-size: 16px; line-height: 1.75; color: var(--mist); font-weight: 300; }
.voice-reader.on { display: block; }
.vr-word { transition: color 0.12s ease, text-shadow 0.12s ease; }
.vr-word.done { color: #ff8ad6; text-shadow: 0 0 6px rgba(255,46,196,0.35); }
.vr-word.active { color: #ff2ec4; text-shadow: 0 0 10px #ff2ec4, 0 0 22px rgba(255,46,196,0.7), 0 0 36px rgba(122,0,255,0.5); }
/* Psycho switch (reuses .us-track/.us-thumb) */
.psycho-switch { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
.psycho-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.psycho-switch input:checked + .us-track { background: linear-gradient(90deg, #ffffff, #9aa3b2); }
.psycho-switch input:checked + .us-track .us-thumb { transform: translateX(18px); background: #fff; }
/* Psycho mode: white strobe flashes from the stage fading into the dark trees */
.psycho-flash { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; background: radial-gradient(60% 55% at 50% 36%, rgba(255,255,255,0.95), rgba(255,255,255,0.25) 38%, transparent 72%); }
.detail-hero.psycho-on .psycho-flash { animation: psychoStrobe 3s steps(1, end) infinite; }
@keyframes psychoStrobe { 0% { opacity: 0; } 4% { opacity: 0.95; } 6% { opacity: 0; } 9% { opacity: 0.9; } 11% { opacity: 0; } 14% { opacity: 0.8; } 16% { opacity: 0.08; } 18% { opacity: 0.65; } 21% { opacity: 0; } 100% { opacity: 0; } }
.detail-hero.psycho-on .dh-title { -webkit-text-stroke: 2px #fff; animation: psychoText 0.34s steps(2, end) infinite; }
.detail-hero.psycho-on .dh-title .char { -webkit-text-stroke: 2px #fff; }
.detail-hero.psycho-on .dh-lu-act { color: transparent !important; -webkit-text-stroke: 1px #fff; text-shadow: 0 0 10px #fff !important; animation: psychoText 0.34s steps(2, end) infinite; }
@keyframes psychoText { 0%, 50% { text-shadow: 0 0 2px #fff, 0 0 6px rgba(255,255,255,0.6); } 51%, 100% { text-shadow: 0 0 16px #fff, 0 0 34px #fff, 0 0 60px rgba(255,255,255,0.7); } }
@media (prefers-reduced-motion: reduce) { .detail-hero.psycho-on .psycho-flash, .detail-hero.psycho-on .dh-title, .detail-hero.psycho-on .dh-lu-act { animation: none !important; } .detail-hero.psycho-on .psycho-flash { opacity: 0; } }
.dh-loc { font-family: var(--ff-ui); font-size: 14px; letter-spacing: 1px; color: var(--snow); display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 1rem; }
.dh-loc span { color: var(--mist); }
.dh-vibe { font-size: 16px; color: var(--snow); max-width: 640px; font-weight: 300; line-height: 1.7; }
.dh-quick { display: flex; gap: 0; border: 1px solid var(--border-neon); background: rgba(3,2,10,0.6); backdrop-filter: blur(8px); margin-top: 1.75rem; flex-wrap: wrap; }
.dh-quick .q { padding: 0.9rem 1.5rem; border-right: 1px solid var(--border-neon); }
.dh-quick .q:last-child { border-right: none; }
.dh-quick .q-label { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }
.dh-quick .q-val { font-family: var(--ff-ui); font-size: 14px; font-weight: 600; color: var(--snow); }

/* scroll-spy section nav */
.detail-body { position: relative; z-index: 1; max-width: min(1680px, 94vw); margin: 0 auto; padding: 0 3rem 4rem; display: grid; grid-template-columns: 220px 1fr; gap: 3.5rem; align-items: start; }
.section-nav { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 2px; }
.section-nav a { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); text-decoration: none; padding: 9px 12px; border-left: 2px solid var(--border-soft); transition: all 0.2s; }
.section-nav a:hover { color: var(--snow); border-color: var(--mist); }
.section-nav a.active { color: var(--cyan); border-color: var(--cyan); background: var(--cyan-dim); }
.detail-sections { padding-top: 3rem; }
.d-section { margin-bottom: 3.5rem; scroll-margin-top: 78px; }
.d-section-head { font-family: var(--ff-rave); font-size: 24px; letter-spacing: 2px; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px; }
.d-section-head .num { font-family: var(--ff-ui); font-size: 12px; color: var(--cyan); border: 1px solid var(--border-neon); padding: 3px 8px; border-radius: 2px; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); }
.info-cell { background: var(--deep); padding: 1.25rem 1.4rem; }
.info-cell .ic-label { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.info-cell .ic-val { font-size: 14px; color: var(--snow); font-weight: 300; line-height: 1.55; }

.warn-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1rem; }
.warn-tag { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 11px; border: 1px solid rgba(255,184,0,0.35); color: var(--amber); background: var(--amber-dim); border-radius: 2px; }

/* cost index table */
.cost-index { border: 1px solid var(--border-neon); }
.ci-block-head { padding: 11px 18px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); background: rgba(0,245,255,0.04); border-bottom: 1px solid var(--border-soft); }
.ci-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-soft); }
.ci-tier { background: var(--deep); padding: 1.25rem; text-align: center; }
.ci-tier .t-name { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); margin-bottom: 6px; }
.ci-tier .t-val { font-family: var(--ff-rave); font-size: 26px; letter-spacing: 1px; color: var(--cyan); }
.ci-free { padding: 1.25rem 1.5rem; background: var(--deep); text-align: center; }
.ci-free-badge { display: inline-block; font-family: var(--ff-rave); font-size: 22px; letter-spacing: 1px; color: var(--cyan); background: rgba(0,245,255,0.08); border: 1px solid rgba(0,245,255,0.25); border-radius: 6px; padding: 0.4rem 1.4rem; }
.ci-note { padding: 12px 18px; font-size: 12px; color: var(--mist); font-weight: 300; border-top: 1px solid var(--border-soft); }
.gauge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.gauge .dot { width: 8px; height: 8px; border-radius: 50%; }
.gauge.cold .dot { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.gauge.stable .dot { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.gauge.hot .dot { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); animation: pulse 1.6s infinite; }

/* per-festival calculator */
/* ── DJ DECK (live trip calculator) ── */
.deck {
  margin-top: 1.5rem; border: 1px solid var(--border-neon); border-radius: 5px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 70px), linear-gradient(160deg, #0d0a24, #060410);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 26px 60px rgba(0,0,0,0.42);
}
.deck-head { padding: 12px 18px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--border-neon); display: flex; align-items: center; gap: 8px; }
.deck-tag { margin-left: auto; font-size: 8.5px; letter-spacing: 3px; color: var(--magenta); border: 1px solid rgba(255,45,120,0.4); padding: 2px 8px; border-radius: 2px; }

.deck-channels { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 14px; padding: 16px 18px; border-bottom: 1px solid var(--border-soft); }
.dch { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.dlabel { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }
.dselect select { width: 100%; background: rgba(3,2,10,0.7); border: 1px solid var(--border-neon); color: var(--snow); font-family: var(--ff-ui); font-size: 12px; padding: 9px 10px; border-radius: 3px; outline: none; cursor: pointer; }
.dselect select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,245,255,0.08); }
/* Dropdown option list: dark popup with readable light text + neon group labels
   (native option popups otherwise default to white-on-white and vanish). */
select option { background-color: #0b0818; color: #f0efff; }
select option:checked { background-color: #1b1430; color: #00f5ff; }
select optgroup { background-color: #050310; color: #00f5ff; font-weight: 700; font-style: normal; }
select optgroup option { color: #f0efff; font-weight: 400; }
.dseg { display: flex; gap: 4px; }
.dseg button { flex: 1 1 0; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; padding: 9px 4px; border-radius: 3px; cursor: pointer; color: var(--mist); background: rgba(3,2,10,0.7); border: 1px solid var(--border-soft); transition: color .18s, border-color .18s, background .18s, box-shadow .18s; }
.dseg button:hover { color: var(--snow); border-color: var(--border-neon); }
#calc-ticket button.on { color: var(--magenta); border-color: var(--magenta); background: var(--magenta-dim); box-shadow: 0 0 12px var(--magenta-dim), inset 0 0 10px rgba(255,45,120,0.14); }
#calc-stay button.on { color: var(--violet); border-color: var(--violet); background: var(--violet-dim); box-shadow: 0 0 12px var(--violet-dim), inset 0 0 10px rgba(155,92,255,0.14); }

.deck-body { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 22px 18px; align-items: center; }
.deck-knobs { display: flex; gap: 18px; }
.knob-unit { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.knob { position: relative; width: 78px; height: 78px; border-radius: 50%; cursor: grab; touch-action: none; outline: none; user-select: none; -webkit-user-select: none;
  background: radial-gradient(circle at 50% 36%, #241d44, #0a0717 72%);
  box-shadow: 0 6px 14px rgba(0,0,0,0.5), inset 0 2px 3px rgba(255,255,255,0.10), inset 0 -7px 13px rgba(0,0,0,0.62); }
.knob::before { content: ''; position: absolute; inset: 6px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); }
.knob.turning { cursor: grabbing; }
.knob:focus-visible { box-shadow: 0 0 0 3px rgba(0,245,255,0.4), 0 6px 14px rgba(0,0,0,0.5), inset 0 2px 3px rgba(255,255,255,0.10); }
.knob-dial { position: absolute; inset: 0; transition: transform 0.12s ease-out; }
.knob-tick { position: absolute; top: 7px; left: 50%; width: 3px; height: 15px; margin-left: -1.5px; border-radius: 2px; }
.knob-val { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--ff-rave); font-size: 26px; color: var(--snow); pointer-events: none; }
.knob-cyan .knob-tick { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.knob-cyan .knob-val { text-shadow: 0 0 14px var(--cyan-glow); }
.knob-amber .knob-tick { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.knob-amber .knob-val { text-shadow: 0 0 14px rgba(255,184,0,0.45); }
.knob-label { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }

.deck-eq { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.eq-col { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.eq-cyan { color: var(--cyan); } .eq-magenta { color: var(--magenta); } .eq-violet { color: var(--violet); } .eq-amber { color: var(--amber); }
.eq-stack { display: flex; flex-direction: column-reverse; gap: 3px; width: 100%; height: 134px; padding: 6px; border-radius: 4px; background: rgba(3,2,10,0.65); border: 1px solid var(--border-soft); box-shadow: inset 0 2px 8px rgba(0,0,0,0.55); }
.eq-stack i { display: block; flex: 1; border-radius: 1px; background: rgba(255,255,255,0.05); transition: background 0.22s ease, box-shadow 0.22s ease; }
.eq-cyan i.on { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.eq-magenta i.on { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }
.eq-violet i.on { background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.eq-amber i.on { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.eq-stack i.peak { background: #fff !important; box-shadow: 0 0 12px #fff, 0 0 18px currentColor; }
.eq-val { font-family: var(--ff-ui); font-size: 11px; font-weight: 600; color: var(--snow); }
.eq-cap { font-family: var(--ff-ui); font-size: 8.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }

.deck-master { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; background: rgba(0,245,255,0.06); border-top: 1px solid var(--border-neon); }
.dm-label { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.dm-val { font-family: var(--ff-rave); font-size: 30px; color: var(--cyan); text-shadow: 0 0 18px var(--cyan-glow); }
/* live airfare upgrade cues (real SerpApi fare replaced the matrix estimate) */
.deck.is-live .deck-master { background: rgba(0,245,255,0.11); }
.deck.is-live .dm-label { color: var(--cyan); }
.eq-col[data-live] .eq-val { color: var(--cyan); text-shadow: 0 0 7px var(--cyan-glow); }

@media (prefers-reduced-motion: no-preference) {
  .eq-stack i.peak { animation: eqPeak 1.1s ease-in-out infinite; }
}
@keyframes eqPeak { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* gear cards */
.gear-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); }
.gear-card { background: var(--deep); padding: 1.5rem; position: relative; }
.gear-card .g-num { font-family: var(--ff-rave); font-size: 30px; color: rgba(155,92,255,0.4); line-height: 1; margin-bottom: 10px; }
.gear-card .g-name { font-family: var(--ff-ui); font-size: 14px; font-weight: 600; color: var(--snow); margin-bottom: 8px; line-height: 1.3; }
.gear-card .g-why { font-size: 12.5px; color: var(--mist); font-weight: 300; line-height: 1.6; margin-bottom: 1rem; }
.gear-card .g-link { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--violet); text-decoration: none; border-bottom: 1px solid rgba(155,92,255,0.4); padding-bottom: 3px; transition: color 0.2s; }
.gear-card .g-link:hover { color: var(--magenta); }
.aff-note { font-size: 10px; color: rgba(240,239,255,0.3); font-family: var(--ff-ui); letter-spacing: 0.5px; margin-top: 10px; }

/* logistics list */
.logi-list { display: flex; flex-direction: column; gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); }
.logi-item { background: var(--deep); padding: 1.25rem 1.4rem; display: grid; grid-template-columns: 150px 1fr; gap: 1rem; }
.logi-item .l-key { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); padding-top: 2px; }
.logi-item .l-val { font-size: 14px; color: var(--snow); font-weight: 300; line-height: 1.6; }

/* recovery card */
.recovery-card { border: 1px solid var(--border-neon); background: linear-gradient(135deg, rgba(155,92,255,0.08), rgba(0,245,255,0.04)); padding: 2rem; position: relative; overflow: hidden; }
.recovery-card .rec-eye { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--violet); margin-bottom: 10px; }
.recovery-card .rec-dest { font-family: var(--ff-rave); font-size: 26px; letter-spacing: 1px; margin-bottom: 10px; }
.recovery-card .rec-act { font-size: 14px; color: var(--mist); font-weight: 300; line-height: 1.7; max-width: 560px; margin-bottom: 1.5rem; }

.flow-stat { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--border-neon); padding: 12px 18px; margin-bottom: 1rem; }
.flow-stat .fs-num { font-family: var(--ff-rave); font-size: 28px; color: var(--cyan); }
.flow-stat .fs-label { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.advisory { border-left: 3px solid var(--magenta); background: var(--magenta-dim); padding: 1rem 1.25rem; font-size: 13.5px; color: var(--snow); font-weight: 300; line-height: 1.6; }
.advisory b { color: var(--magenta); font-weight: 600; }

/* Driving & Ground Intel panel (Phase 1 premium spine).
   Same console shell as the cost DECK so it reads as one instrument. */
.intel-panel {
  margin-top: 1.5rem; border: 1px solid var(--border-neon); border-radius: 5px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 70px), linear-gradient(160deg, #0d0a24, #060410);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 26px 60px rgba(0,0,0,0.42);
}
.intel-head { padding: 12px 18px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--border-neon); display: flex; align-items: center; gap: 8px; }
.intel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-soft); }
.intel-row { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(8,6,22,0.6); font-size: 13px; min-width: 0; }
.intel-key { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.intel-val { margin-left: auto; font-weight: 600; color: var(--snow); text-align: right; }
.intel-lamp { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: var(--mist); box-shadow: 0 0 8px rgba(240,239,255,0.4); }
.intel-ok    .intel-lamp { background: #38e08a; box-shadow: 0 0 8px rgba(56,224,138,0.7); }
.intel-ok    .intel-val  { color: #6cf0ad; }
.intel-warn  .intel-lamp { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.intel-warn  .intel-val  { color: var(--amber); }
.intel-alert .intel-lamp { background: var(--magenta); box-shadow: 0 0 9px var(--magenta); animation: pulse 2s ease-in-out infinite; }
.intel-alert .intel-val  { color: var(--magenta); }
.intel-pro { display: inline-block; margin-left: 7px; padding: 1px 6px; border-radius: 4px; font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1.5px; font-weight: 700; color: #0a0820; background: linear-gradient(90deg, var(--cyan), var(--magenta)); vertical-align: middle; }
.intel-pro-row { position: relative; }
.intel-pro-row::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(0,245,255,0.25); pointer-events: none; }
.wx-live-head { margin-top: 1rem; margin-bottom: 6px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); display: flex; align-items: center; }
.tt-vol { display: flex; align-items: center; gap: 8px; min-width: 120px; }
.tt-vol-ic { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; color: var(--mist); }
.tt-vol-range { -webkit-appearance: none; appearance: none; flex: 1; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), rgba(0,245,255,0.15)); outline: none; cursor: pointer; }
.tt-vol-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 14px; height: 14px; border-radius: 50%; background: #f0efff; border: 2px solid var(--cyan); cursor: pointer; box-shadow: 0 0 8px rgba(0,245,255,0.5); }
.tt-vol-range::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: #f0efff; border: 2px solid var(--cyan); cursor: pointer; }
.intel-neutral .intel-lamp { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.intel-switch { display: inline-flex; border: 1px solid var(--border-neon); border-radius: 3px; overflow: hidden; }
.intel-switch .isw { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; color: var(--mist); background: rgba(255,255,255,0.02); }
.intel-switch .isw.on { color: var(--deep); background: var(--cyan); box-shadow: 0 0 12px var(--cyan-glow); font-weight: 700; }
.intel-notes { list-style: none; margin: 0; padding: 12px 18px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border-soft); }
.intel-notes li { position: relative; padding-left: 16px; font-size: 12.5px; line-height: 1.6; color: var(--mist); font-weight: 300; }
.intel-notes li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }

/* Luggage storage + forwarding providers */
.lug-block { margin-top: 1.25rem; border: 1px solid var(--border-neon); border-radius: 12px; padding: 16px 18px; background: rgba(8,6,22,0.5); }
.lug-head { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.lug-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.lug-col-h { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); margin-bottom: 8px; }
.lug-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lug-list li { display: flex; flex-direction: column; gap: 2px; }
.lug-prov { font-family: var(--ff-ui); font-weight: 700; font-size: 13px; letter-spacing: 0.5px; color: var(--cyan); text-decoration: none; }
.lug-prov:hover { text-shadow: 0 0 10px var(--cyan-glow); }
.lug-info { font-size: 12.5px; line-height: 1.5; color: var(--mist); font-weight: 300; }

/* Things-to-do panel: curated flagship extras + live activity feed */
.cs-acts .cs-acts-sub { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); padding: 12px 18px 4px; }
.cs-acts-official { display: block; margin: 12px 18px 4px; padding: 9px 12px; border: 1px solid var(--magenta); border-radius: 4px; background: var(--magenta-dim); color: var(--magenta); font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; text-align: center; transition: box-shadow .18s, color .18s; }
.cs-acts-official:hover { color: var(--snow); box-shadow: 0 0 14px var(--magenta-dim); }
/* Good to know list (festival-specific) */
.cs-gtk-list { list-style: none; margin: 0; padding: 10px 18px 16px; display: flex; flex-direction: column; gap: 11px; }
.cs-gtk-list li { display: flex; flex-direction: column; gap: 3px; }
.cs-gtk-k { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); }
.cs-gtk-v { font-size: 12.5px; line-height: 1.55; color: var(--mist); font-weight: 300; }
/* Official-packages link inside the festival stop card, beside the cost chips */
.cs-stop-official { display: inline-flex; align-items: center; margin-left: auto; font-family: var(--ff-ui); font-size: 10px; letter-spacing: .5px; text-transform: uppercase; color: var(--magenta); border: 1px solid var(--magenta); border-radius: 999px; padding: 5px 11px; text-decoration: none; transition: background .18s, color .18s, box-shadow .18s; }
.cs-stop-official:hover { background: var(--magenta-dim); color: var(--snow); box-shadow: 0 0 12px var(--magenta-dim); }

/* Suggested loop (itinerary recommender) */
.cs-itin-intro { padding: 12px 18px 6px; font-size: 12.5px; line-height: 1.55; color: var(--mist); font-weight: 300; }
.cs-itin-list { display: flex; flex-direction: column; gap: 8px; padding: 4px 14px 16px; }
.cs-sug { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border: 1px solid var(--border-soft); border-radius: 5px; background: rgba(3,2,10,0.5); }
.cs-sug-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cs-sug-city { font-family: var(--ff-ui); font-size: 14px; color: var(--snow); font-weight: 600; }
.cs-sug-meta { font-size: 11.5px; color: var(--mist); font-weight: 300; }
.cs-sug-add { flex: none; cursor: pointer; font-family: var(--ff-ui); font-size: 11px; letter-spacing: .5px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--cyan); background: rgba(0,245,255,0.10); color: var(--cyan); transition: background .18s, color .18s, box-shadow .18s; }
.cs-sug-add:hover { background: var(--cyan); color: #05030f; box-shadow: 0 0 12px rgba(0,245,255,0.4); }

/* Trip-shaper crossfaders */
.cs-shaper { display: flex; flex-direction: column; gap: 10px; padding: 14px; margin: 0 0 12px; border: 1px solid var(--border-soft); border-radius: 6px; background: rgba(3,2,10,0.4); }
.cs-shaper-row { display: flex; align-items: center; gap: 10px; }
.cs-shaper-end { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); flex: none; width: 58px; }
.cs-shaper-row .cs-shaper-end:last-of-type { text-align: right; }
.cs-shaper-val { font-family: var(--ff-ui); font-size: 11px; color: var(--cyan); flex: none; width: 64px; text-align: right; }
.cs-vibe { -webkit-appearance: none; appearance: none; flex: 1; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--magenta)); outline: none; }
.cs-vibe::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: #f0efff; border: 2px solid var(--cyan); cursor: pointer; box-shadow: 0 0 10px rgba(0,245,255,0.5); }
.cs-vibe::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #f0efff; border: 2px solid var(--cyan); cursor: pointer; }
.cs-shaper-hint { font-size: 11.5px; line-height: 1.5; color: var(--mist); font-weight: 300; }

/* Mixer volume control */
.cs-vol { display: flex; align-items: center; gap: 7px; flex: 1; min-width: 90px; }
.cs-vol-ic { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; color: var(--mist); flex: none; }
.cs-vol-range { -webkit-appearance: none; appearance: none; flex: 1; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), rgba(0,245,255,0.15)); outline: none; cursor: pointer; }
.cs-vol-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 14px; height: 14px; border-radius: 50%; background: #f0efff; border: 2px solid var(--cyan); cursor: pointer; box-shadow: 0 0 8px rgba(0,245,255,0.5); }
.cs-vol-range::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: #f0efff; border: 2px solid var(--cyan); cursor: pointer; }
.cs-acts-extras { border-bottom: 1px solid var(--border-soft); padding-bottom: 8px; }
.cs-acts-list { list-style: none; margin: 0; padding: 4px 18px 14px; display: flex; flex-direction: column; gap: 10px; }
.cs-acts-list li { position: relative; padding-left: 16px; }
.cs-acts-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 6px var(--magenta); }
.cs-acts-extras .cs-acts-list li::before { background: var(--gold, #FFC93C); box-shadow: 0 0 6px var(--gold, #FFC93C); }
.cs-acts-list a { text-decoration: none; display: block; }
.cs-acts-list a:hover .cs-acts-name { color: var(--cyan); }
.cs-acts-name { display: block; font-family: var(--ff-ui); font-size: 13px; color: var(--snow); font-weight: 500; }
.cs-acts-detail { display: block; font-size: 12px; line-height: 1.5; color: var(--mist); font-weight: 300; margin-top: 2px; }
.cs-acts-price { color: var(--cyan); font-weight: 600; }
.cs-actcat { border-top: 1px solid rgba(240,239,255,0.06); }
.cs-actcat:first-of-type { border-top: 0; }
.cs-actcat-h { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); padding: 10px 18px 2px; }
@media (max-width: 560px) { .intel-grid { grid-template-columns: 1fr; } }

/* Weather Watch panel (Phase 2). Shares the console shell. */
.wx-panel { margin-top: 1.5rem; border: 1px solid var(--border-neon); border-radius: 5px; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 70px), linear-gradient(160deg, #0d0a24, #060410); box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 26px 60px rgba(0,0,0,0.42); }
.wx-head { padding: 12px 18px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--border-neon); display: flex; align-items: center; gap: 8px; }
.wx-loading { padding: 18px; font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.wx-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-soft); }
.wx-stat { padding: 14px 16px; background: rgba(8,6,22,0.6); text-align: center; }
.wx-s-label { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); margin-bottom: 6px; }
.wx-s-val { font-family: var(--ff-rave); font-size: 18px; color: var(--cyan); text-shadow: 0 0 14px var(--cyan-glow); }
.wx-days { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 1px; background: var(--border-soft); overflow-x: auto; }
.wx-day { padding: 12px 10px; background: rgba(8,6,22,0.6); text-align: center; min-width: 84px; }
.wx-d-date { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1px; color: var(--mist); }
.wx-d-code { font-size: 11px; color: var(--snow); margin: 6px 0; }
.wx-d-temp { font-family: var(--ff-rave); font-size: 15px; color: var(--cyan); }
.wx-d-rain { font-size: 10px; color: var(--mist); margin-top: 4px; }
.wx-flags { display: flex; flex-direction: column; gap: 1px; background: var(--border-soft); }
.wx-flag { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: rgba(8,6,22,0.6); font-size: 12.5px; color: var(--snow); }
@media (max-width: 560px) { .wx-grid { grid-template-columns: repeat(2, 1fr); } }

/* The Turntable (Phase 3) */
#sec-decks .d-section-head .num svg { width: 18px; height: 18px; vertical-align: middle; }
.tt { margin-top: 1.5rem; display: grid; grid-template-columns: 220px 1fr; border: 1px solid var(--border-neon); border-radius: 5px; overflow: hidden; background: linear-gradient(160deg, #0d0a24, #060410); box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 26px 60px rgba(0,0,0,0.42); }
.tt-deck { position: relative; padding: 22px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 40% 35%, rgba(155,92,255,0.14), transparent 60%); border-right: 1px solid var(--border-soft); overflow: hidden; }
.tt-platter { width: 168px; height: 168px; border-radius: 50%; background: #07060f; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 8px 30px rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; }
.tt-vinyl { width: 158px; height: 158px; border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; background: repeating-radial-gradient(circle at center, #0c0b18 0 2px, #07060f 2px 4px); box-shadow: inset 0 0 22px rgba(0,0,0,0.7); }
.tt[data-state="on"] .tt-vinyl { animation: ttspin 1.8s linear infinite; }
@keyframes ttspin { to { transform: rotate(360deg); } }
.tt-cover { width: 66px; height: 66px; border-radius: 50%; background-size: cover; background-position: center; background-color: #1a1430; box-shadow: 0 0 0 4px #07060f, 0 0 0 5px rgba(155,92,255,0.4); }
.tt-spindle { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--mist); box-shadow: 0 0 6px rgba(255,255,255,0.5); }
.tt-arm { position: absolute; top: 16px; right: 22px; width: 8px; height: 96px; border-radius: 4px; background: linear-gradient(180deg, #cfcadf, #6b6790); transform-origin: top center; transform: rotate(26deg); transition: transform .6s ease; }
.tt-arm::after { content: ''; position: absolute; bottom: -6px; left: -3px; width: 14px; height: 14px; border-radius: 3px; background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }
.tt[data-state="on"] .tt-arm { transform: rotate(2deg); }
.tt-side { display: flex; flex-direction: column; min-width: 0; }
.tt-head { padding: 12px 18px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--border-neon); display: flex; align-items: center; gap: 8px; }
.tt-now { padding: 16px 18px; }
.tt-now-artist { font-family: var(--ff-rave); font-size: 20px; color: var(--snow); line-height: 1.15; }
.tt-now-track { font-size: 13px; color: var(--mist); margin-top: 6px; min-height: 16px; }
.tt-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding: 0 18px 14px; }
.tt-power, .tt-skip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 14px; border: 1px solid var(--border-neon); border-radius: 3px; background: rgba(255,255,255,0.02); color: var(--mist); cursor: pointer; }
.tt-power[aria-pressed="true"] { color: var(--deep); background: var(--cyan); box-shadow: 0 0 14px var(--cyan-glow); font-weight: 700; }
.tt-power-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mist); }
.tt-power[aria-pressed="true"] .tt-power-dot { background: var(--deep); }
.tt-seg { display: inline-flex; border: 1px solid var(--border-neon); border-radius: 3px; overflow: hidden; }
.tt-seg button { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 8px 12px; background: rgba(255,255,255,0.02); color: var(--mist); cursor: pointer; border: none; }
.tt-seg button.on { color: var(--deep); background: var(--violet); font-weight: 700; }
.tt-skip:hover, .tt-power:hover, .tt-seg button:hover { color: var(--snow); }
.tt-progress { height: 3px; background: var(--border-soft); margin: 0 18px; border-radius: 2px; overflow: hidden; }
.tt-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan), var(--magenta)); transition: width .25s linear; }
.tt-attrib { display: inline-block; margin: 12px 18px 16px; font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(240,239,255,0.4); }
.tt-attrib:hover { color: var(--cyan); }
@media (max-width: 560px) { .tt { grid-template-columns: 1fr; } .tt-deck { border-right: none; border-bottom: 1px solid var(--border-soft); } }
@media (prefers-reduced-motion: reduce) { .tt[data-state="on"] .tt-vinyl { animation-duration: 6s; } }

/* ============================================================
   THE CONSOLE (Phase 3a) - DJ controller for trip planning
   ============================================================ */
.cs-hero { padding: 116px 0 18px; }
.cs-kicker { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--mist); display: flex; align-items: center; gap: 10px; }
.cs-badge { background: linear-gradient(135deg, var(--magenta), var(--violet)); color: #fff; padding: 3px 9px; border-radius: 3px; font-size: 9px; letter-spacing: 2px; }
.cs-title { font-family: var(--ff-rave); font-size: clamp(38px, 7vw, 84px); line-height: 0.95; margin: 10px 0 12px; }
.cs-title .outline { -webkit-text-stroke: 1px var(--magenta); color: transparent; }
.cs-sub { color: var(--mist); max-width: 600px; font-weight: 300; }
.cs-wrap { max-width: 1280px; margin: 0 auto; padding: 0 max(16px, 4vw) 80px; }

/* the controller chassis */
.cs-deck { display: grid; grid-template-columns: 0.85fr 1.5fr 0.85fr; grid-template-areas: "jogL mixer jogR" "pads pads pads"; gap: 22px; padding: 26px; border: 2px solid var(--border-neon); border-radius: 20px; background: linear-gradient(180deg, #16122e 0, #0b0820 120px, #070512 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 0 60px rgba(0,0,0,0.5), 0 30px 70px rgba(0,0,0,0.5); }

/* jog wheels */
.cs-jog { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.cs-jog-l { grid-area: jogL; } .cs-jog-r { grid-area: jogR; }
.cs-jog-disc { width: clamp(140px, 16vw, 210px); height: clamp(140px, 16vw, 210px); border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 42%, #3a3950 0 38%, #232234 39% 70%, #15141f 71% 100%); box-shadow: inset 0 0 0 6px #1b1a28, inset 0 6px 18px rgba(0,0,0,0.6), 0 8px 26px rgba(0,0,0,0.55); color: var(--cyan); }
.cs-deck[data-state="on"] .cs-jog-disc { animation: ttspin 2.4s linear infinite; }
.cs-cover { width: 46%; height: 46%; border-radius: 50%; background-size: cover; background-position: center; background-color: #d9d8e6; box-shadow: 0 0 0 2px #0b0a14, inset 0 0 14px rgba(0,0,0,0.4); }
.cs-jog-glyph { width: 46%; height: 46%; border-radius: 50%; background: #0b0a14; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 2px currentColor; }
.cs-jog-glyph svg { width: 44%; height: 44%; }
.cs-jog-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); }
.cs-jog-cap { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }

/* center mixer */
.cs-mixer { grid-area: mixer; display: flex; flex-direction: column; gap: 16px; }
.cs-screen { position: relative; border-radius: 8px; padding: 16px 18px; min-height: 96px; overflow: hidden; border: 1px solid rgba(0,245,255,0.3); background: linear-gradient(160deg, #021b22, #01262e); box-shadow: inset 0 0 26px rgba(0,245,255,0.12), 0 0 0 4px #0b0a14; transform: scale(var(--cs-pulse, 1)); transition: transform 0.06s linear; }
.cs-eq { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.8; }
.cs-screen-txt { position: relative; z-index: 1; }
.cs-screen-fest { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); }
.cs-screen-artist { font-family: var(--ff-rave); font-size: clamp(22px, 3vw, 34px); color: #d6fbff; text-shadow: 0 0 14px rgba(0,245,255,0.5); line-height: 1.05; margin: 4px 0 2px; }
.cs-screen-track { font-size: 13px; color: rgba(214,251,255,0.7); }
.cs-knobs { display: flex; justify-content: center; gap: 28px; }
.cs-switches { display: flex; gap: 16px; }
.cs-switch { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cs-clabel { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.cs-seg { display: flex; border: 1px solid var(--border-neon); border-radius: 3px; overflow: hidden; }
.cs-seg button { flex: 1; font-family: var(--ff-ui); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; padding: 7px 4px; background: rgba(255,255,255,0.02); color: var(--mist); border: none; cursor: pointer; }
.cs-seg button.on { color: var(--deep); background: var(--cyan); font-weight: 700; }
.cs-cdesc { font-size: 10px; color: rgba(240,239,255,0.4); text-align: center; }
.cs-switch .cs-cdesc { text-align: left; }
.cs-deckbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cs-power, .cs-skip { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 16px; border: 1px solid var(--border-neon); border-radius: 3px; background: rgba(255,255,255,0.03); color: var(--mist); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.cs-power[aria-pressed="true"] { background: var(--cyan); color: var(--deep); box-shadow: 0 0 16px var(--cyan-glow); font-weight: 700; }
.cs-power-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mist); }
.cs-power[aria-pressed="true"] .cs-power-dot { background: var(--deep); }
.cs-skip:hover, .cs-power:hover { color: var(--snow); }
.cs-xfade { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 4px; }
.cs-xcap { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.cs-fader { width: 100%; accent-color: var(--cyan); }
.cs-fader:disabled { opacity: 0.4; }
.cs-xnow { font-family: var(--ff-ui); font-size: 11px; color: var(--cyan); }

/* performance pads */
.cs-pads { grid-area: pads; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.cs-pad { position: relative; text-align: left; padding: 12px; border: 1px solid var(--border-neon); border-radius: 6px; background: rgba(255,255,255,0.02); color: var(--mist); cursor: pointer; min-height: 74px; display: flex; flex-direction: column; justify-content: flex-end; gap: 3px; transition: box-shadow .15s, border-color .15s; }
.cs-pad:hover { border-color: var(--cyan); }
.cs-pad.on { border-color: var(--cyan); background: rgba(0,245,255,0.1); box-shadow: inset 0 0 18px rgba(0,245,255,0.18), 0 0 14px var(--cyan-glow); }
.cs-pad-act { background: rgba(255,45,120,0.06); }
.cs-pad-act:hover { border-color: var(--magenta); }
.cs-pad-label { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--snow); }
.cs-pad.on .cs-pad-label { color: var(--cyan); }
.cs-pad-desc { font-size: 10px; color: rgba(240,239,255,0.45); line-height: 1.3; }
.cs-pad-prem { position: absolute; top: 8px; right: 8px; font-family: var(--ff-ui); font-size: 7.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--violet); border: 1px solid rgba(155,92,255,0.5); border-radius: 2px; padding: 1px 4px; }
.cs-attrib { display: inline-block; margin: 14px 2px 0; font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(240,239,255,0.4); }
.cs-attrib:hover { color: var(--cyan); }

/* below the deck */
.cs-below { margin-top: 26px; }
.cs-toolbar { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; margin-bottom: 18px; }
.cs-field { display: flex; flex-direction: column; gap: 7px; }
.cs-label { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.cs-addfield { flex: 1; min-width: 240px; }
.cs-add-row { display: flex; gap: 8px; }
.cs-add-row .dselect { flex: 1; }
.cs-addbtn { padding: 0 18px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; border: 1px solid var(--cyan); color: var(--cyan); background: transparent; border-radius: 3px; cursor: pointer; }
.cs-addbtn:hover { background: var(--cyan); color: var(--deep); }
.cs-sync { align-self: flex-end; font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 12px; border: 1px solid var(--border-neon); color: var(--mist); background: transparent; border-radius: 3px; cursor: pointer; }
.cs-sync:hover { color: var(--cyan); border-color: var(--cyan); }
.cs-cols { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; align-items: start; }
.cs-panel { border: 1px solid var(--border-neon); border-radius: 6px; overflow: hidden; background: linear-gradient(160deg, #0d0a24, #060410); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 16px 40px rgba(0,0,0,0.35); }
.cs-deck-head { padding: 12px 16px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--border-neon); display: flex; align-items: center; gap: 8px; }
.cs-hint, .cs-empty { padding: 16px; color: var(--mist); font-size: 13px; font-weight: 300; line-height: 1.6; }
.cs-tracks { padding: 12px 16px; display: flex; flex-direction: column; gap: 6px; }
.cs-track { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border: 1px solid var(--border-soft); border-radius: 4px; background: rgba(8,6,22,0.6); cursor: pointer; }
.cs-track.is-cue { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan-dim), inset 0 0 16px rgba(0,245,255,0.06); }
.cs-tnum { font-family: var(--ff-rave); font-size: 18px; color: var(--violet); width: 28px; flex-shrink: 0; }
.cs-tbody { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.cs-tname { font-family: var(--ff-ui); letter-spacing: 1px; text-transform: uppercase; font-size: 13px; color: var(--snow); }
.cs-tsub { font-size: 11.5px; color: var(--mist); }
.cs-tctrl { display: flex; gap: 4px; flex-shrink: 0; }
.cs-ic { width: 28px; height: 28px; border: 1px solid var(--border-neon); background: rgba(255,255,255,0.02); color: var(--mist); border-radius: 3px; cursor: pointer; font-size: 14px; line-height: 1; }
.cs-ic:hover { color: var(--snow); }
.cs-ic-x:hover { color: var(--magenta); border-color: var(--magenta); }
.cs-leg { display: flex; align-items: center; gap: 10px; padding: 7px 14px; margin: 0 16px; font-size: 11.5px; color: var(--mist); border-left: 2px dashed var(--border-neon); }
.cs-leg-ico svg { width: 13px; height: 13px; opacity: 0.7; }
.cs-leg-txt { flex: 1; }
.cs-leg-cost { font-family: var(--ff-ui); color: var(--cyan); }
.cs-leg.cs-clash { color: var(--magenta); border-left-color: var(--magenta); }
.cs-leg.cs-clash .cs-leg-cost { color: var(--magenta); }
.cs-master { border-top: 1px solid var(--border-neon); padding: 14px 16px; }
.cs-master-line { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--mist); padding: 4px 0; }
.cs-master-total { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--border-soft); }
.cs-master-total .dm-val { font-family: var(--ff-rave); font-size: 28px; color: var(--cyan); text-shadow: 0 0 18px var(--cyan-glow); }
@media (max-width: 880px) {
  .cs-deck { grid-template-columns: 1fr; grid-template-areas: "mixer" "jogL" "jogR" "pads"; }
  .cs-pads { grid-template-columns: repeat(3, 1fr); }
  .cs-cols { grid-template-columns: 1fr; }
}
@media (max-width: 520px) { .cs-pads { grid-template-columns: repeat(2, 1fr); } }
@media (prefers-reduced-motion: reduce) { .cs-deck[data-state="on"] .cs-jog-disc { animation-duration: 8s; } }

/* Console v2: core inputs, cost EQ, route stops with line items */
.cs-corerow { display: flex; gap: 18px; align-items: stretch; flex-wrap: wrap; }
.cs-core { display: flex; gap: 22px; align-items: flex-start; }
.cs-numunit { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cs-num { width: 72px; text-align: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border-neon); color: var(--snow); border-radius: 4px; padding: 8px; font-family: var(--ff-rave); font-size: 18px; }
.cs-costeq { flex: 1; min-width: 220px; display: flex; align-items: flex-end; gap: 8px; padding: 8px 12px; border: 1px solid var(--border-soft); border-radius: 6px; background: rgba(8,6,22,0.5); }
.cs-ce-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; height: 78px; justify-content: flex-end; }
.cs-ce-bar { width: 14px; height: 60px; background: rgba(255,255,255,0.05); border-radius: 3px; display: flex; align-items: flex-end; overflow: hidden; }
.cs-ce-bar i { display: block; width: 100%; height: 0; background: linear-gradient(180deg, var(--cyan), var(--magenta)); transition: height .25s ease; }
.cs-ce-cap { font-family: var(--ff-ui); font-size: 7.5px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--mist); }
.cs-ce-total { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; padding-left: 10px; border-left: 1px solid var(--border-soft); }
.cs-ce-tlabel { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.cs-ce-tval { font-family: var(--ff-rave); font-size: 24px; color: var(--cyan); text-shadow: 0 0 14px var(--cyan-glow); }
.cs-routepanel { margin-top: 4px; }
.cs-stop { border: 1px solid var(--border-soft); border-radius: 6px; margin: 12px 16px; background: rgba(8,6,22,0.5); overflow: hidden; }
.cs-stop.is-cue { border-color: var(--cyan); box-shadow: inset 0 0 16px rgba(0,245,255,0.06); }
.cs-stop-head { display: flex; align-items: center; gap: 12px; padding: 12px 14px; cursor: pointer; }
.cs-citytag { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--violet); border: 1px solid rgba(155,92,255,0.5); border-radius: 2px; padding: 1px 5px; }
.cs-climate { padding: 0 14px 10px; font-size: 12px; color: var(--mist); font-weight: 300; line-height: 1.5; }
.cs-climate-tag { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--amber); margin-right: 6px; }
.cs-stop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; padding: 0 14px 12px; }
.cs-li { display: flex; flex-direction: column; gap: 5px; font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--mist); }
.cs-li-num, .cs-li-sel { background: rgba(255,255,255,0.04); border: 1px solid var(--border-neon); color: var(--snow); border-radius: 4px; padding: 8px; font-size: 13px; font-family: var(--ff-ui); }
.cs-li-check { flex-direction: row; align-items: center; gap: 8px; }
.cs-li-check input { width: 16px; height: 16px; accent-color: var(--cyan); }
.cs-li-check span { text-transform: none; letter-spacing: 0; font-size: 11px; color: var(--snow); }
.cs-stop-costs { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 14px; }
.cs-chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border: 1px solid var(--border-soft); border-radius: 3px; background: rgba(255,255,255,0.02); }
.cs-chip-l { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--mist); }
.cs-chip-v { font-family: var(--ff-ui); font-size: 12px; color: var(--cyan); }
@media (max-width: 880px) { .cs-corerow { flex-direction: column; } }

/* Console v3: decorative DJ-mixer chassis + stacked layout */
.cs-deck { display: block; padding: 20px 22px 24px; }
.cs-brand { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--mist); text-align: center; margin-bottom: 14px; }
.cs-brand span { color: var(--cyan); }
.cs-mixrow { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 20px; align-items: start; }
.cs-deckcol { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cs-center-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.cs-jogwrap { display: flex; align-items: center; justify-content: center; }
.cs-jog-ring { position: absolute; inset: 8%; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.12); }
.cs-knrow { display: flex; gap: 14px; }
.cs-cknobs { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cs-deco-knob { width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle at 50% 35%, #2a2940, #14131f); box-shadow: inset 0 2px 4px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.06); position: relative; display: inline-block; }
.cs-deco-knob i { position: absolute; top: 4px; left: 50%; width: 2px; height: 9px; background: var(--cyan); transform: translateX(-50%); border-radius: 1px; opacity: 0.6; }
.cs-chanfaders { display: flex; gap: 22px; justify-content: center; padding: 4px 0; }
.cs-deco-fader { width: 8px; height: 54px; border-radius: 4px; background: rgba(255,255,255,0.06); position: relative; }
.cs-deco-fader i { position: absolute; left: -4px; top: 30%; width: 16px; height: 10px; border-radius: 2px; background: linear-gradient(#cfcadf, #6b6790); box-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.cs-padbank { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
.cs-padbank .cs-pad { min-height: 64px; padding: 10px; }
.cs-screen-now { font-size: 14px; color: rgba(214,251,255,0.85); margin-top: 6px; line-height: 1.3; }
.cs-inputs { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; padding: 14px 16px; }
.cs-num2 { background: rgba(255,255,255,0.04); border: 1px solid var(--border-neon); color: var(--snow); border-radius: 4px; padding: 9px 10px; font-size: 14px; font-family: var(--ff-ui); }
.cs-addbar { display: flex; flex-wrap: wrap; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border-soft); }
.cs-addbar .cs-add-row { flex: 1; min-width: 220px; }
.cs-events { display: flex; align-items: center; gap: 10px; padding: 0 14px 12px; }
.cs-events-tag { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--violet); }
.cs-events-btn { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 0.5px; color: var(--mist); background: rgba(255,255,255,0.02); border: 1px dashed var(--border-neon); border-radius: 3px; padding: 5px 10px; opacity: 0.7; cursor: not-allowed; }
@media (max-width: 880px) { .cs-mixrow { grid-template-columns: 1fr; } }

/* Console v4: festivals above mixer, bigger LED screen, plan total */
.cs-festhdr { font-family: var(--ff-rave); font-size: clamp(22px, 3.4vw, 40px); color: var(--snow); text-align: center; margin-bottom: 14px; letter-spacing: 1px; text-shadow: 0 0 18px rgba(0,245,255,0.3); }
.cs-screen { min-height: 132px; }
.cs-screen-txt { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.cs-screen-now { font-size: clamp(16px, 2.4vw, 26px); color: #d6fbff; text-shadow: 0 0 14px rgba(0,245,255,0.5); line-height: 1.25; }
.cs-plantotal { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-top: 1px solid var(--border-neon); }
.cs-plantotal .dm-val { font-family: var(--ff-rave); font-size: 26px; color: var(--cyan); text-shadow: 0 0 16px var(--cyan-glow); }

/* Console v5: travellers/nights/stops on the mixer, premium drop-down, deco pads */
.cs-coremix { display: flex; justify-content: center; gap: 16px; }
.cs-cm { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cs-cm-in, .cs-cm-val { width: 64px; text-align: center; background: #02161b; border: 1px solid rgba(0,245,255,0.35); color: #d6fbff; border-radius: 4px; padding: 7px; font-family: var(--ff-rave); font-size: 18px; box-shadow: inset 0 0 10px rgba(0,245,255,0.15); }
.cs-cm-cap { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.cs-deco-pad { width: 100%; aspect-ratio: 1 / 1; min-height: 26px; border-radius: 4px; background: linear-gradient(160deg, #20203a, #111120); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.cs-padbank { grid-template-columns: repeat(2, 1fr); }
.cs-premium { position: relative; }
.cs-premium-btn { width: 100%; font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px; border: 1px solid var(--violet); border-radius: 4px; background: rgba(155,92,255,0.12); color: var(--violet); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
.cs-premium-btn:hover { background: rgba(155,92,255,0.2); }
.cs-premium-menu { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40; display: flex; flex-direction: column; gap: 6px; border: 1px solid var(--cyan); border-radius: 6px; padding: 8px; background: rgba(8,6,22,0.98); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.cs-premium-menu[hidden] { display: none; }
.cs-prow { display: flex; align-items: center; justify-content: space-between; gap: 10px; text-align: left; padding: 9px 11px; border: 1px solid var(--border-soft); border-radius: 4px; background: rgba(255,255,255,0.02); color: var(--mist); cursor: pointer; }
.cs-prow.on { border-color: var(--cyan); background: rgba(0,245,255,0.08); }
.cs-prow-l { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cs-prow-name { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--snow); }
.cs-prow-d { font-size: 10px; color: rgba(240,239,255,0.5); }
.cs-prow-sw { width: 34px; height: 18px; border-radius: 10px; background: rgba(255,255,255,0.12); position: relative; flex-shrink: 0; transition: background .15s; }
.cs-prow-sw::after { content: ''; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--mist); transition: left .15s; }
.cs-prow.on .cs-prow-sw { background: var(--cyan); }
.cs-prow.on .cs-prow-sw::after { left: 18px; background: var(--deep); }
.cs-addbar { align-items: flex-end; }
.cs-addbar .cs-field { flex: 1; min-width: 200px; }

/* Console v6: festival anchor + swap, clickable performer banks */
.cs-festhdr { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cs-festname { font-family: var(--ff-rave); font-size: clamp(22px, 3.4vw, 40px); color: var(--snow); letter-spacing: 1px; text-shadow: 0 0 18px rgba(0,245,255,0.3); }
.cs-festswap { background: rgba(155,92,255,0.14); border: 1px solid var(--violet); color: var(--violet); border-radius: 4px; padding: 6px 10px; font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.cs-perform { width: 100%; min-height: 34px; border: 1px solid var(--border-neon); border-radius: 4px; background: linear-gradient(160deg, #20203a, #111120); color: var(--snow); font-family: var(--ff-ui); font-size: 9px; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; padding: 4px; line-height: 1.15; }
.cs-perform:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 10px var(--cyan-glow); }
.cs-eqbar { width: 100%; height: 48px; display: block; border-radius: 6px; background: rgba(2,22,28,0.6); border: 1px solid rgba(0,245,255,0.25); box-shadow: inset 0 0 18px rgba(0,245,255,0.1); }

/* Console v7: psycho fullscreen visuals + b-boy (shown while music plays) */
.cs-viz { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity .6s ease; }
.cs-viz.live { opacity: 1; }
#cs-vizcanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cs-bboy { position: absolute; left: 50%; bottom: 5%; transform: translateX(-50%) scale(var(--bboy-bass, 1)); transform-origin: bottom center; opacity: 0.4; transition: transform .08s linear; }
.cs-bboy .bboy { width: clamp(160px, 26vw, 360px); height: clamp(160px, 26vw, 360px); }
body.psycho .cs-bboy { opacity: 0.85; }
.cs-hero, .cs-wrap { position: relative; z-index: 1; }

/* detail footer CTA */
.detail-cta { border-top: 1px solid var(--border-neon); }

/* ── Extend your stay (FESTGO+ premium journey) ── */
.journey { margin-top: 1.5rem; border: 1px solid var(--border-neon); border-radius: 5px; overflow: hidden; background: linear-gradient(160deg, rgba(155,92,255,0.07), rgba(0,245,255,0.03) 60%), var(--deep); }
.journey-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; padding: 1.5rem 1.5rem 1.25rem; border-bottom: 1px solid var(--border-soft); }
.premium-badge { display: inline-block; font-family: var(--ff-ui); font-size: 9px; font-weight: 700; letter-spacing: 2px; color: #060410; background: linear-gradient(90deg, var(--cyan), var(--violet)); padding: 3px 9px; border-radius: 3px; margin-bottom: 11px; }
.journey-title { font-family: var(--ff-rave); font-size: 24px; letter-spacing: 1px; color: var(--snow); margin-bottom: 7px; }
.journey-tag { font-size: 13.5px; color: var(--mist); font-weight: 300; line-height: 1.6; max-width: 580px; }
.journey-gate { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); margin-top: 11px; }
.journey-meta { display: flex; flex-direction: column; gap: 7px; text-align: right; flex-shrink: 0; }
.journey-meta span { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.journey-meta b { font-family: var(--ff-rave); font-size: 20px; color: var(--snow); margin-right: 5px; }
.journey-meta .jmode { color: var(--violet); }

.journey-route { list-style: none; padding: 1.4rem 1.5rem 0.5rem; }
.jleg { display: grid; grid-template-columns: 96px 1fr; }
.jleg-move { display: flex; align-items: center; justify-content: flex-end; gap: 6px; padding: 0 14px 0 0; font-family: var(--ff-ui); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); text-align: right; }
.jleg-move .jicon { color: var(--cyan); flex-shrink: 0; }
.jleg-card { position: relative; border-left: 2px solid var(--border-neon); padding: 1px 0 22px 22px; }
.jleg:last-child .jleg-card { border-left-color: transparent; }
.jleg-card::before { content: ''; position: absolute; left: -6px; top: 3px; width: 10px; height: 10px; border-radius: 50%; background: var(--deep); border: 2px solid var(--cyan); }
.jleg-fest .jleg-card::before { background: var(--magenta); border-color: var(--magenta); box-shadow: 0 0 12px var(--magenta); }
.jleg-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.jleg-city { font-family: var(--ff-ui); font-size: 15px; font-weight: 600; color: var(--snow); }
.jleg-badge { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--magenta); border: 1px solid var(--magenta); padding: 2px 7px; border-radius: 2px; }
.jleg-nights { font-family: var(--ff-ui); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); }
.jleg-nights.day { color: var(--mist); }
.jleg-note { font-size: 12.5px; color: var(--mist); font-weight: 300; line-height: 1.6; margin-top: 5px; max-width: 540px; }

.journey-lock { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; padding: 1.25rem 1.5rem; border-top: 1px solid var(--border-soft); background: rgba(155,92,255,0.08); }
.journey-lock .lock-ico { color: var(--violet); flex-shrink: 0; display: flex; }
.journey-lock .lock-copy { font-size: 12.5px; color: var(--mist); font-weight: 300; line-height: 1.6; flex: 1 1 240px; }
.journey-lock .lock-copy b { font-weight: 600; color: var(--snow); }
.journey-join { display: flex; gap: 8px; flex: 0 0 auto; }
.journey-join input { background: var(--deep); border: 1px solid var(--border-neon); color: var(--snow); font-family: var(--ff-ui); font-size: 12px; padding: 10px 12px; border-radius: 3px; outline: none; min-width: 170px; }
.journey-join input:focus { border-color: var(--cyan); }
.journey-join input:disabled { opacity: 0.5; }
.journey-join button { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; color: #060410; background: linear-gradient(90deg, var(--cyan), var(--violet)); border: none; padding: 10px 16px; border-radius: 3px; cursor: pointer; white-space: nowrap; transition: filter 0.2s; }
.journey-join button:hover { filter: brightness(1.12); }
.journey-join button:disabled { cursor: default; filter: none; opacity: 0.75; }
.teaser-lock { background: rgba(155,92,255,0.06); }

/* ============================================================
   PLANNER PAGE
   ============================================================ */
.planner-page { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 3rem; display: grid; grid-template-columns: 380px 1fr; gap: 3rem; align-items: start; }
.planner-panel { border: 1px solid var(--border-neon); background: rgba(9,6,24,0.7); position: sticky; top: 78px; }
.pp-head { padding: 16px 20px; border-bottom: 1px solid var(--border-neon); background: rgba(0,245,255,0.04); }
.pp-head h2 { font-family: var(--ff-rave); font-size: 20px; letter-spacing: 2px; color: var(--cyan); }
.pp-head p { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); margin-top: 3px; }
.pp-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.planner-results { min-height: 300px; }
.pr-empty { text-align: center; padding: 4rem 1rem; border: 1px dashed var(--border-neon); color: var(--mist); }
.pr-empty .glyph { font-size: 44px; opacity: 0.5; margin-bottom: 1rem; }
.match-card { border: 1px solid var(--border-neon); margin-bottom: 1px; background: var(--deep); display: grid; grid-template-columns: 1fr 220px; gap: 0; overflow: hidden; transition: background 0.2s; }
.match-card:hover { background: var(--surface2); }
.mc-body { padding: 1.5rem; }
.mc-name { font-family: var(--ff-rave); font-size: 24px; letter-spacing: 1px; margin-bottom: 4px; text-decoration: none; color: var(--snow); display: inline-block; }
.mc-name:hover { color: var(--cyan); }
.mc-meta { font-family: var(--ff-ui); font-size: 11px; color: var(--mist); margin-bottom: 10px; }
.mc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mc-cost { background: rgba(0,245,255,0.05); border-left: 1px solid var(--border-neon); padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.mc-cost .mcc-label { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.mc-cost .mcc-val { font-family: var(--ff-rave); font-size: 26px; color: var(--cyan); line-height: 1.1; }
.mc-cost .mcc-break { font-size: 10px; color: rgba(240,239,255,0.4); margin-top: 6px; line-height: 1.5; }
.match-fit { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; margin-bottom: 8px; }
.match-fit.perfect { background: rgba(0,245,255,0.12); color: var(--cyan); border: 1px solid rgba(0,245,255,0.3); }
.match-fit.over { background: var(--magenta-dim); color: var(--magenta); border: 1px solid rgba(255,45,120,0.3); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 3rem; }
.article h2 { font-family: var(--ff-rave); font-size: 26px; letter-spacing: 1px; margin: 2.5rem 0 1rem; }
.article h3 { font-family: var(--ff-ui); font-size: 18px; font-weight: 600; margin: 1.75rem 0 0.75rem; color: var(--cyan); }
.article p { font-size: 16px; color: rgba(240,239,255,0.78); line-height: 1.8; margin-bottom: 1.25rem; font-weight: 300; }
.article ul { margin: 0 0 1.5rem 1.25rem; color: rgba(240,239,255,0.78); font-weight: 300; }
.article li { margin-bottom: 8px; line-height: 1.7; }
.article a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.article blockquote { border-left: 3px solid var(--violet); padding: 0.5rem 1.25rem; margin: 1.5rem 0; color: var(--snow); font-style: italic; background: var(--violet-dim); }
.article-meta { font-family: var(--ff-ui); font-size: 12px; color: var(--mist); display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-soft); }

/* ============================================================
   STATIC GUIDE PAGES (photo hero, cost table, FAQ, credit)
   Used by /guides/<slug>/ pages from tools/build-guides.mjs
   ============================================================ */
.guide-hero-photo { position: relative; background-color: var(--deep); background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 56vh; display: flex; align-items: flex-end; padding: 2rem 0 2.75rem; border-bottom: 1px solid var(--border-neon); overflow: hidden; }
.guide-hero-photo .wrap { width: 100%; position: relative; z-index: 2; }
.guide-hero-title { font-family: var(--ff-rave); font-size: clamp(30px, 6vw, 60px); line-height: 1.04; letter-spacing: 1px; color: var(--snow); margin: 0.75rem 0 1rem; max-width: 20ch; text-shadow: 0 2px 30px rgba(0,0,0,0.75); }
.guide-hero-meta { margin-bottom: 0; padding-bottom: 0; border-bottom: none; color: rgba(240,239,255,0.72); }
.img-credit { position: absolute; right: 10px; bottom: 8px; z-index: 3; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 0.3px; color: rgba(240,239,255,0.55); background: rgba(3,2,10,0.5); padding: 3px 8px; border-radius: 2px; max-width: 62%; text-align: right; line-height: 1.4; }
.img-credit a { color: rgba(240,239,255,0.78); text-decoration: underline; text-underline-offset: 2px; }

.guide-article { padding-top: 2.5rem; }
.guide-article.has-hero { padding-top: 0; }
.guide-wrap { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 1rem; padding: 0 1rem; }
.guide-main { padding: 2.5rem 0; }
p.guide-lede { font-size: 20px; line-height: 1.7; color: var(--snow); font-weight: 300; margin: 0 0 1.75rem; }
.guide-body h2 { font-family: var(--ff-ui); font-size: 22px; font-weight: 600; color: var(--snow); margin: 2rem 0 0.75rem; }
.guide-body p { color: rgba(240,239,255,0.82); line-height: 1.8; margin-bottom: 1.1rem; font-size: 16px; }
.guide-body ul, .guide-body ol { color: rgba(240,239,255,0.82); line-height: 1.8; margin: 0.5rem 0 1.1rem 1.4rem; font-size: 16px; }
.guide-body li { margin-bottom: 0.4rem; }
.guide-body strong { color: var(--snow); font-weight: 600; }
.guide-body em { color: var(--mist); font-style: italic; }
.guide-section { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); }
.guide-section h2 { font-family: var(--ff-ui); font-size: 18px; font-weight: 600; color: var(--snow); margin-bottom: 1rem; letter-spacing: 0.3px; }
@media (max-width: 860px) { .guide-wrap { display: block; padding: 0; } .guide-main { padding: 2rem 1.25rem; } }
.article p.article-lede { font-size: 20px; line-height: 1.7; color: var(--snow); font-weight: 300; margin: 0 0 1.75rem; }
.guide-rule { border: none; height: 1px; background: var(--border-neon); margin: 2.75rem 0 1.75rem; }
.guide-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.cost-table-wrap { overflow-x: auto; margin: 1.25rem 0 1rem; border: 1px solid var(--border-neon); border-radius: 4px; -webkit-overflow-scrolling: touch; }
.cost-table { width: 100%; border-collapse: collapse; font-family: var(--ff-ui); font-size: 14px; min-width: 460px; }
.cost-table thead th { text-align: left; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); background: rgba(0,245,255,0.05); padding: 12px 14px; border-bottom: 1px solid var(--border-neon); font-weight: 600; white-space: nowrap; }
.cost-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-soft); color: rgba(240,239,255,0.82); white-space: nowrap; }
.cost-table tbody tr:last-child td { border-bottom: none; }
.cost-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.cost-table td:first-child { color: var(--snow); font-weight: 500; }
.article p.cost-note { font-size: 12.5px; color: var(--mist); font-style: italic; line-height: 1.6; margin-top: 0.6rem; }

.faq { margin: 1.25rem 0 0.5rem; border-top: 1px solid var(--border-soft); }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item summary { cursor: pointer; list-style: none; padding: 16px 40px 16px 0; position: relative; font-family: var(--ff-ui); font-size: 16px; font-weight: 500; color: var(--snow); transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 24px; line-height: 1; color: var(--cyan); transition: transform 0.25s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--cyan); }
.faq-a { padding: 0 0 18px; color: rgba(240,239,255,0.74); font-weight: 300; line-height: 1.75; font-size: 15.5px; }
.faq-a strong { color: var(--snow); font-weight: 600; }
.faq-a a { color: var(--cyan); }

/* ── article + sticky sidebar layout ── */
.guide-layout { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 1rem; }
.guide-layout .guide-article { max-width: none; margin: 0; }
.guide-aside { padding: 2.5rem 1.5rem 3rem 0; }
.guide-aside-sticky { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 1rem; }
.aside-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-neon); border-radius: 6px; padding: 1.25rem 1.25rem 1.4rem; }
.aside-card-head { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.9rem; }
.aside-plan-sub { font-size: 13px; color: rgba(240,239,255,0.62); font-weight: 300; line-height: 1.6; margin: 0 0 1rem; }
.aside-plan-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--cyan); color: #03020A; font-family: var(--ff-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.4px; padding: 12px 14px; border: 1px solid var(--cyan); border-radius: 3px; cursor: pointer; transition: box-shadow 0.2s, transform 0.15s, background 0.2s, color 0.2s; }
.aside-plan-btn:hover { box-shadow: 0 0 22px var(--cyan-glow); transform: translateY(-1px); }
.aside-plan-btn .gp-ico { font-size: 17px; line-height: 1; font-weight: 700; }
.aside-plan-btn.saved { background: transparent; color: var(--cyan); }
.aside-plan-link { display: inline-block; margin-top: 0.85rem; font-family: var(--ff-ui); font-size: 12px; letter-spacing: 0.5px; color: var(--cyan); text-decoration: none; }
.aside-plan-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.aside-guide-list { list-style: none; margin: 0; padding: 0; }
.aside-guide-list li { border-bottom: 1px solid var(--border-soft); }
.aside-guide-list li:last-child { border-bottom: none; }
.aside-guide-list a { display: block; padding: 11px 0; text-decoration: none; }
.aside-guide-list .ag-cat { display: block; font-family: var(--ff-ui); font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); margin-bottom: 3px; }
.aside-guide-list .ag-title { display: block; font-family: var(--ff-ui); font-size: 14px; font-weight: 500; color: var(--snow); line-height: 1.35; transition: color 0.2s; }
.aside-guide-list a:hover .ag-title { color: var(--cyan); }
.aside-all-link { display: inline-block; margin-top: 0.9rem; font-family: var(--ff-ui); font-size: 12px; letter-spacing: 0.5px; color: var(--cyan); text-decoration: none; }
.aside-all-link:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 920px) {
  .guide-layout { display: block; max-width: 820px; }
  .guide-aside { padding: 0 1.25rem 2.5rem; }
  .guide-aside-sticky { position: static; }
}

@media (max-width: 640px) {
  .guide-hero-photo { min-height: 48vh; padding: 1.5rem 0 2rem; }
  .guide-article { padding: 2rem 1.25rem; }
  .img-credit { max-width: 80%; }
}

/* guides hub (static index) */
.guide-index-section { margin-top: 2.75rem; }
.guide-index-section:first-child { margin-top: 0; }
.guide-index-head { font-family: var(--ff-rave); font-size: clamp(20px, 3vw, 30px); letter-spacing: 1px; margin: 0 0 1.25rem; }
.guide-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); }
.guide-index-card { position: relative; display: flex; flex-direction: column; gap: 0.6rem; background: var(--deep); padding: 1.6rem 1.5rem; text-decoration: none; color: inherit; transition: background 0.2s; }
.guide-index-card:hover { background: var(--surface2); }
.guide-index-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--border-neon); opacity: 0; transition: opacity 0.25s; }
.guide-index-card:hover::before { opacity: 1; }
.guide-index-card .gi-cat { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--mist); }
.guide-index-card .gi-title { font-family: var(--ff-ui); font-size: 18px; font-weight: 600; line-height: 1.25; color: var(--snow); transition: color 0.2s; }
.guide-index-card:hover .gi-title { color: var(--cyan); }
.guide-index-card .gi-excerpt { flex: 1; font-size: 13.5px; line-height: 1.55; color: rgba(240, 239, 255, 0.6); font-weight: 300; }
.guide-index-card .gi-meta { font-size: 11px; letter-spacing: 0.3px; color: rgba(240, 239, 255, 0.4); }
@media (max-width: 900px) { .guide-index-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .guide-index-grid { grid-template-columns: 1fr; } }

/* guides hub: section subhead + cinematic festival photo cards */
.guide-hub-section { margin-top: 2.75rem; }
.guide-hub-section:first-child { margin-top: 0; }
.ghs-sub { font-size: 14px; color: var(--mist); line-height: 1.6; max-width: 72ch; margin: -0.4rem 0 1.5rem; font-weight: 300; }
.guide-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.guide-photo-card { position: relative; display: block; overflow: hidden; aspect-ratio: 3 / 2; border: 1px solid var(--border-neon); background: var(--deep); text-decoration: none; color: inherit; }
.gpc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 0; transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
.guide-photo-card:hover .gpc-img { transform: scale(1.07); }
.gpc-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(3,2,10,0) 26%, rgba(3,2,10,0.55) 60%, rgba(3,2,10,0.93) 100%); }
.gpc-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; flex-direction: column; gap: 5px; padding: 1.05rem 1.15rem 1.15rem; }
.gpc-cat { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); }
.gpc-title { font-family: var(--ff-rave); font-size: 21px; letter-spacing: 0.5px; line-height: 1.1; color: var(--snow); text-shadow: 0 2px 20px rgba(0,0,0,0.55); transition: color 0.2s; }
.guide-photo-card:hover .gpc-title { color: var(--cyan); }
.gpc-meta { font-size: 11px; color: rgba(240,239,255,0.6); }
.guide-photo-card::after { content: ''; position: absolute; inset: 0; z-index: 4; border: 1px solid transparent; pointer-events: none; transition: border-color 0.25s, box-shadow 0.25s; }
.guide-photo-card:hover::after { border-color: var(--cyan); box-shadow: inset 0 0 26px rgba(0,245,255,0.18); }
@media (max-width: 900px) { .guide-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .guide-photo-grid { grid-template-columns: 1fr; } }

/* about */
.about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); margin-top: 1px; }
.about-cell { background: var(--deep); padding: 2rem 1.5rem; }
.about-cell .ac-glyph { font-size: 30px; margin-bottom: 1rem; }
.about-cell h3 { font-family: var(--ff-rave); font-size: 18px; letter-spacing: 1px; margin-bottom: 10px; }
.about-cell p { font-size: 13.5px; color: var(--mist); font-weight: 300; line-height: 1.7; }

/* ── STICKY TRIP PLANNER (floating) ── */
#sticky-planner { position: fixed; bottom: 28px; right: 28px; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; transition: transform 0.4s ease, opacity 0.4s ease; }
#sticky-planner.hidden-scroll { transform: translateY(140px); opacity: 0; pointer-events: none; }
.stp-trigger { display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--magenta), var(--violet)); color: var(--snow); font-family: var(--ff-ui); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 14px 22px; border: none; cursor: pointer; border-radius: 2px; box-shadow: 0 0 30px rgba(255,45,120,0.45), 0 8px 32px rgba(0,0,0,0.5); transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.stp-trigger::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); opacity: 0; transition: opacity 0.2s; }
.stp-trigger:hover { transform: translateY(-3px); box-shadow: 0 0 45px rgba(255,45,120,0.6), 0 12px 40px rgba(0,0,0,0.5); }
.stp-trigger:hover::before { opacity: 1; }
.stp-trigger:active { transform: scale(0.97); }
.stp-icon { font-size: 16px; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); display: inline-block; }
.stp-trigger.open .stp-icon { transform: rotate(135deg); }
.stp-pulse-ring { position: absolute; inset: -4px; border-radius: 4px; border: 2px solid rgba(255,45,120,0.5); animation: stp-ring 2.5s ease-out infinite; pointer-events: none; }
@keyframes stp-ring { 0%{transform:scale(1);opacity:0.7} 70%{transform:scale(1.12);opacity:0} 100%{transform:scale(1.12);opacity:0} }
.stp-panel { width: 340px; background: rgba(9,6,24,0.97); border: 1px solid var(--border-neon); box-shadow: 0 0 60px rgba(0,245,255,0.12), 0 24px 60px rgba(0,0,0,0.7); backdrop-filter: blur(24px); transform-origin: bottom right; transform: scale(0.85) translateY(20px); opacity: 0; pointer-events: none; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease; overflow: hidden; }
.stp-panel.visible { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.stp-panel-head { padding: 16px 18px 14px; border-bottom: 1px solid var(--border-neon); display: flex; align-items: center; justify-content: space-between; background: rgba(0,245,255,0.04); }
.stp-panel-title { font-family: var(--ff-rave); font-size: 18px; letter-spacing: 2px; color: var(--cyan); text-shadow: 0 0 12px var(--cyan-glow); }
.stp-panel-sub { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); margin-top: 2px; }
.stp-close { background: none; border: 1px solid var(--border-soft); color: var(--mist); width: 28px; height: 28px; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; border-radius: 2px; transition: border-color 0.2s, color 0.2s; flex-shrink: 0; }
.stp-close:hover { border-color: var(--magenta); color: var(--magenta); }
.stp-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.stp-field { display: flex; flex-direction: column; gap: 4px; }
.stp-label { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,239,255,0.45); }
.stp-field select, .stp-field input { background: rgba(16,13,34,0.8); border: 1px solid var(--border-soft); padding: 9px 12px; font-family: var(--ff-body); font-size: 13px; color: var(--snow); outline: none; appearance: none; border-radius: 0; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.stp-field select:focus, .stp-field input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,245,255,0.07); }
.stp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stp-cta { width: 100%; background: linear-gradient(135deg, var(--magenta), var(--violet)); border: none; color: var(--snow); font-family: var(--ff-ui); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 13px; cursor: pointer; margin-top: 4px; transition: opacity 0.2s, transform 0.15s; border-radius: 2px; }
.stp-cta:hover { opacity: 0.92; transform: translateY(-1px); }
.stp-footer-note { text-align: center; font-size: 9px; letter-spacing: 0.5px; color: rgba(240,239,255,0.2); font-family: var(--ff-ui); margin-top: 2px; }

/* ── SCROLL PROGRESS ── */
#scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--violet)); z-index: 9999; box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,245,255,0.4); transition: width 0.05s linear; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.from-left { transform: translateX(-48px); }
.reveal.from-right { transform: translateX(48px); }
.reveal.scale-in { transform: scale(0.9) translateY(20px); }
.reveal.visible { opacity: 1; transform: none; }
.stagger-children > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.stagger-children.visible > * { opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(1){transition-delay:0ms}
.stagger-children.visible > *:nth-child(2){transition-delay:70ms}
.stagger-children.visible > *:nth-child(3){transition-delay:140ms}
.stagger-children.visible > *:nth-child(4){transition-delay:210ms}
.stagger-children.visible > *:nth-child(5){transition-delay:280ms}
.stagger-children.visible > *:nth-child(6){transition-delay:350ms}
.stagger-children.visible > *:nth-child(7){transition-delay:420ms}
.stagger-children.visible > *:nth-child(8){transition-delay:490ms}
.stagger-children.visible > *:nth-child(9){transition-delay:560ms}

/* glitch */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; inset: 0; font-family: inherit; font-size: inherit; letter-spacing: inherit; line-height: inherit; }
.glitch::before { color: var(--cyan); clip-path: polygon(0 20%,100% 20%,100% 40%,0 40%); transform: translateX(-3px); animation: glitch-before 4s infinite steps(1); -webkit-text-stroke: 0; }
.glitch::after { color: var(--magenta); clip-path: polygon(0 60%,100% 60%,100% 80%,0 80%); transform: translateX(3px); animation: glitch-after 4s infinite steps(1); -webkit-text-stroke: 0; }
@keyframes glitch-before { 0%,90%,100%{transform:translateX(0);opacity:0} 92%{transform:translateX(-4px);opacity:1;clip-path:polygon(0 15%,100% 15%,100% 30%,0 30%)} 94%{transform:translateX(4px);opacity:1;clip-path:polygon(0 50%,100% 50%,100% 65%,0 65%)} 96%{transform:translateX(-2px);opacity:1;clip-path:polygon(0 70%,100% 70%,100% 80%,0 80%)} 98%{opacity:0} }
@keyframes glitch-after { 0%,90%,100%{transform:translateX(0);opacity:0} 93%{transform:translateX(4px);opacity:1;clip-path:polygon(0 40%,100% 40%,100% 55%,0 55%)} 95%{transform:translateX(-4px);opacity:1;clip-path:polygon(0 20%,100% 20%,100% 35%,0 35%)} 97%{transform:translateX(2px);opacity:1;clip-path:polygon(0 75%,100% 75%,100% 85%,0 85%)} 99%{opacity:0} }

/* scan sweep */
.scan-sweep { position: relative; overflow: hidden; }
.scan-sweep::before { content: ''; position: absolute; top: 0; left: -100%; bottom: 0; width: 60%; background: linear-gradient(90deg, transparent, rgba(0,245,255,0.12), transparent); transform: skewX(-15deg); pointer-events: none; opacity: 0; z-index: 2; }
.scan-sweep.sweep-active::before { opacity: 1; animation: scan-line 0.8s ease forwards; }
@keyframes scan-line { from{left:-60%} to{left:130%} }

/* letter split */
.split-text .char { display: inline-block; opacity: 0; transform: translateY(100%) rotateX(-90deg); transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1); transform-origin: bottom center; }
.split-text.visible .char { opacity: 1; transform: none; }

.tilt-card { transform-style: preserve-3d; transition: transform 0.15s ease-out, box-shadow 0.15s ease-out; will-change: transform; }
.magnetic { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }

/* cost row reveal in panels */
.cost-panel .cost-row { opacity: 0; transform: translateX(-16px); transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.cost-panel .cost-row.row-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .featured-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-body { grid-template-columns: 1fr; }
  .section-nav { position: relative; top: 0; flex-direction: row; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
  .section-nav a { border-left: none; border-bottom: 2px solid var(--border-soft); }
  .detail-sections { padding-top: 1.5rem; }
  .planner-page { grid-template-columns: 1fr; }
  .planner-panel { position: relative; top: 0; }
}
@media (max-width: 860px) {
  nav { padding: 0 1.25rem; }
  .nav-links { position: fixed; top: 58px; right: 0; width: min(280px, 80vw); height: calc(100vh - 58px); background: rgba(9,6,24,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: stretch; padding: 1rem 0; border-left: 1px solid var(--border-neon); transform: translateX(100%); transition: transform 0.3s ease; gap: 0; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { height: auto; padding: 14px 1.5rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 12px 1.5rem 0; }
  .nav-burger { display: inline-flex; }
  .section-wrap, .browse-wrap, .planner-page, .detail-body, .newsletter-wrap, .page-head, .detail-hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  .fest-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .gear-grid { grid-template-columns: 1fr; }
  .ci-tiers { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .planner-inner { grid-template-columns: 1fr; gap: 2rem; }
  .planner-form { grid-template-columns: 1fr; }
  .deck-channels { grid-template-columns: 1fr; }
  .deck-body { grid-template-columns: 1fr; gap: 20px; }
  .deck-knobs { justify-content: center; }
  .journey-top { flex-direction: column; gap: 1rem; }
  .journey-meta { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; text-align: left; }
  .jleg { grid-template-columns: 72px 1fr; }
  .match-card { grid-template-columns: 1fr; }
  .mc-cost { border-left: none; border-top: 1px solid var(--border-neon); }
  .logi-item { grid-template-columns: 1fr; gap: 4px; }
  footer { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { flex-direction: column; }
  .hstat { border-right: none; border-bottom: 1px solid var(--border-neon); width: 100%; }
  .hstat:last-child { border-bottom: none; }
  #sticky-planner { bottom: 16px; right: 16px; }
  .stp-panel { width: min(340px, 92vw); }
}
@media (max-width: 520px) {
  footer { grid-template-columns: 1fr; }
  .dh-quick { width: 100%; }
  .dh-quick .q { flex: 1 1 50%; border-bottom: 1px solid var(--border-neon); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .stagger-children > * { opacity: 1 !important; transform: none !important; }
  .split-text .char { opacity: 1 !important; transform: none !important; }
}

/* ── SVG GLYPH ICONS (replaces emoji) ── */
.fc-glyph svg, .region-icon svg, .ac-glyph svg, .es-glyph svg,
.pr-empty .glyph svg, .dh-glyph svg { width: 1em; height: 1em; display: block; }
.region-icon svg, .es-glyph svg, .pr-empty .glyph svg { margin: 0 auto; }
.dh-glyph svg { width: 1em; height: 1em; }
.fest-card.fc-magenta .fc-glyph { color: var(--magenta); }
.fest-card.fc-violet .fc-glyph { color: var(--violet); }
.fest-card.fc-amber .fc-glyph { color: var(--amber); }
.region-icon.c { color: var(--cyan); }
.region-icon.m { color: var(--magenta); }
.region-icon.v { color: var(--violet); }
.region-icon.a { color: var(--amber); }
.es-glyph, .pr-empty .glyph { color: var(--cyan); }
.search-icon svg { width: 1em; height: 1em; display: block; }
.match-fit svg { width: 12px; height: 12px; display: block; flex: none; }

/* ── ADD TO PLAN ── */
.fc-top-right { display: inline-flex; align-items: center; gap: 8px; }
.plan-btn {
  position: relative; z-index: 3; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-ui); cursor: pointer; border-radius: 2px;
  border: 1px solid transparent; background: transparent; color: inherit;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.plan-btn svg { width: 1em; height: 1em; display: block; }

/* card variant — compact pill beside the genre tag */
.plan-btn-card { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-color: var(--border-soft); color: var(--mist); background: rgba(240,239,255,0.03); }
.plan-btn-card svg { font-size: 12px; }
.plan-btn-card:hover { color: var(--snow); border-color: var(--cyan); box-shadow: 0 0 10px var(--cyan-dim); }
.plan-btn-card.saved { color: var(--cyan); border-color: var(--cyan); background: var(--cyan-dim); }
.fest-card.fc-magenta .plan-btn-card:hover { border-color: var(--magenta); box-shadow: 0 0 10px var(--magenta-dim); }
.fest-card.fc-violet  .plan-btn-card:hover { border-color: var(--violet);  box-shadow: 0 0 10px var(--violet-dim); }
.fest-card.fc-amber   .plan-btn-card:hover { border-color: var(--amber);   box-shadow: 0 0 10px var(--amber-dim); }
.fest-card.fc-magenta .plan-btn-card.saved { color: var(--magenta); border-color: var(--magenta); background: var(--magenta-dim); }
.fest-card.fc-violet  .plan-btn-card.saved { color: var(--violet);  border-color: var(--violet);  background: var(--violet-dim); }
.fest-card.fc-amber   .plan-btn-card.saved { color: var(--amber);   border-color: var(--amber);   background: var(--amber-dim); }

/* detail variant — full neon action */
.dh-actions { position: relative; z-index: 2; margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.site-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-ui); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 24px; border-radius: 2px; cursor: pointer; text-decoration: none;
  border: 1px solid var(--border-soft); color: var(--mist); background: rgba(240,239,255,0.03);
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.site-link svg { width: 16px; height: 16px; display: block; }
.site-link:hover { color: var(--snow); border-color: var(--violet); background: var(--violet-dim); box-shadow: 0 0 20px var(--violet-dim); transform: translateY(-1px); }
.site-link:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

/* ---- Book-flights / View airfare link (Google Flights) ---- */
.flights-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-ui); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 24px; border-radius: 2px; cursor: pointer; text-decoration: none;
  border: 1px solid var(--border-soft); color: var(--cyan); background: rgba(0,245,255,0.05);
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.flights-link svg { width: 16px; height: 16px; display: block; }
.flights-link:hover { color: var(--snow); border-color: var(--cyan); background: rgba(0,245,255,0.12); box-shadow: 0 0 20px rgba(0,245,255,0.25); transform: translateY(-1px); }
.flights-link:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.flights-link[hidden] { display: none; }
.flights-link-sm { padding: 8px 14px; font-size: 10px; letter-spacing: 1.5px; }
.flights-link-sm svg { width: 14px; height: 14px; }
.deck-foot { padding: 14px 16px 2px; display: flex; }
.deck-foot .flights-link { width: 100%; justify-content: center; }
.cost-panel-foot { padding: 14px 18px; border-top: 1px solid var(--border-soft); }
.cost-panel-foot .flights-link { width: 100%; justify-content: center; }

/* ---- Planner match card: clickable + add actions ---- */
.match-card.mc-clickable { cursor: pointer; }
.mc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 16px; }
.match-card.in-plan { box-shadow: inset 3px 0 0 var(--cyan); }
.match-card.in-plan .mc-cost { background: rgba(0,245,255,0.09); }

/* ---- Festival in focus carousel ---- */
.focus-carousel { position: relative; }
.focus-viewport { overflow: hidden; }
.focus-track { display: flex; transition: transform .6s cubic-bezier(0.22,1,0.36,1); will-change: transform; }
.focus-slide { flex: 0 0 100%; min-width: 100%; }
.focus-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-neon); background: rgba(3,2,10,0.6); color: var(--snow);
  cursor: pointer; border-radius: 50%; transition: background .2s, border-color .2s, color .2s;
}
.focus-nav svg { width: 22px; height: 22px; }
.focus-nav:hover { background: var(--cyan); color: #03020A; border-color: var(--cyan); }
.focus-nav:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.focus-nav.prev { left: 14px; }
.focus-nav.next { right: 14px; }
.focus-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; gap: 9px; justify-content: center; z-index: 4; }
.focus-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--mist); background: transparent; padding: 0; cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.focus-dot.active { background: var(--cyan); border-color: var(--cyan); transform: scale(1.25); }
.focus-dot:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
@media (max-width: 720px) {
  .focus-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .focus-track { transition: none; }
}
.plan-btn-detail { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 13px 26px; border-color: var(--cyan); color: var(--cyan); background: rgba(0,245,255,0.05); }
.plan-btn-detail svg { font-size: 16px; }
.plan-btn-detail:hover { background: var(--cyan-dim); box-shadow: 0 0 22px var(--cyan-glow); transform: translateY(-1px); }
.plan-btn-detail.saved { color: var(--magenta); border-color: var(--magenta); background: var(--magenta-dim); }
.plan-btn-detail.saved:hover { box-shadow: 0 0 22px rgba(255,45,120,0.35); }

/* nav badge */
.plan-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 17px; height: 17px; padding: 0 5px; margin-left: 7px; border-radius: 9px; background: var(--magenta); color: #fff; font-family: var(--ff-ui); font-size: 10px; font-weight: 700; line-height: 1; box-shadow: 0 0 10px var(--magenta-dim); }
.plan-badge[hidden] { display: none; }

/* ── MY PLAN PANEL (planner page) ── */
.my-plan { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 3rem 0; }
.mp-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 1.1rem; }
.mp-head h2 { font-family: var(--ff-rave); font-size: 24px; letter-spacing: 3px; }
.mp-sub { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.mp-list { border: 1px solid var(--border-neon); background: rgba(9,6,24,0.7); }
.mp-item { display: grid; grid-template-columns: auto minmax(0,1fr) auto auto; align-items: center; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--border-soft); }
.mp-item:last-child { border-bottom: none; }
.mp-glyph { font-size: 22px; line-height: 1; color: var(--cyan); filter: drop-shadow(0 0 5px currentColor); }
.mp-glyph svg { width: 1em; height: 1em; display: block; }

/* Planner: companion suggestions + RGB Console CTA */
.mp-comp { margin-top: 16px; }
.mp-comp-head { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--snow); margin-bottom: 8px; }
.mp-comp-sub { color: var(--mist); font-weight: 300; letter-spacing: 1px; }
.mp-comp-card { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid var(--border-soft); border-radius: 8px; margin-bottom: 8px; background: rgba(3,2,10,0.4); }
.mp-comp-card .mp-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mp-console-cta { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; padding: 22px 20px; border: 0; border-radius: 12px; font-family: var(--ff-rave, var(--ff-ui)); font-size: 17px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; color: #05030f; text-decoration: none; background: linear-gradient(90deg,#ff2ec4,#9b5cff,#00f5ff,#9dff3c,#ffc93c,#ff2ec4); background-size: 300% 100%; animation: mpRgb 4s linear infinite, mpGlow 2.2s ease-in-out infinite; transition: transform .12s; }
.mp-console-cta:hover { transform: scale(1.03); }
.mp-console-cta::before { content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-20deg); animation: mpShine 3.2s ease-in-out infinite; }
@keyframes mpRgb { to { background-position: 300% 0; } }
@keyframes mpGlow { 0%,100% { box-shadow: 0 0 22px rgba(155,92,255,0.5), 0 0 50px rgba(255,46,196,0.25); } 50% { box-shadow: 0 0 40px rgba(0,245,255,0.7), 0 0 80px rgba(157,255,60,0.35); } }
@keyframes mpShine { 0% { left: -60%; } 55%,100% { left: 130%; } }
.mp-cta-spark { width: 12px; height: 12px; border-radius: 50%; background: #05030f; animation: mpPulse 1.2s ease-in-out infinite; }
@keyframes mpPulse { 0%,100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.7); opacity: 1; } }

/* FESTGO-generated lineup poster (from our real lineup data) */
.lineup-poster { border-radius: 12px; padding: 2px; background: linear-gradient(135deg, var(--lp, var(--cyan)), rgba(3,2,10,0.25)); box-shadow: 0 18px 46px rgba(0,0,0,0.45); }
.lp-inner { border-radius: 10px; padding: 30px 22px; text-align: center; background: radial-gradient(120% 100% at 50% 0, rgba(8,5,18,0.86), rgba(3,2,10,0.96)); }
.lp-name { font-family: var(--ff-rave, var(--ff-ui)); font-size: clamp(32px, 6vw, 64px); letter-spacing: 2px; line-height: 1; color: #fff; text-shadow: 0 0 20px var(--lp, var(--cyan)); }
.lp-phase { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--lp, var(--cyan)); margin: 10px 0 18px; }
.lp-heads { font-family: var(--ff-ui); font-weight: 800; font-size: clamp(15px, 2.3vw, 22px); line-height: 1.55; text-transform: uppercase; color: #f4f3ff; }
.lp-act { margin: 0 4px; }
.lp-dot { color: var(--lp, var(--cyan)); margin: 0 3px; }
.lp-emerging { margin-top: 14px; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--mist); }
.lp-more { margin-top: 16px; font-family: var(--ff-ui); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--lp, var(--cyan)); }
.lp-foot { margin-top: 20px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; font-family: var(--ff-ui); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.lp-loc { background: var(--lp, var(--cyan)); color: #05030f; padding: 5px 12px; border-radius: 3px; font-weight: 800; }
.lp-when { padding: 5px 12px; border: 1px solid var(--lp, var(--cyan)); border-radius: 3px; color: #fff; }

/* Local Picks: one restaurant / activity / onsen free, premium unlocks more */
.local-picks { display: block; }
.locp-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.locp-pick { position: relative; border-radius: 12px; padding: 18px 16px 16px; background: rgba(8,6,22,0.6); border: 1px solid var(--border-neon); overflow: hidden; }
.locp-pick::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ac, var(--cyan)); box-shadow: 0 0 12px var(--ac, var(--cyan)); }
.locp-kind { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ac, var(--mist)); margin-bottom: 8px; }
.locp-name { font-family: var(--ff-ui); font-weight: 800; font-size: 16px; color: var(--snow); line-height: 1.25; margin-bottom: 6px; }
.locp-note { font-size: 13px; color: var(--mist); line-height: 1.5; }
.locp-price { margin-top: 10px; display: inline-block; font-family: var(--ff-ui); font-size: 12px; letter-spacing: 1px; color: #6cf0ad; font-weight: 700; }
.locp-teaser { margin-top: 14px; font-size: 13px; color: var(--mist); padding: 10px 14px; border-radius: 8px; background: rgba(0,245,255,0.05); border: 1px dashed var(--border-neon); }
.locp-teaser b { color: var(--cyan); }
.locp-more { margin-top: 18px; }
.locp-more-head { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; display: flex; align-items: center; }
.locp-more-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.locp-cat-h { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); margin-bottom: 8px; }
.locp-list { list-style: none; padding: 0; margin: 0; }
.locp-list li { font-size: 13px; color: var(--snow); line-height: 1.45; padding: 8px 0; border-top: 1px solid var(--border-soft); }
.locp-list li:first-child { border-top: 0; }
.locp-mprice { color: #6cf0ad; font-weight: 700; font-size: 12px; }
.locp-mnote { color: var(--mist); font-size: 12.5px; }

/* Currency picker (planning surfaces) */
.fx-bar { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.fx-pick { display: inline-flex; align-items: center; gap: 8px; }
.fx-pick-l { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }
.fx-select { font-family: var(--ff-ui); font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--snow); background: rgba(8,6,22,0.85); border: 1px solid var(--border-neon); border-radius: 8px; padding: 7px 10px; cursor: pointer; }
.fx-select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0,245,255,0.2); }

/* Official Instagram embeds (From the Festival) - 3 across on desktop, each framed
   in a dark neon card so the white IG embeds read as intentional, not pasted-in. */
.ig-embeds { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; align-items: start; }
.ig-card { background: linear-gradient(180deg, rgba(12,9,30,0.92), rgba(6,4,16,0.96)); border: 1px solid var(--border-neon); border-radius: 16px; padding: 10px; box-shadow: 0 14px 36px rgba(0,0,0,0.5), 0 0 18px rgba(0,245,255,0.08); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.ig-card:hover { box-shadow: 0 18px 44px rgba(0,0,0,0.6), 0 0 26px rgba(0,245,255,0.18); transform: translateY(-2px); }
.ig-embeds .instagram-media { background: #fff; border-radius: 10px; width: 100% !important; min-width: 0 !important; max-width: 100% !important; margin: 0 !important; overflow: hidden; }
.ig-follow-row { display: flex; justify-content: center; margin-top: 20px; }
.ig-follow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-ui); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; color: #fff; padding: 11px 20px; border-radius: 999px; text-decoration: none; background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7); box-shadow: 0 6px 22px rgba(238,42,123,0.35); }
.ig-follow svg { width: 16px; height: 16px; }
.ig-follow:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Home language picker (choice remembered; translation is a later phase) */
.lang-pick { display: inline-block; margin: 0 auto 18px; text-align: left; }
.lang-pick-row { display: inline-flex; align-items: center; gap: 8px; }
.lang-pick-l { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }
.lang-soon { font-family: var(--ff-ui); font-size: 8px; letter-spacing: 1.5px; font-weight: 700; color: #0a0820; background: linear-gradient(90deg, var(--cyan), var(--magenta)); padding: 2px 6px; border-radius: 4px; }
.lang-note { margin-top: 6px; font-family: var(--ff-ui); font-size: 10px; letter-spacing: 1px; color: var(--mist); opacity: 0.8; }
.hero .lang-pick { display: block; text-align: center; }
.hero .lang-pick-row { justify-content: center; }

/* Lineup poster as the BACKGROUND of the festival-name box (hero + console) */
.detail-hero::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.07; background-image: radial-gradient(circle at 50% 100%, transparent 9px, var(--lp, #00F5FF) 10px, var(--lp, #00F5FF) 11px, transparent 12px); background-size: 26px 13px; }
.dh-poster { position: absolute; inset: 0; z-index: 1; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 2px 14px; padding: 6% 7%; font-family: var(--ff-rave, var(--ff-ui)); font-weight: 800; font-size: clamp(20px, 4.2vw, 52px); line-height: 1.12; text-transform: uppercase; color: var(--lp, var(--cyan)); opacity: 0.15; overflow: hidden; pointer-events: none; }
.dh-poster i { font-style: normal; color: var(--lp, var(--cyan)); opacity: 0.5; }
.detail-hero .wrap { position: relative; z-index: 2; }
.cs-deck { position: relative; }
.cs-poster { position: absolute; inset: 0; z-index: 0; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 2px 10px; padding: 6%; font-family: var(--ff-rave, var(--ff-ui)); font-weight: 800; font-size: clamp(13px, 2.4vw, 28px); line-height: 1.2; text-transform: uppercase; color: var(--lp, var(--cyan)); opacity: 0.10; overflow: hidden; pointer-events: none; border-radius: inherit; }
.cs-poster i { font-style: normal; opacity: 0.5; }
.cs-mixrow { position: relative; z-index: 1; }
.mp-item.fc-magenta .mp-glyph { color: var(--magenta); }
.mp-item.fc-violet  .mp-glyph { color: var(--violet); }
.mp-item.fc-amber   .mp-glyph { color: var(--amber); }
.mp-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mp-name { font-family: var(--ff-rave); font-size: 17px; letter-spacing: 1px; text-decoration: none; color: var(--snow); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mp-name:hover { color: var(--cyan); }
.mp-meta { font-family: var(--ff-ui); font-size: 11px; color: var(--mist); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mp-cost { font-family: var(--ff-rave); font-size: 18px; letter-spacing: 0.5px; color: var(--cyan); display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; white-space: nowrap; }
.mp-cost-lbl { font-family: var(--ff-ui); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--mist); }
.mp-cost-live { text-shadow: 0 0 9px var(--cyan-glow); }
.mp-cost-live .mp-cost-lbl { color: var(--cyan); opacity: 0.82; }
.mp-remove { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-soft); background: transparent; color: var(--mist); border-radius: 2px; cursor: pointer; transition: color .2s, border-color .2s, box-shadow .2s; }
.mp-remove svg { width: 15px; height: 15px; display: block; }
.mp-remove:hover { color: var(--magenta); border-color: var(--magenta); box-shadow: 0 0 10px var(--magenta-dim); }
.mp-total { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; padding: 15px 18px; border: 1px solid var(--cyan); background: var(--cyan-dim); }
.mp-total-lbl { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--snow); }
.mp-total-val { font-family: var(--ff-rave); font-size: 26px; letter-spacing: 1px; color: var(--cyan); display: flex; flex-direction: column; align-items: flex-end; line-height: 1.05; }
.mp-empty { border: 1px dashed var(--border-neon); padding: 2.2rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mp-empty-ico { font-size: 30px; line-height: 1; color: var(--cyan); filter: drop-shadow(0 0 8px var(--cyan-glow)); }
.mp-empty-ico svg { width: 1em; height: 1em; display: block; }
.mp-empty p { color: var(--mist); max-width: 440px; font-size: 13px; }
.mp-empty b { color: var(--snow); }

@media (max-width: 640px) {
  .my-plan { padding: 2rem 1.25rem 0; }
  .mp-item { gap: 10px; padding: 12px 14px; }
  .mp-name { font-size: 15px; }
  .mp-cost { font-size: 15px; }
  .mp-total-val { font-size: 22px; }
}

/* ============================================================
   DATE STATUS CHIPS  (festWindow status: now / soon / tbd / upcoming)
   ============================================================ */
.fc-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--ff-ui); font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px; white-space: nowrap;
  border: 1px solid currentColor; line-height: 1; vertical-align: middle;
}
.st-now  { color: var(--magenta); background: var(--magenta-dim); }
.st-soon { color: var(--amber);   background: var(--amber-dim); }
.st-tbd  { color: var(--violet);  background: var(--violet-dim); }
.st-up   { color: var(--cyan);    background: var(--cyan-dim); }
.st-cancelled { color: #ff4d6d; background: rgba(255,77,109,0.14); text-decoration: line-through; }
.st-hiatus    { color: var(--amber); background: var(--amber-dim); }
.st-now::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 6px var(--magenta); flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .st-now::before { animation: nowPulse 1.6s ease-in-out infinite; }
}
@keyframes nowPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.fc-date { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }

/* detail-hero status chip (sits in the .dh-tags row) */
.dh-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px; line-height: 1; border: 1px solid currentColor;
}
.dh-status.st-now  { color: var(--magenta); background: var(--magenta-dim); }
.dh-status.st-soon { color: var(--amber);   background: var(--amber-dim); }
.dh-status.st-tbd  { color: var(--violet);  background: var(--violet-dim); }
.dh-status.st-cancelled { color: #ff4d6d; background: rgba(255,77,109,0.14); }
.dh-status.st-hiatus    { color: var(--amber); background: var(--amber-dim); }
.dh-status.st-now::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 8px var(--magenta); flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .dh-status.st-now::before { animation: nowPulse 1.6s ease-in-out infinite; }
}

/* detail-hero lead description (what kind of festival this is) */
.dh-blurb {
  font-size: 15px; color: var(--mist); max-width: 640px;
  font-weight: 300; line-height: 1.75; margin-top: 0.85rem;
}

/* ============================================================
   FESTHOP TIMELINE  (browse "Sort: By date")
   ============================================================ */
.timeline { display: flex; flex-direction: column; gap: 2.2rem; }
.tl-group { position: relative; }
.tl-month {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-rave); font-size: 16px; letter-spacing: 3px;
  color: var(--snow); text-transform: uppercase; margin-bottom: 0.9rem;
}
.tl-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan-glow); flex: none; }
.tl-count {
  font-family: var(--ff-ui); font-size: 10px; font-weight: 600; letter-spacing: 1px;
  color: var(--mist); border: 1px solid var(--border-soft); border-radius: 999px;
  padding: 2px 9px; margin-left: 4px;
}
.tl-items { display: flex; flex-direction: column; gap: 1px; background: var(--border-neon); border: 1px solid var(--border-neon); }
.tl-item {
  display: grid; grid-template-columns: auto minmax(0,1fr) auto auto;
  align-items: center; gap: 16px; padding: 14px 18px;
  background: rgba(9,6,24,0.82); text-decoration: none; color: inherit; transition: background 0.2s;
}
.tl-item:hover { background: var(--surface2); }
.tl-glyph { font-size: 22px; line-height: 1; color: var(--cyan); filter: drop-shadow(0 0 5px currentColor); }
.tl-glyph svg { width: 1em; height: 1em; display: block; }
.tl-item.fc-magenta .tl-glyph { color: var(--magenta); }
.tl-item.fc-violet  .tl-glyph { color: var(--violet); }
.tl-item.fc-amber   .tl-glyph { color: var(--amber); }
.tl-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tl-name {
  font-family: var(--ff-rave); font-size: 18px; letter-spacing: 1px; color: var(--snow);
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.tl-sub { font-family: var(--ff-ui); font-size: 11px; color: var(--mist); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tl-when { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; white-space: nowrap; }
.tl-date { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 0.5px; color: var(--snow); }
.tl-cost { font-family: var(--ff-rave); font-size: 16px; letter-spacing: 0.5px; color: var(--cyan); }
.tl-item.fc-magenta .tl-cost { color: var(--magenta); }
.tl-item.fc-violet  .tl-cost { color: var(--violet); }
.tl-item.fc-amber   .tl-cost { color: var(--amber); }

/* ============================================================
   FESTHOP ITINERARY  (My Plan)
   ============================================================ */
.mp-trip { display: flex; align-items: center; gap: 14px; padding: 14px 18px; margin-bottom: 14px; border: 1px solid var(--cyan); background: var(--cyan-dim); }
.mp-trip-ico { font-size: 22px; line-height: 1; color: var(--cyan); filter: drop-shadow(0 0 7px var(--cyan-glow)); flex: none; }
.mp-trip-ico svg { width: 1em; height: 1em; display: block; }
.mp-trip-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mp-trip-when { font-family: var(--ff-rave); font-size: 20px; letter-spacing: 1px; color: var(--snow); }
.mp-trip-span { font-family: var(--ff-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); }
.mp-name-row { display: flex; align-items: center; gap: 8px; min-width: 0; }
.mp-name-row .mp-name { flex: 0 1 auto; }
.mp-gap { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 18px; background: rgba(9,6,24,0.5); border-bottom: 1px solid var(--border-soft); }
.mp-gap::before, .mp-gap::after { content: ''; height: 1px; flex: 1; max-width: 80px; background: var(--border-soft); }
.mp-gap-txt { font-family: var(--ff-ui); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); white-space: nowrap; }
.mp-gap-warn .mp-gap-txt { color: var(--amber); }
.mp-gap-warn::before, .mp-gap-warn::after { background: var(--amber-dim); }
.mp-gap-tba .mp-gap-txt { color: var(--violet); }
.mp-gap-tba::before, .mp-gap-tba::after { background: var(--violet-dim); }

/* ============================================================
   STROBE-FLASH BUTTON HOVER  (bright-white camera flash)
   WCAG 2.3.1 safe: runs once per hover (<=2 flashes), motion-gated.
   ============================================================ */
.btn-neon, .btn-solid, .stp-cta, .sh-link, .plan-btn-card, .nl-form button { position: relative; overflow: hidden; }
.sh-link { display: inline-block; }
.btn-neon::after, .btn-solid::after, .stp-cta::after, .sh-link::after, .plan-btn-card::after, .nl-form button::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: #fff; opacity: 0; pointer-events: none; border-radius: inherit;
}
.nav-cta::after { display: none !important; } /* sticky nav button stays calm on purpose */
@media (prefers-reduced-motion: no-preference) {
  .btn-neon:hover::after, .btn-solid:hover::after, .stp-cta:hover::after, .sh-link:hover::after, .plan-btn-card:hover::after, .nl-form button:hover::after,
  .btn-neon:active::after, .btn-solid:active::after, .stp-cta:active::after, .sh-link:active::after, .plan-btn-card:active::after, .nl-form button:active::after { animation: strobeFlash 0.5s ease-out 1; }
}
@keyframes strobeFlash {
  0%   { opacity: 0; }
  9%   { opacity: 0.92; }
  24%  { opacity: 0.08; }
  40%  { opacity: 0.70; }
  62%  { opacity: 0; }
  100% { opacity: 0; }
}

/* responsive: timeline + itinerary */
@media (max-width: 640px) {
  .tl-item { gap: 10px; padding: 12px 14px; }
  .tl-name { font-size: 15px; }
  .tl-cost { font-size: 14px; }
  .mp-trip-when { font-size: 17px; }
  .mp-name-row { flex-wrap: wrap; }
}

/* ============================================================
   FULL STROBE  (opt-in only, set via body.strobe-full)
   Nonstop fast bright-white flash on hover. Explicit two-step
   informed consent overrides the OS reduce-motion setting, so
   this rule intentionally beats the reduce-motion reset via
   higher specificity + !important.
   ============================================================ */
body.strobe-full .btn-neon:hover::after,
body.strobe-full .btn-solid:hover::after,
body.strobe-full .stp-cta:hover::after,
body.strobe-full .sh-link:hover::after,
body.strobe-full .plan-btn-card:hover::after,
body.strobe-full .nl-form button:hover::after,
body.strobe-full .btn-neon:active::after,
body.strobe-full .btn-solid:active::after,
body.strobe-full .stp-cta:active::after,
body.strobe-full .sh-link:active::after,
body.strobe-full .plan-btn-card:active::after,
body.strobe-full .nl-form button:active::after {
  animation: strobeNonstop 0.16s linear infinite !important;
}
@keyframes strobeNonstop {
  0%, 49.9% { opacity: 0.96; }
  50%, 100% { opacity: 0; }
}
/* cursor trail joins the full strobe: dots flash white in sync (consent-gated like the buttons) */
body.strobe-full .fg-trail-dot { animation: trailStrobe 0.16s linear infinite; }
@keyframes trailStrobe {
  0%, 49.9% { background: #fff; box-shadow: 0 0 8px #fff, 0 0 16px var(--cyan); }
  50%, 100% { background: rgba(0, 245, 255, 0.12); box-shadow: none; }
}

/* ============================================================
   CARD STROBE  (festival / region / planner-match cards)
   Same two-tier consent model as the CTAs above: one WCAG-safe
   camera flash on hover/tap by default (motion-gated), escalating
   to a nonstop flash only under the opt-in body.strobe-full.
   Cards already use ::before + ::after, so the flash rides on an
   inset box-shadow flood rather than an overlay pseudo. Hover is
   gated to pointer devices; touch fires on :active so the flash
   never sticks after a tap on mobile.
   ============================================================ */
.fest-card, .region-card, .match-card { -webkit-tap-highlight-color: transparent; }
@media (prefers-reduced-motion: no-preference) {
  .fest-card:active, .region-card:active, .match-card:active { animation: cardFlash 0.5s ease-out 1; }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .fest-card:hover, .region-card:hover, .match-card:hover { animation: cardFlash 0.5s ease-out 1; }
}
body.strobe-full .fest-card:active,
body.strobe-full .region-card:active,
body.strobe-full .match-card:active { animation: cardStrobe 0.16s linear infinite !important; }
@media (hover: hover) {
  body.strobe-full .fest-card:hover,
  body.strobe-full .region-card:hover,
  body.strobe-full .match-card:hover { animation: cardStrobe 0.16s linear infinite !important; }
}
@keyframes cardFlash {
  0%   { box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0); }
  9%   { box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.9); }
  24%  { box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.08); }
  40%  { box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.66); }
  62%  { box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0); }
  100% { box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0); }
}
@keyframes cardStrobe {
  0%, 49.9% { box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.96); }
  50%, 100% { box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0); }
}

/* ============================================================
   PHOTOSENSITIVITY CONSENT TOAST + SHATTER
   ============================================================ */
.toast-wrap {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 10000; width: min(460px, calc(100vw - 32px)); pointer-events: none;
}
.toast {
  pointer-events: auto;
  background: linear-gradient(155deg, #15102e 0%, #0b0820 100%);
  border: 1px solid rgba(155, 92, 255, 0.45);
  border-radius: 16px; padding: 18px 20px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 245, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(150%); opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 0.84, 0.24, 1), opacity 0.4s ease;
}
.toast.in { transform: translateY(0); opacity: 1; }
.toast-head { display: flex; align-items: center; gap: 9px; }
.toast-ico { width: 22px; height: 22px; color: var(--amber); flex: 0 0 auto; }
.toast-ico svg { width: 100%; height: 100%; display: block; }
.toast-eye {
  font-family: var(--ff-ui); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--amber); font-weight: 600;
}
.toast-title {
  font-family: var(--ff-rave); font-size: 18px; line-height: 1.15;
  margin: 11px 0 0; color: #fff; letter-spacing: 0.01em;
}
.toast-msg {
  font-family: var(--ff-ui); font-size: 13.5px; line-height: 1.6; font-weight: 300;
  color: var(--mist); margin: 7px 0 0;
}
.toast-actions { display: flex; gap: 10px; margin-top: 15px; }
.toast-btn {
  flex: 1 1 0; font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em; padding: 11px 12px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.toast-btn:active { transform: translateY(1px); }
.toast-btn-no {
  background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.16); color: var(--mist);
}
.toast-btn-no:hover { background: rgba(255, 255, 255, 0.09); color: #fff; }
.toast-btn-yes {
  background: linear-gradient(120deg, var(--magenta), var(--violet)); color: #fff;
  box-shadow: 0 0 18px rgba(255, 45, 120, 0.35);
}
.toast-btn-yes:hover { box-shadow: 0 0 26px rgba(255, 45, 120, 0.6); }
/* mild attention pulse on the final confirm button (slow, sub-threshold, not the fast strobe) */
.toast-btn-pulse { animation: toastPulse 1.15s ease-in-out infinite; }
@keyframes toastPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(255, 45, 120, 0.3); filter: brightness(1); }
  50%      { box-shadow: 0 0 30px rgba(255, 45, 120, 0.9), 0 0 48px rgba(155, 92, 255, 0.55); filter: brightness(1.22); }
}
.toast-fine {
  font-family: var(--ff-ui); font-size: 11px; color: rgba(255, 255, 255, 0.4);
  margin: 11px 0 0; font-weight: 300;
}

/* shatter shards */
.shard-layer { position: fixed; z-index: 10001; pointer-events: none; overflow: visible; }
.shard {
  position: absolute; will-change: transform, opacity;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}
@keyframes shardFly {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  12%  { opacity: 0.2; }
  24%  { opacity: 1; }
  38%  { opacity: 0.32; }
  52%  { opacity: 1; }
  68%  { opacity: 0.4; }
  82%  { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); opacity: 0; }
}

/* strobe toggle pill (lets users change their mind) */
.strobe-toggle {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-family: var(--ff-ui); font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--mist); background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 999px;
  padding: 7px 13px; transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.strobe-toggle:hover { color: #fff; border-color: rgba(0, 245, 255, 0.5); background: rgba(0, 245, 255, 0.06); }
.strobe-toggle .st-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3);
  box-shadow: none; transition: background 0.2s ease, box-shadow 0.2s ease;
}
body.strobe-full .strobe-toggle .st-dot {
  background: var(--magenta); box-shadow: 0 0 8px var(--magenta), 0 0 14px var(--magenta);
}

/* ============================================================
   PAGE-BREAK TRANSITION
   Clicking a primary CTA / card shatters it and opens an iris
   portal from the break point; the next page fades up via pageIn.
   Motion-gated (reduce-motion users navigate instantly).
   ============================================================ */
.page-wipe {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  clip-path: circle(0px at 50% 50%); -webkit-clip-path: circle(0px at 50% 50%);
  transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1), -webkit-clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (prefers-reduced-motion: no-preference) {
  body { animation: pageIn 0.45s ease both; }
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   BREAKER STAGE  (neon b-boy + press-and-hold strobe)
   The dancer spins on its own (motion-gated). Holding the mouse
   button strobes the backdrop; releasing stops it. The hold
   strobe carries the same reduce-motion consent override as the
   rest of the full-strobe experience.
   ============================================================ */
.breaker {
  position: relative; overflow: hidden;
  padding: 92px 24px; text-align: center;
  background: radial-gradient(circle at 50% 130%, rgba(155, 92, 255, 0.16), transparent 62%);
  cursor: pointer; user-select: none; -webkit-user-select: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.breaker-strobe {
  position: absolute; inset: 0; z-index: 0; opacity: 0;
  background: #fff; pointer-events: none;
}
.breaker-inner { position: relative; z-index: 2; }
.breaker-eye {
  font-family: var(--ff-ui); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cyan); font-weight: 600;
}
.breaker-title {
  font-family: var(--ff-rave); font-size: clamp(28px, 5vw, 52px);
  margin: 10px 0 6px; color: #fff; letter-spacing: 0.01em;
}
.breaker-sub {
  font-family: var(--ff-ui); font-size: 14px; font-weight: 300; line-height: 1.6;
  color: var(--mist); margin: 0 auto 26px; max-width: 460px;
}
.breaker-stage-floor {
  position: relative; width: 230px; height: 230px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.bboy { width: 170px; height: 170px; color: var(--cyan); filter: drop-shadow(0 0 12px rgba(0, 245, 255, 0.6)); }
.bboy svg { width: 100%; height: 100%; display: block; overflow: visible; }
.bboy-floorglow {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 150px; height: 24px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 245, 255, 0.5), transparent 70%);
  filter: blur(5px); z-index: -1;
}
.breaker-hint {
  font-family: var(--ff-ui); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5); margin-top: 22px; transition: color 0.2s ease;
}
.breaker.holding .breaker-hint { color: var(--cyan); }

@media (prefers-reduced-motion: no-preference) {
  .bboy-fig { transform-box: fill-box; transform-origin: center; animation: bboySpin 2.6s linear infinite; }
  .bboy-floorglow { animation: floorPulse 2.6s ease-in-out infinite; }
  .breaker.holding .breaker-strobe { animation: breakerStrobe 0.14s steps(1, end) infinite; }
  .breaker.holding .bboy { animation: bboyHue 0.45s steps(1, end) infinite; }
}
/* consent override: full-strobe users get the hold strobe even under reduce-motion */
body.strobe-full .breaker.holding .breaker-strobe { animation: breakerStrobe 0.12s steps(1, end) infinite !important; }
body.strobe-full .breaker.holding .bboy { animation: bboyHue 0.4s steps(1, end) infinite !important; }

@keyframes bboySpin { to { transform: rotate(360deg); } }
@keyframes floorPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 0.8; } }
@keyframes breakerStrobe {
  0%   { opacity: 0;    background: #fff; }
  25%  { opacity: 0.9;  background: #fff; }
  50%  { opacity: 0.2;  background: var(--cyan); }
  75%  { opacity: 0.85; background: var(--magenta); }
  100% { opacity: 0.25; background: var(--violet); }
}
@keyframes bboyHue {
  0%   { color: var(--cyan); }
  33%  { color: var(--magenta); }
  66%  { color: var(--violet); }
  100% { color: var(--amber); }
}

/* ============================================================
   FULL PSYCHO MODE  (extreme, triple opt-in via "Do NOT push")
   Hover-strobes everything, flashes + shakes the whole page and
   lets you drag buttons around. Always exits via the kill switch
   or Escape. Intentionally ignores reduce-motion, like the rest
   of the opt-in strobe experience.
   ============================================================ */
.toast-btn-danger {
  margin-top: 12px; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 11px 14px; border-radius: 12px; cursor: pointer; color: #fff;
  font-family: var(--ff-ui);
  border: 1px solid #ff2d55;
  background: linear-gradient(180deg, #ff3b3b, #b10010);
  box-shadow: 0 0 22px rgba(255, 45, 85, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: dangerThrob 0.9s ease-in-out infinite;
}
.toast-btn-danger:hover { filter: brightness(1.12); }
.toast-btn-danger:active { transform: translateY(1px); }
.tbd-label { font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 14px; }
.tbd-sub { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; }
@keyframes dangerThrob {
  0%, 100% { box-shadow: 0 0 16px rgba(255, 45, 85, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
  50%      { box-shadow: 0 0 36px rgba(255, 45, 85, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

/* kill switch: always on top, never strobes, never drags */
#psycho-exit {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 2147483647; cursor: pointer;
  font-family: var(--ff-ui); font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; font-size: 13px; color: #fff;
  padding: 12px 22px; border-radius: 999px;
  border: 2px solid #fff; background: #000;
  box-shadow: 0 0 0 3px #ff2d55, 0 8px 30px rgba(0, 0, 0, 0.6);
  animation: killPulse 1s ease-in-out infinite !important;
}
@keyframes killPulse {
  0%, 100% { box-shadow: 0 0 0 3px #ff2d55, 0 8px 30px rgba(0, 0, 0, 0.6); }
  50%      { box-shadow: 0 0 0 4px #fff, 0 8px 34px rgba(255, 45, 85, 0.7); }
}

/* full-screen flashing colour overlay + global hue spin behind it */
body.psycho::before {
  content: ""; position: fixed; inset: 0; z-index: 2147483640; pointer-events: none;
  mix-blend-mode: difference;
  -webkit-backdrop-filter: hue-rotate(0deg); backdrop-filter: hue-rotate(0deg);
  animation: psychoFlash 0.11s steps(1, end) infinite, psychoBack 1.1s linear infinite;
}
@keyframes psychoFlash {
  0%   { background: #ff00d4; opacity: 0.18; }
  20%  { background: #00f5ff; opacity: 0.05; }
  40%  { background: #ffffff; opacity: 0.24; }
  60%  { background: #9b5cff; opacity: 0.10; }
  80%  { background: #ffe600; opacity: 0.06; }
  100% { background: #00ff85; opacity: 0.20; }
}
@keyframes psychoBack {
  to { -webkit-backdrop-filter: hue-rotate(360deg); backdrop-filter: hue-rotate(360deg); }
}

/* everything you hover (and its ancestors) goes full strobe: bg + text */
body.psycho *:hover {
  animation: psychoStrobe 0.09s steps(1, end) infinite !important;
}
@keyframes psychoStrobe {
  0%   { background-color: #fff !important;     color: #000 !important; box-shadow: 0 0 30px #fff !important; }
  25%  { background-color: #ff00d4 !important;  color: #fff !important; box-shadow: 0 0 30px #ff00d4 !important; }
  50%  { background-color: #00f5ff !important;  color: #000 !important; box-shadow: 0 0 30px #00f5ff !important; }
  75%  { background-color: #ffe600 !important;  color: #000 !important; box-shadow: 0 0 30px #ffe600 !important; }
  100% { background-color: #9b5cff !important;  color: #fff !important; box-shadow: 0 0 30px #9b5cff !important; }
}
/* keep the kill switch sane even while hovered */
body.psycho #psycho-exit, body.psycho #psycho-exit:hover {
  background: #000 !important; color: #fff !important;
  animation: killPulse 1s ease-in-out infinite !important;
}
body.psycho #psycho-exit:hover { background: #ff2d55 !important; }

/* constant earthquake on the page content (not the fixed kill switch) */
body.psycho > header, body.psycho > section, body.psycho > main, body.psycho > footer, body.psycho .nav-bar {
  animation: psychoShake 0.13s linear infinite;
}
@keyframes psychoShake {
  0%   { transform: translate(0, 0) rotate(0); }
  25%  { transform: translate(3px, -2px) rotate(0.35deg); }
  50%  { transform: translate(-2px, 2px) rotate(-0.4deg); }
  75%  { transform: translate(2px, 2px) rotate(0.25deg); }
  100% { transform: translate(-1px, -2px) rotate(-0.2deg); }
}

/* ============================================================
   HIDDEN MINI-GAME: NIGHT RUN  (easter-egg overlay)
   ============================================================ */
#snow-game {
  position: fixed; inset: 0; z-index: 2147483646;
  background: #02010a; overflow: hidden; font-family: var(--ff-ui);
}
#snow-canvas { position: absolute; inset: 0; display: block; touch-action: none; }
.sg-hud {
  position: absolute; top: 14px; left: 16px; right: auto; z-index: 5;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  pointer-events: none; max-width: min(78vw, 280px);
}
.sg-hud .sg-eye {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cyan); font-weight: 700;
}
.sg-stats { display: flex; align-items: baseline; gap: 12px; }
.sg-stat { font-family: var(--ff-rave); font-size: 18px; color: #fff; text-shadow: 0 0 12px rgba(0, 245, 255, 0.6); }
.sg-best { color: var(--mist); text-shadow: none; font-size: 14px; }
.sg-close {
  position: absolute; top: 12px; right: 14px; z-index: 4;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.sg-close svg { width: 20px; height: 20px; }
.sg-close:hover { background: rgba(255, 45, 120, 0.3); }
.sg-screen {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  overflow-y: auto;
  background: radial-gradient(circle at 50% 40%, rgba(8, 5, 30, 0.35), rgba(2, 1, 10, 0.85));
}
.sg-card {
  text-align: center; max-width: 420px; margin: auto;
  background: rgba(10, 8, 26, 0.7);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--border-neon); border-radius: 18px; padding: 30px 26px;
  box-shadow: 0 0 50px rgba(0, 245, 255, 0.18);
}
.sg-card-over { max-width: 460px; }
.sg-card .sg-eye {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cyan); font-weight: 700;
}
.sg-eye-warn { color: var(--magenta) !important; }
.sg-title { font-family: var(--ff-rave); font-size: clamp(34px, 8vw, 60px); margin: 8px 0 10px; color: #fff; }
.sg-sub { font-size: 14px; line-height: 1.6; color: var(--mist); margin: 0 auto 22px; font-weight: 300; }
.sg-play {
  font-family: var(--ff-ui); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 15px; color: #03020a; cursor: pointer;
  padding: 14px 34px; border-radius: 999px; border: none;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}
.sg-play:hover { filter: brightness(1.1); }
.sg-fine { font-size: 11px; color: rgba(255, 255, 255, 0.4); margin: 14px 0 0; letter-spacing: 0.1em; }

/* reigning-champ card (top-left HUD) */
.sg-champ {
  margin-top: 8px; pointer-events: none;
  display: inline-flex; flex-direction: column; gap: 3px;
  padding: 8px 12px; border-radius: 12px; max-width: 100%;
  background: rgba(10, 8, 26, 0.66);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 184, 0, 0.4);
  box-shadow: 0 0 24px rgba(255, 184, 0, 0.16);
}
.sg-champ[hidden] { display: none; }
.sg-champ-eye { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); font-weight: 800; }
.sg-champ-row { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #fff; min-width: 0; }
.sg-champ-name { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sg-champ-score { font-family: var(--ff-rave); color: var(--amber); flex: none; }

/* handle entry form */
.sg-lb-form { display: flex; align-items: stretch; gap: 8px; margin: 4px 0 8px; position: relative; }
.sg-at { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--mist); font-size: 14px; pointer-events: none; }
.sg-lb-input {
  flex: 1 1 auto; min-width: 0;
  padding: 11px 12px 11px 24px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border-neon);
  color: #fff; font-family: var(--ff-ui); font-size: 14px;
}
.sg-lb-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.sg-lb-input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.25); }
.sg-lb-input:disabled { opacity: 0.6; }
.sg-lb-submit {
  flex: none; padding: 11px 16px; border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--ff-ui); font-weight: 800; letter-spacing: 0.04em; font-size: 13px; color: #03020a;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}
.sg-lb-submit:hover { filter: brightness(1.1); }
.sg-lb-submit:disabled { opacity: 0.5; cursor: default; filter: none; }
.sg-lb-note { font-size: 11px; line-height: 1.5; color: rgba(255, 255, 255, 0.5); margin: 0 0 14px; letter-spacing: 0.02em; }
.sg-lb-note.is-err { color: var(--magenta); }
.sg-lb-note.is-ok { color: var(--cyan); }

/* global top-10 board */
.sg-lb { text-align: left; margin: 0 0 18px; }
.sg-lb-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.sg-lb-row { display: flex; align-items: center; gap: 9px; padding: 5px 8px; border-radius: 8px; font-size: 13px; color: var(--mist); }
.sg-lb-row:nth-child(odd) { background: rgba(255, 255, 255, 0.03); }
.sg-lb-me { background: rgba(0, 245, 255, 0.12) !important; color: #fff; box-shadow: inset 0 0 0 1px rgba(0, 245, 255, 0.35); }
.sg-lb-rank { width: 18px; text-align: right; font-family: var(--ff-rave); color: var(--cyan); font-size: 13px; flex: none; }
.sg-flag { width: 20px; height: 15px; border-radius: 2px; flex: none; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12); object-fit: cover; }
.sg-flag-none { display: inline-block; background: rgba(255, 255, 255, 0.1); }
.sg-lb-name { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #fff; font-weight: 600; }
.sg-lb-score { flex: none; font-family: var(--ff-rave); color: var(--amber); }
.sg-lb-date { flex: none; font-size: 11px; color: var(--mist); opacity: 0.62; font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 380px) { .sg-lb-date { display: none; } }
.sg-lb-empty { font-size: 13px; color: var(--mist); text-align: center; margin: 8px 0 18px; }

/* keep the game clean even if psycho mode is somehow active underneath */
body.psycho #snow-game, body.psycho #snow-game *, body.psycho #snow-game *:hover { animation: none !important; }

/* ── Sports cross-link cards (festival detail page) ── */
.sports-intro { color: var(--mist); margin-bottom: 1.5rem; }
.sports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.sports-card { background: var(--glass); border: 1px solid var(--edge); border-radius: 12px; padding: 1.25rem; }
.sc-sport { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); margin-bottom: .4rem; }
.sc-name { font-family: var(--ff-ui); font-size: 1rem; font-weight: 600; color: var(--chalk); margin-bottom: .3rem; }
.sc-loc { font-size: .85rem; color: var(--mist); margin-bottom: .3rem; }
.sc-dates { font-size: .85rem; color: var(--accent); margin-bottom: .5rem; }
.sc-note { font-size: .82rem; color: var(--mist); line-height: 1.5; margin-bottom: .5rem; }
.sc-ticket { font-size: .8rem; color: var(--chalk); opacity: .7; }

/* ── Sports hub page ── */
.sports-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.sports-hub-card { background: var(--glass); border: 1px solid var(--edge); border-radius: 14px; padding: 1.5rem; }
.shc-tier { display: inline-block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: .2rem .6rem; border-radius: 4px; margin-bottom: .6rem; }
.shc-bucket { background: rgba(255,200,0,.15); color: #ffc800; border: 1px solid rgba(255,200,0,.3); }
.shc-major { background: rgba(0,245,255,.1); color: var(--accent); border: 1px solid rgba(0,245,255,.2); }
.shc-name { font-family: var(--ff-ui); font-size: 1.1rem; font-weight: 700; color: var(--chalk); margin-bottom: .3rem; }
.shc-sport { font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--mist); margin-bottom: .4rem; }
.shc-loc { font-size: .85rem; color: var(--mist); margin-bottom: .2rem; }
.shc-date { font-size: .85rem; color: var(--accent); margin-bottom: .4rem; }
.shc-ticket { font-size: .8rem; color: var(--chalk); opacity: .7; margin-bottom: .75rem; }
.shc-blurb { font-size: .85rem; color: var(--mist); line-height: 1.6; margin-bottom: .75rem; }
.shc-note { font-size: .8rem; color: var(--mist); border-top: 1px solid var(--edge); padding-top: .75rem; line-height: 1.5; font-style: italic; }

/* ── Trip Arc pages ── */
.route-spine { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding: 1.5rem 0; }
.rs-stop { flex: 0 0 auto; text-align: center; min-width: 120px; }
.rs-city { font-family: var(--ff-ui); font-size: .95rem; font-weight: 700; color: var(--chalk); }
.rs-country { font-size: .75rem; color: var(--mist); margin-bottom: .3rem; }
.rs-nights { font-size: .8rem; color: var(--accent); }
.rs-transit { font-size: .75rem; color: var(--mist); margin-top: .2rem; }
.rs-connector { flex: 1 1 auto; height: 2px; background: var(--edge); margin-top: 1.2rem; min-width: 30px; }

.when-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.when-card { background: var(--glass); border: 1px solid var(--edge); border-radius: 10px; padding: 1rem; }
.wc-month { font-family: var(--ff-ui); font-size: 1rem; font-weight: 700; color: var(--chalk); margin-bottom: .2rem; }
.wc-anchor { font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.wc-note { font-size: .82rem; color: var(--mist); line-height: 1.5; margin: 0; }

/* ── Arc hub cards ── */
.arcs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.arc-card { background: var(--glass); border: 1px solid var(--edge); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.arc-card-img { width: 100%; height: 200px; object-fit: cover; object-position: center center; }
.arc-card-body { padding: 1.25rem; flex: 1; }
.arc-card-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; }
.arc-card-title { font-family: var(--ff-ui); font-size: 1rem; font-weight: 700; color: var(--chalk); margin-bottom: .4rem; }
.arc-card-excerpt { font-size: .85rem; color: var(--mist); line-height: 1.6; margin-bottom: .75rem; }
.arc-card-meta { font-size: .78rem; color: var(--mist); display: flex; gap: .75rem; flex-wrap: wrap; }
.arc-card-link { display: block; margin: 0 1.25rem 1.25rem; }

/* ── Festival card photo hero ── */
.fc-has-photo { padding-top: 0; }
.fc-photo { width: 100%; height: 160px; background-size: cover; background-position: center; border-radius: 12px 12px 0 0; position: relative; overflow: hidden; }
.fc-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.5) 100%); }
.fc-photo-badges { position: absolute; top: .75rem; right: .75rem; z-index: 1; display: flex; align-items: center; gap: .4rem; }

/* ── Sports nearby badge on festival cards ── */
.fc-sports-badge { display: inline-flex; align-items: center; gap: .3rem; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: #ffc800; background: rgba(255,200,0,.12); border: 1px solid rgba(255,200,0,.3); border-radius: 4px; padding: .2rem .5rem; margin: .4rem 1rem .6rem; }
.fc-sports-badge-photo { font-size: 14px; line-height: 1; filter: drop-shadow(0 0 4px rgba(255,200,0,.8)); }
.d-nav-sports { color: #ffc800 !important; }
.d-nav-sports::before { content: ''; }

/* ── Gold glow on hover for sports-nearby festival cards ── */
.fc-has-sports::before { background: #ffc800 !important; box-shadow: 0 0 14px rgba(255,200,0,0.9) !important; }
.fc-has-sports::after { background: radial-gradient(circle, rgba(255,200,0,0.18), transparent 70%) !important; }
.fc-has-sports:hover { background: rgba(255,200,0,0.06) !important; border-color: rgba(255,200,0,0.25) !important; }

/* ── Browse page: map + legend side-by-side layout ── */
.bw-map-body { display: flex; gap: 1rem; align-items: flex-start; }
.bw-map-body .bw-map { flex: 1 1 auto; }
.bw-map-right { flex: 0 0 220px; min-width: 180px; }

/* ── Symbol legend panel ── */
.bw-legend-panel { background: rgba(255,255,255,.04); border: 1px solid var(--edge); border-radius: 12px; padding: 1rem; }
.blp-head { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.blp-section { margin-bottom: .9rem; }
.blp-section:last-child { margin-bottom: 0; }
.blp-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); margin-bottom: .4rem; }
.blp-row { display: flex; align-items: center; gap: .4rem; font-size: 11px; color: var(--mist); margin-bottom: .3rem; line-height: 1.3; }
.blp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.blp-cyan { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.blp-magenta { background: var(--magenta); box-shadow: 0 0 6px var(--magenta); }
.blp-violet { background: var(--violet); box-shadow: 0 0 6px var(--violet); }
.blp-amber { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.blp-icon { width: 14px; height: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.blp-icon svg { width: 14px; height: 14px; stroke: var(--mist); }
.blp-gold { color: #ffc800; font-size: 12px; }

@media (max-width: 700px) {
  .bw-map-body { flex-direction: column; }
  .bw-map-right { flex: none; width: 100%; }
  .bw-legend-panel { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
  .blp-head { grid-column: 1/-1; }
}

/* ── Pause / Randomize buttons ── */
.btn-pause, .btn-randomize { background: rgba(255,255,255,.06); border: 1px solid var(--edge); color: var(--chalk); border-radius: 8px; padding: .4rem .85rem; font-family: var(--ff-ui); font-size: 12px; cursor: pointer; transition: background .2s, border-color .2s; white-space: nowrap; }
.btn-pause:hover, .btn-randomize:hover { background: rgba(255,255,255,.12); border-color: var(--accent); }
.btn-pause-active { background: rgba(0,245,255,.1) !important; border-color: var(--accent) !important; color: var(--accent) !important; }
.btn-randomize { border-color: rgba(255,200,0,.4); color: #ffc800; }
.btn-randomize:hover { background: rgba(255,200,0,.1) !important; border-color: #ffc800 !important; }

/* ── Randomizer flash ── */
@keyframes randFlash { 0%,100%{box-shadow:none} 25%,75%{box-shadow:0 0 0 3px #ffc800, 0 0 30px rgba(255,200,0,.5)} }
.randomizer-flash { animation: randFlash 0.8s ease-out; }

/* ── Legend panel fix: horizontal grid layout ── */
.bw-legend-panel { background: rgba(255,255,255,.04); border: 1px solid var(--edge); border-radius: 12px; padding: 1rem 1.25rem; margin-top: .75rem; }
.blp-head { font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.blp-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.blp-section { }
.blp-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); margin-bottom: .5rem; }
.blp-row { display: flex; align-items: center; gap: .4rem; font-size: 11px; color: var(--mist); margin-bottom: .35rem; line-height: 1.3; }
.blp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.blp-icon { width: 14px; height: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.blp-icon svg { width: 14px; height: 14px; stroke: var(--mist); fill: none; }
.blp-gold { color: #ffc800; font-size: 13px; }
@media (max-width: 700px) { .blp-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .blp-cols { grid-template-columns: 1fr; } }

/* ── Team logos on sport cards (browse page) ── */
.sc-teams { display: flex; align-items: center; gap: .5rem; margin: .5rem 0 .4rem; }
.sc-team { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.sc-team-logo { width: 40px; height: 40px; object-fit: contain; }
.sc-team-abbr { font-size: 9px; letter-spacing: 1px; color: var(--mist); text-transform: uppercase; }
.sc-vs { font-size: 10px; font-weight: 700; color: var(--mist); padding: 0 .25rem; align-self: center; }
.sc-matchup-note { font-size: 10px; color: var(--mist); font-style: italic; margin-bottom: .3rem; }

/* ── Team logos on sports hub cards ── */
.shc-teams { display: flex; align-items: center; gap: .6rem; margin: .6rem 0; }
.shc-team { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.shc-team-logo { width: 48px; height: 48px; object-fit: contain; }
.shc-team-name { font-size: 9px; letter-spacing: 1px; color: var(--mist); text-transform: uppercase; }
.shc-vs { font-size: 11px; font-weight: 700; color: var(--mist); padding: 0 .3rem; align-self: center; padding-bottom: 14px; }
.shc-matchup-note { font-size: 10px; color: var(--mist); font-style: italic; margin-bottom: .4rem; }

/* ── .chip buttons (sports hub): match .ftab sizing exactly ── */
.chip {
  font-family: var(--ff-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border: 1px solid var(--border-soft); background: transparent; color: var(--mist);
  cursor: pointer; border-radius: 2px; transition: all 0.2s;
}
.chip:hover { border-color: #ffc800; color: #ffc800; background: rgba(255,200,0,.08); }
.chip.active { border-color: #ffc800; color: #ffc800; background: rgba(255,200,0,.12); box-shadow: 0 0 15px rgba(255,200,0,.25); }

/* ── Sports & Events genre chip: pulsing gold ── */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(255,200,0,.4), 0 0 0 0 rgba(255,200,0,.3); }
  50% { box-shadow: 0 0 14px rgba(255,200,0,.7), 0 0 0 4px rgba(255,200,0,.1); }
}
.ftab[data-val="Sports & Events"] {
  border-color: rgba(255,200,0,.5);
  color: #ffc800;
  animation: goldPulse 2s ease-in-out infinite;
}
.ftab[data-val="Sports & Events"]:hover,
.ftab[data-val="Sports & Events"].active {
  background: rgba(255,200,0,.12);
  border-color: #ffc800;
  box-shadow: 0 0 20px rgba(255,200,0,.5);
  animation: goldPulse 1s ease-in-out infinite;
}

/* ── Psycho-style gold pulse on sports-nearby festival cards ── */
@keyframes sportsPsychoGold {
  0%   { box-shadow: 0 0 0 0 rgba(255,200,0,0); border-color: rgba(255,200,0,.3); }
  20%  { box-shadow: 0 0 18px 4px rgba(255,200,0,.6), 0 0 40px 8px rgba(255,200,0,.2); border-color: #ffc800; }
  40%  { box-shadow: 0 0 4px 1px rgba(255,200,0,.2); border-color: rgba(255,200,0,.4); }
  60%  { box-shadow: 0 0 22px 6px rgba(255,200,0,.7), 0 0 50px 10px rgba(255,200,0,.25); border-color: #ffc800; }
  80%  { box-shadow: 0 0 6px 2px rgba(255,200,0,.15); border-color: rgba(255,200,0,.3); }
  100% { box-shadow: 0 0 0 0 rgba(255,200,0,0); border-color: rgba(255,200,0,.3); }
}
.fc-has-sports {
  border: 1px solid rgba(255,200,0,.3);
  animation: sportsPsychoGold 2.4s ease-in-out infinite;
}
.fc-has-sports:hover {
  animation: sportsPsychoGold .9s ease-in-out infinite;
  background: rgba(255,200,0,.06) !important;
}

/* ── BLOG ── */
.blog-index-hero { background: var(--void); border-bottom: 1px solid var(--border-neon); padding: 3.5rem 0 3rem; }
.blog-index-title { font-family: var(--ff-rave); font-size: clamp(32px, 5vw, 58px); letter-spacing: 1px; color: var(--snow); margin: 0.6rem 0 0.9rem; }
.blog-index-sub { font-size: 18px; color: rgba(240,239,255,0.65); font-weight: 300; max-width: 60ch; line-height: 1.65; margin: 0; }
.blog-main { padding: 3rem 0 5rem; }
.blog-section { margin-bottom: 3.5rem; }
.blog-section-head { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-soft); padding-bottom: 1rem; }
.blog-section-head h2 { font-family: var(--ff-rave); font-size: clamp(18px, 2.5vw, 26px); letter-spacing: 0.8px; color: var(--snow); margin: 0 0 0.35rem; }
.blog-section-head p { font-size: 14px; color: var(--mist); font-weight: 300; margin: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card { background: var(--surface); border: 1px solid var(--border-neon); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.25s, box-shadow 0.25s; }
.blog-card:hover { border-color: var(--cyan); box-shadow: 0 0 22px rgba(0,245,255,0.12); }
.blog-card--featured { grid-column: 1 / -1; flex-direction: row; min-height: 320px; }
.blog-card-img { display: block; background-size: cover; background-position: center; position: relative; text-decoration: none; flex-shrink: 0; }
.blog-card--featured .blog-card-img { width: 55%; }
.blog-card:not(.blog-card--featured) .blog-card-img { height: 200px; }
.blog-card-cat { position: absolute; top: 1rem; left: 1rem; font-family: var(--ff-ui); font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; background: rgba(3,2,10,0.72); padding: 4px 10px; border-radius: 2px; }
.blog-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.blog-card-meta { font-size: 11.5px; color: rgba(240,239,255,0.45); display: flex; align-items: center; gap: 0.45rem; }
.blog-card-title { font-family: var(--ff-ui); font-size: 19px; font-weight: 600; color: var(--snow); line-height: 1.3; margin: 0; }
.blog-card--featured .blog-card-title { font-size: 26px; }
.blog-card-title a { text-decoration: none; color: inherit; transition: color 0.2s; }
.blog-card-title a:hover { color: var(--cyan); }
.blog-card-desc { font-size: 13.5px; color: rgba(240,239,255,0.62); line-height: 1.65; font-weight: 300; flex: 1; margin: 0; }
.blog-read-more { font-family: var(--ff-ui); font-size: 12px; letter-spacing: 0.5px; color: var(--cyan); text-decoration: none; margin-top: auto; padding-top: 0.5rem; }
.blog-read-more:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 860px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { flex-direction: column; }
  .blog-card--featured .blog-card-img { width: 100%; height: 240px; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}
