/* ===== PREY — Chicago's Furry Rave ===== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #050505;
  --surface:   #0c0c0c;
  --card:      #121212;
  /* Brand palette — kept in sync with the live visualizer (desktop/dist/
     index.html) and the phone remote so the marketing site, the in-club
     screens, and the show all read as one identity. Update both surfaces
     together if these change. */
  --neon-green:#39ff14;
  --neon-pink: #ff2d7b;
  --neon-blue: #00d4ff;
  --neon-purple:#b44dff;
  --neon-yellow:#ffe600;
  --neon-red:  #ff3b3b;
  --text:      #e0e0e0;
  --text-muted:#666;
  --radius:    12px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

/* ---------- Custom Cursor ----------
   Positioned via transform: translate(x,y,0) (GPU-only, no layout
   thrash) instead of left/top updates. left/top would invalidate
   layout on every mousemove + every animation frame, and combined
   with mix-blend-mode on 14 cursor elements (was 12 trail + dot +
   ring) made the cursor itself the dominant per-frame cost on
   capable hardware. mix-blend-mode kept only on the small dot;
   trails are now plain opaque circles. */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  box-shadow: 0 0 12px var(--neon-green), 0 0 30px var(--neon-green);
  mix-blend-mode: screen;
  will-change: transform;
  transform: translate3d(-100px, -100px, 0);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border: 2px solid rgba(57,255,20,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transition: width 0.3s, height 0.3s, border-color 0.3s, margin 0.3s;
  will-change: transform;
  transform: translate3d(-100px, -100px, 0);
}
.cursor-ring.hovering {
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255,41,117,0.3);
}

/* ---------- Cursor Trail ---------- */
.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-100px, -100px, 0);
}

/* ---------- Utility ---------- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.neon-green  { color: var(--neon-green); text-shadow: 0 0 10px rgba(57,255,20,0.5); }
.neon-pink   { color: var(--neon-pink); text-shadow: 0 0 10px rgba(255,41,117,0.5); }
.neon-blue   { color: var(--neon-blue); text-shadow: 0 0 10px rgba(0,240,255,0.5); }
.neon-purple { color: var(--neon-purple); text-shadow: 0 0 10px rgba(176,38,255,0.5); }

/* ---------- Animated Background ---------- */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Laser Beams ---------- */
.laser-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.laser {
  position: absolute;
  width: 2px;
  height: 120vh;
  top: -10vh;
  opacity: 0.08;
  animation: laserSweep 8s ease-in-out infinite;
  transform-origin: top center;
}
.laser:nth-child(1) {
  left: 15%;
  background: linear-gradient(180deg, transparent, var(--neon-green), transparent);
  animation-delay: 0s;
  animation-duration: 7s;
}
.laser:nth-child(2) {
  left: 40%;
  background: linear-gradient(180deg, transparent, var(--neon-pink), transparent);
  animation-delay: -2s;
  animation-duration: 9s;
}
.laser:nth-child(3) {
  left: 65%;
  background: linear-gradient(180deg, transparent, var(--neon-blue), transparent);
  animation-delay: -4s;
  animation-duration: 6s;
}
.laser:nth-child(4) {
  left: 85%;
  background: linear-gradient(180deg, transparent, var(--neon-purple), transparent);
  animation-delay: -1s;
  animation-duration: 10s;
}
@keyframes laserSweep {
  0%   { transform: rotate(-20deg); opacity: 0.04; }
  25%  { opacity: 0.12; }
  50%  { transform: rotate(20deg); opacity: 0.06; }
  75%  { opacity: 0.15; }
  100% { transform: rotate(-20deg); opacity: 0.04; }
}

/* ---------- Scanline Overlay ---------- */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.03) 0px,
    rgba(0,0,0,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
}

/* ---------- Top ticket-sales strip (home page) ----------
   A red info strip with a live countdown, fixed directly BELOW the
   navbar. Its `top` is set from JS (placeTicketBanner) by measuring
   the navbar height, and the JS also pads the home hero. Only the home
   page carries it; other pages are untouched. Not a link — the tickets
   page has its own buy buttons. */
.ticket-banner {
  position: fixed;
  /* 3.6rem ≈ navbar height — a sane fallback; JS sets the exact top. */
  top: 3.6rem; left: 0; right: 0;
  z-index: 999;                        /* below the navbar (1000) */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.55rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, #b3121f, #e01e2d 50%, #b3121f);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.35);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.ticket-banner-label { color: rgba(255,255,255,0.95); }
.ticket-banner-label--dim { color: rgba(255,255,255,0.7); }
.ticket-banner-sep { color: rgba(255,255,255,0.5); }
.ticket-banner-clock {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 10px rgba(0,0,0,0.45);
}
/* After the deadline the .countdown handler adds .countdown-done and
   swaps in the closed message — calm the strip down to a neutral dark. */
.ticket-banner.countdown-done {
  background: rgba(15,15,15,0.97);
  border-bottom: 1px solid rgba(224,30,45,0.4);
}
.ticket-banner .countdown-expired { color: #fff; }
@media (max-width: 600px) {
  .ticket-banner { font-size: 0.72rem; padding: 0.45rem 0.8rem; }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(5,5,5,0.88);
  border-bottom: 1px solid rgba(57,255,20,0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(5,5,5,0.95);
  box-shadow: 0 4px 30px rgba(57,255,20,0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: var(--neon-green);
  text-transform: uppercase;
  position: relative;
  text-shadow: 0 0 10px rgba(57,255,20,0.5), 0 0 30px rgba(57,255,20,0.2);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(57,255,20,0.5), 0 0 30px rgba(57,255,20,0.2); }
  50%      { text-shadow: 0 0 20px rgba(57,255,20,0.8), 0 0 50px rgba(57,255,20,0.4); }
}
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green), 0 0 20px var(--neon-green);
  animation: logoLineFlicker 4s infinite;
}
@keyframes logoLineFlicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.3; }
  97% { opacity: 1; }
  98% { opacity: 0.5; }
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--neon-pink);
  box-shadow: 0 0 6px var(--neon-pink), 0 0 15px var(--neon-pink);
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.3); }
.nav-links a.nav-apply-btn:hover,
.nav-links a.nav-dealer-btn:hover,
.nav-links a.nav-staff-btn:hover,
.nav-links a.nav-tickets-btn:hover { text-shadow: none; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger (mobile) */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; z-index: 1001; }
.hamburger span {
  width: 28px; height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 6px var(--neon-green);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 2rem;
  z-index: 3;
  overflow: hidden;
}

/* Full-screen hero only on the homepage */
.hero.hero-home {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 7rem;
  padding-bottom: 2rem;
  justify-content: center;
  gap: 0.4rem;
  box-sizing: border-box;
}

/* ---- Background Video ---- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: videoFadeIn 3s ease-out 0.3s forwards;
  filter: brightness(0.45) saturate(1.3);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: opacity, transform;
}
@keyframes videoFadeIn {
  0%   { opacity: 0; filter: brightness(0) saturate(1.3); }
  40%  { opacity: 0.5; filter: brightness(0.25) saturate(1.3); }
  100% { opacity: 1; filter: brightness(0.45) saturate(1.3); }
}

/* Glitch-out: chromatic split + flicker, mirrors the PREY title glitch */
/* hue-rotate dropped from these keyframes — it forces a per-pixel color
   matrix on every animation frame on top of an already-filtered video,
   which spiked GPU/compositor cost during the glitch. brightness +
   saturate + transform still carry the chromatic-glitch feel. */
@keyframes videoGlitchOut {
  0%   { opacity: 1; filter: brightness(0.45) saturate(1.3); transform: translate(0); }
  10%  { opacity: 1; filter: brightness(0.8) saturate(2); transform: translate(-3px, 1px); }
  20%  { opacity: 0.7; filter: brightness(1.2) saturate(2.5); transform: translate(4px, -2px); }
  30%  { opacity: 1; filter: brightness(0.3) saturate(1.5); transform: translate(-2px, 0); }
  40%  { opacity: 0.4; filter: brightness(1.5) saturate(3); transform: translate(3px, 2px); }
  55%  { opacity: 0.8; filter: brightness(0.6) saturate(1); transform: translate(-1px, -1px); }
  70%  { opacity: 0.2; filter: brightness(0.1) saturate(0.5); transform: translate(2px, 1px); }
  85%  { opacity: 0.1; filter: brightness(0.05) saturate(0.3); transform: translate(0); }
  100% { opacity: 0; filter: brightness(0) saturate(0); transform: translate(0); }
}

/* Glitch-in: reverse chromatic burst */
@keyframes videoGlitchIn {
  0%   { opacity: 0; filter: brightness(0) saturate(0); transform: translate(0); }
  10%  { opacity: 0.1; filter: brightness(0.05) saturate(0.3); transform: translate(0); }
  20%  { opacity: 0.3; filter: brightness(1.4) saturate(3); transform: translate(-4px, 2px); }
  35%  { opacity: 0.6; filter: brightness(0.2) saturate(1); transform: translate(3px, -1px); }
  50%  { opacity: 0.9; filter: brightness(1.2) saturate(2.5); transform: translate(-2px, -2px); }
  65%  { opacity: 0.5; filter: brightness(0.8) saturate(2); transform: translate(2px, 1px); }
  80%  { opacity: 1; filter: brightness(0.6) saturate(1.5); transform: translate(-1px, 0); }
  100% { opacity: 1; filter: brightness(0.45) saturate(1.3); transform: translate(0); }
}

.hero-video.glitch-out {
  animation: videoGlitchOut 0.8s ease-in forwards;
}
.hero-video.glitch-in {
  animation: videoGlitchIn 0.8s ease-out forwards;
}

/* Dark gradient overlay — neon-tinted vignette on top of video */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(5,5,5,0.55) 70%),
    linear-gradient(180deg, rgba(5,5,5,0.3) 0%, transparent 30%, transparent 60%, var(--bg) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(57,255,20,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,41,117,0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  animation: overlayFadeIn 3s ease-out 0.3s forwards;
}
@keyframes overlayFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(57,255,20,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,41,117,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0,240,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(176,38,255,0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Animated gradient ring behind title */
.hero::after {
  content: '';
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  background: conic-gradient(
    var(--neon-green),
    var(--neon-blue),
    var(--neon-purple),
    var(--neon-pink),
    var(--neon-green)
  );
  opacity: 0.06;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: heroRingSpin 12s linear infinite;
}
@keyframes heroRingSpin { 100% { transform: rotate(360deg); } }

.hero-title-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-character {
  height: clamp(5rem, 15vw, 14rem);
  width: auto;
  display: block;
  flex-shrink: 0;
  align-self: center;
  transform: translateY(-8%);
}

.hero-character-right {
  transform: scaleX(-1) translateY(-8%);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  letter-spacing: 0.15em;
  margin-right: -0.15em;
  text-transform: uppercase;
  line-height: 0.9;
  color: #fff;
  text-shadow:
    0 0 20px var(--neon-green),
    0 0 60px rgba(57,255,20,0.5),
    0 0 120px rgba(57,255,20,0.2),
    0 0 200px rgba(57,255,20,0.1);
  animation: glitch 3s infinite, titlePulse 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes glitch {
  0%, 87%, 100% {
    text-shadow: 0 0 20px var(--neon-green), 0 0 60px rgba(57,255,20,0.5), 0 0 120px rgba(57,255,20,0.2);
    transform: translate(0);
  }
  88% { text-shadow: -4px 0 var(--neon-pink), 4px 0 var(--neon-blue); transform: translate(-2px, 1px); }
  90% { text-shadow: 4px 0 var(--neon-pink), -4px 0 var(--neon-blue); transform: translate(2px, -1px); }
  92% { text-shadow: 0 0 20px var(--neon-green), 0 0 60px rgba(57,255,20,0.5); transform: translate(0); }
  94% { text-shadow: -3px 0 var(--neon-blue), 3px 0 var(--neon-pink); transform: translate(1px, 2px); }
  95% { text-shadow: 3px 0 var(--neon-purple), -3px 0 var(--neon-green); transform: translate(-1px, -1px); }
  96% { text-shadow: 0 0 20px var(--neon-green), 0 0 60px rgba(57,255,20,0.5); transform: translate(0); }
}

@keyframes titlePulse {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.15); }
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: #fff;
  margin-top: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
@keyframes blinker {
  50% { opacity: 0; }
}

.hero-date {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: var(--neon-pink);
  text-shadow: 0 0 15px rgba(255,41,117,0.6), 0 0 40px rgba(255,41,117,0.2);
  letter-spacing: 0.08em;
  animation: datePulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes datePulse {
  0%, 100% { text-shadow: 0 0 15px rgba(255,41,117,0.6); }
  50%      { text-shadow: 0 0 25px rgba(255,41,117,0.9), 0 0 50px rgba(255,41,117,0.3); }
}

.hero-cta {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 1rem 3.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-green), #00ff88);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow:
    0 0 25px rgba(57,255,20,0.5),
    0 0 60px rgba(57,255,20,0.25),
    0 0 120px rgba(57,255,20,0.1),
    inset 0 0 20px rgba(255,255,255,0.15);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(57,255,20,0.5), 0 0 60px rgba(57,255,20,0.25), 0 0 120px rgba(57,255,20,0.1); transform: scale(1); }
  50% { box-shadow: 0 0 40px rgba(57,255,20,0.7), 0 0 80px rgba(57,255,20,0.35), 0 0 150px rgba(57,255,20,0.15); transform: scale(1.03); }
}
.hero-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 50px rgba(57,255,20,0.7), 0 0 100px rgba(57,255,20,0.3);
}
.hero-cta::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { 100% { transform: translateX(100%); } }

/* Good boy overlay */
.goodboy-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.goodboy-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.goodboy-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--neon-green);
  text-shadow:
    0 0 20px var(--neon-green),
    0 0 60px rgba(57,255,20,0.6),
    0 0 120px rgba(57,255,20,0.3);
  letter-spacing: 0.1em;
  animation: goodboyPulse 0.6s ease-in-out infinite alternate;
}
@keyframes goodboyPulse {
  0%   { text-shadow: 0 0 20px var(--neon-green), 0 0 60px rgba(57,255,20,0.6); transform: scale(1); }
  100% { text-shadow: 0 0 40px var(--neon-green), 0 0 100px rgba(57,255,20,0.8); transform: scale(1.05); }
}

/* ---------- Countdown Timer ---------- */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 2;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
  padding: 0.6rem 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(57,255,20,0.5), 0 0 30px rgba(57,255,20,0.2);
}
.countdown-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.3rem;
  opacity: 0.6;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--neon-green);
  text-shadow: 0 0 8px rgba(57,255,20,0.6);
  animation: sepBlink 1s step-end infinite;
  line-height: 1;
  margin: 0 0.15rem;
  padding-top: 0.15rem;
}
@keyframes sepBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ---------- Hero Perks Row ---------- */
.hero-perks-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  position: relative;
  z-index: 2;
}
.hero-perk-chip {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.6vw, 0.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(255,230,0,0.08);
  border: 1px solid rgba(255,230,0,0.25);
  color: var(--neon-yellow);
  text-shadow: 0 0 8px rgba(255,230,0,0.4);
}
.hero-perk-chip--hot {
  background: rgba(255,41,117,0.14);
  border-color: rgba(255,41,117,0.5);
  color: #fff;
  text-shadow: 0 0 8px rgba(255,41,117,0.6);
  box-shadow: 0 0 14px rgba(255,41,117,0.18);
}
/* 21+ age chip — informational, blue accent so it reads as a
   requirement (not hype). The age policy was previously buried
   inside the tickets-page rules modal only. */
.hero-perk-chip--age {
  background: rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.5);
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0,212,255,0.45);
}

/* Legacy perk styles (kept for other pages) */
.hero-perk {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-yellow);
  text-shadow: 0 0 12px rgba(255,230,0,0.5), 0 0 30px rgba(255,230,0,0.2);
  position: relative;
  z-index: 2;
}
.hero-perk.hero-perk-drinks {
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  color: #fff;
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  font-weight: 700;
  background: linear-gradient(90deg,
    rgba(255,41,117,0.15),
    rgba(255,200,0,0.15),
    rgba(255,41,117,0.15));
  background-size: 200% 100%;
  border: 1px solid;
  border-image: linear-gradient(90deg, var(--neon-pink), #ffcc00, var(--neon-pink)) 1;
  text-shadow: 0 0 10px rgba(255,41,117,0.8), 0 0 20px rgba(255,200,0,0.4);
  box-shadow: 0 0 15px rgba(255,41,117,0.3), 0 0 40px rgba(255,41,117,0.15);
  animation: supplyPulse 3s ease-in-out infinite, supplyColorShift 4s ease-in-out infinite, supplyBgShift 4s ease-in-out infinite;
  display: inline-block;
}

/* Scroll indicator */
.scroll-indicator {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.scroll-indicator .chevron {
  width: 24px; height: 24px;
  border-right: 2px solid var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(57,255,20,0.2);
}
@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0.5; }
}

/* ---------- Info Cards (Home) ---------- */
.info-section { padding: 6rem 0; position: relative; z-index: 3; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.info-card {
  display: block;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  perspective: 800px;
}
.info-card:hover {
  border-color: rgba(57,255,20,0.3);
  box-shadow:
    0 20px 60px rgba(57,255,20,0.1),
    inset 0 0 30px rgba(57,255,20,0.03);
}
.info-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.1); }
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: #fff;
}
.info-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Animated gradient border on hover */
.info-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(
    var(--neon-green),
    var(--neon-blue),
    var(--neon-purple),
    var(--neon-pink),
    var(--neon-green)
  );
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s;
  animation: borderSpin 3s linear infinite;
}
.info-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: var(--card);
  z-index: -1;
}
.info-card:hover::before { opacity: 1; }

@keyframes borderSpin {
  100% { transform: rotate(360deg); }
}

/* ---------- About / Manifesto ---------- */
.about-section {
  padding: 6rem 0;
  position: relative;
  z-index: 3;
}
.about-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-divider {
  width: 120px;
  height: 3px;
  margin: 3rem auto;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-pink), var(--neon-blue));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(57,255,20,0.3), 0 0 20px rgba(255,41,117,0.2);
  animation: dividerPulse 3s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { width: 120px; opacity: 1; }
  50%      { width: 180px; opacity: 0.7; }
}

/* ---------- Staff Page ---------- */
.staff-section { padding: 6rem 0; position: relative; z-index: 3; }

.staff-category {
  margin-bottom: 4rem;
}
.staff-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.staff-category-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.staff-category:nth-child(1) .staff-category-title { color: #ff8c00; text-shadow: 0 0 15px rgba(255,140,0,0.5); }
.staff-category:nth-child(1) .staff-category-title::after { background: #ff8c00; box-shadow: 0 0 12px #ff8c00; }
.staff-category:nth-child(2) .staff-category-title { color: #39ff14; text-shadow: 0 0 15px rgba(57,255,20,0.5); }
.staff-category:nth-child(2) .staff-category-title::after { background: #39ff14; box-shadow: 0 0 12px #39ff14; }
.staff-category:nth-child(3) .staff-category-title { color: var(--neon-blue); text-shadow: 0 0 15px rgba(0,240,255,0.5); }
.staff-category:nth-child(3) .staff-category-title::after { background: var(--neon-blue); box-shadow: 0 0 12px var(--neon-blue); }

/* ===== DJ TIMESLOTS ===== */
.staff-timeslot {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0,240,255,0.4);
  margin-top: 0.3rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 20px;
  background: rgba(0,240,255,0.06);
  display: inline-block;
}

body.light-mode .staff-timeslot { color: #0077cc; text-shadow: none; border-color: rgba(0,119,204,0.3); background: rgba(0,119,204,0.06); }

/* ===== DJ TIMELINE ===== */
.dj-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  overflow: visible;
}

/* Vertical glowing line */
.dj-timeline::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(57,255,20,0.6),
    rgba(102,204,255,0.6) 15%,
    rgba(176,38,255,0.6) 30%,
    rgba(255,45,123,0.6) 45%,
    rgba(0,212,255,0.6) 60%,
    rgba(255,107,107,0.6) 75%,
    rgba(255,215,0,0.6) 88%,
    rgba(57,255,20,0.6)
  );
  box-shadow: 0 0 12px rgba(176,38,255,0.2), 0 0 30px rgba(57,255,20,0.1);
  border-radius: 2px;
  z-index: 0;
}

/* Each DJ slot row */
.dj-slot {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  position: relative;
}

/* Time label */
.dj-slot-time {
  width: 120px;
  text-align: right;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #555;
  flex-shrink: 0;
  white-space: nowrap;
  transition: color 0.3s;
}
.dj-slot:hover .dj-slot-time { color: #888; }

/* Glowing dot on the line */
.dj-slot-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dj-slot:hover .dj-slot-dot { transform: scale(1.4); }

.dj-slot:nth-child(1) .dj-slot-dot { background: #39ff14; box-shadow: 0 0 12px #39ff14, 0 0 25px rgba(57,255,20,0.3); }
.dj-slot:nth-child(2) .dj-slot-dot { background: #66ccff; box-shadow: 0 0 12px #66ccff, 0 0 25px rgba(102,204,255,0.3); }
.dj-slot:nth-child(3) .dj-slot-dot { background: #b44dff; box-shadow: 0 0 12px #b44dff, 0 0 25px rgba(180,77,255,0.3); }
.dj-slot:nth-child(4) .dj-slot-dot { background: #ff2d7b; box-shadow: 0 0 12px #ff2d7b, 0 0 25px rgba(255,45,123,0.3); }
.dj-slot:nth-child(5) .dj-slot-dot { background: #00d4ff; box-shadow: 0 0 12px #00d4ff, 0 0 25px rgba(0,212,255,0.3); }
.dj-slot:nth-child(6) .dj-slot-dot { background: #ff6b6b; box-shadow: 0 0 12px #ff6b6b, 0 0 25px rgba(255,107,107,0.3); }
.dj-slot:nth-child(7) .dj-slot-dot { background: #ffd700; box-shadow: 0 0 12px #ffd700, 0 0 25px rgba(255,215,0,0.3); }
.dj-slot:nth-child(8) .dj-slot-dot { background: #39ff14; box-shadow: 0 0 12px #39ff14, 0 0 25px rgba(57,255,20,0.3); }

/* DJ card next to timeline */
.dj-slot-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(18,18,18,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
  flex: 1;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: none;
}
.dj-slot-card:hover {
  transform: translateX(6px);
  box-shadow: 0 0 30px rgba(57,255,20,0.06);
}
.dj-slot:nth-child(1) .dj-slot-card:hover { border-color: rgba(57,255,20,0.3); }
.dj-slot:nth-child(2) .dj-slot-card:hover { border-color: rgba(102,204,255,0.3); }
.dj-slot:nth-child(3) .dj-slot-card:hover { border-color: rgba(180,77,255,0.3); }
.dj-slot:nth-child(4) .dj-slot-card:hover { border-color: rgba(255,45,123,0.3); }
.dj-slot:nth-child(5) .dj-slot-card:hover { border-color: rgba(0,212,255,0.3); }
.dj-slot:nth-child(6) .dj-slot-card:hover { border-color: rgba(255,107,107,0.3); }
.dj-slot:nth-child(7) .dj-slot-card:hover { border-color: rgba(255,215,0,0.3); }
.dj-slot:nth-child(8) .dj-slot-card:hover { border-color: rgba(57,255,20,0.3); }

.dj-slot-photo {
  width: 65px;
  height: 65px;
  min-width: 65px;
  max-width: 65px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s, transform 0.3s;
  display: inline-block;
}
.dj-slot:hover .dj-slot-photo { transform: scale(1.05); }
.dj-slot:nth-child(1) .dj-slot-photo { border-color: rgba(57,255,20,0.3); }
.dj-slot:nth-child(2) .dj-slot-photo { border-color: rgba(102,204,255,0.3); }
.dj-slot:nth-child(3) .dj-slot-photo { border-color: rgba(180,77,255,0.3); }
.dj-slot:nth-child(4) .dj-slot-photo { border-color: rgba(255,45,123,0.3); }
.dj-slot:nth-child(5) .dj-slot-photo { border-color: rgba(0,212,255,0.3); }
.dj-slot:nth-child(6) .dj-slot-photo { border-color: rgba(255,107,107,0.3); }
.dj-slot:nth-child(7) .dj-slot-photo { border-color: rgba(255,215,0,0.3); }
.dj-slot:nth-child(8) .dj-slot-photo { border-color: rgba(57,255,20,0.3); }

.dj-slot-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.1;
}
.dj-slot-role {
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dj-slot-timeslot {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0,240,255,0.4);
  margin-top: 0.2rem;
  padding: 0.15rem 0.6rem;
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 20px;
  background: rgba(0,240,255,0.06);
  display: inline-block;
}
body.light-mode .dj-slot-timeslot { color: #0077cc; text-shadow: none; border-color: rgba(0,119,204,0.3); background: rgba(0,119,204,0.06); }

/* Light mode overrides */
body.light-mode .dj-timeline::before {
  opacity: 0.5;
}
body.light-mode .dj-slot-time { color: #999; }
body.light-mode .dj-slot:hover .dj-slot-time { color: #666; }
body.light-mode .dj-slot-card {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.08);
}
body.light-mode .dj-slot-name { color: #222; }
body.light-mode .dj-slot-role { color: #888; }

/* Timeline mobile responsive */
@media (max-width: 600px) {
  .dj-timeline::before { left: 18px; }
  .dj-slot-time {
    width: auto;
    font-size: 0.95rem;
    position: absolute;
    top: 0.4rem;
    left: 38px;
    text-align: left;
    color: #555;
  }
  .dj-slot {
    padding-left: 0;
    flex-wrap: wrap;
    padding-top: 2rem;
    gap: 0.6rem;
  }
  .dj-slot-dot {
    position: absolute;
    left: 12px;
    top: 2.4rem;
  }
  .dj-slot-card {
    margin-left: 38px;
    width: calc(100% - 38px);
  }
  .dj-slot-photo { width: 50px; height: 50px; }
  .dj-slot-name { font-size: 1.3rem; }
}

.staff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.staff-card {
  width: 100%;
  max-width: 240px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s, border-color 0.4s;
  cursor: none;
  position: relative;
}
.staff-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Animated glow border on hover */
.staff-category:nth-child(1) .staff-card:hover {
  border-color: rgba(57,255,20,0.5);
  box-shadow: 0 20px 60px rgba(57,255,20,0.15), 0 0 30px rgba(57,255,20,0.08);
}
.staff-category:nth-child(2) .staff-card:hover {
  border-color: rgba(255,41,117,0.5);
  box-shadow: 0 20px 60px rgba(255,41,117,0.15), 0 0 30px rgba(255,41,117,0.08);
}
.staff-category:nth-child(3) .staff-card:hover {
  border-color: rgba(0,240,255,0.5);
  box-shadow: 0 20px 60px rgba(0,240,255,0.15), 0 0 30px rgba(0,240,255,0.08);
}

.staff-card .staff-img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.staff-card .staff-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
}
.staff-card:hover .staff-img-wrapper img {
  transform: scale(1.12);
  filter: brightness(1.1) saturate(1.2);
}


.staff-card .staff-info {
  padding: 1rem;
  text-align: center;
}
.staff-card .staff-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.staff-card .staff-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}


/* ---------- Tickets Page ---------- */
.tickets-section { padding: 6rem 0; position: relative; z-index: 3; }

.tickets-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.tickets-hero p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}
.tickets-age-line {
  font-size: 0.92rem !important;
  color: rgba(224,224,224,0.72) !important;
  margin-top: 0.85rem !important;
}
.tickets-age-line strong { color: var(--neon-pink); }
.tickets-age-line a { color: var(--neon-blue); white-space: nowrap; }

.ticket-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.ticket-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s, box-shadow 0.4s;
}
/* No transform on hover -- the cards shifting up + scaling made the
   button a moving target. Hover state is now just the per-tier
   glow (rules below) so the cards stay put. */

.ticket-card.tier-ga { border-top: 3px solid var(--neon-green); }
.ticket-card.tier-ga:hover { box-shadow: 0 16px 50px rgba(57,255,20,0.15), 0 0 25px rgba(57,255,20,0.08); }
.ticket-card.tier-vip { border-top: 3px solid var(--neon-pink); }
.ticket-card.tier-vip:hover { box-shadow: 0 16px 50px rgba(255,41,117,0.15), 0 0 25px rgba(255,41,117,0.08); }

.ticket-card .tier-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.ticket-card .tier-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255,255,255,0.15);
  animation: pricePulse 3s ease-in-out infinite;
}
@keyframes pricePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.ticket-card .tier-features {
  list-style: none;
  margin-bottom: 2rem;
}
.ticket-card .tier-features li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ticket-card .tier-features li:last-child { border: none; }

.btn-ticket {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  border-radius: var(--radius);
  background: transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
/* Inside a ticket-card, the CTA spans the full card width so all
   three cards (GA / Entry+Drinks / Merch) line up identically. The
   card itself becomes a flex column so the button can pin to the
   bottom regardless of how much content each card has above it. */
.ticket-card {
  display: flex;
  flex-direction: column;
}
.ticket-card .btn-ticket {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  text-align: center;
}
.btn-ticket::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-green);
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn-ticket:hover {
  color: #000;
  box-shadow: 0 0 25px rgba(57,255,20,0.4);
}
.btn-ticket:hover::before { transform: translateY(0); }

/* Limited Supply Badge — a clean static pill. Was three concurrent
   colour-cycling animations (supplyPulse/ColorShift/BgShift) that read
   as flashing-ad spam rather than credible scarcity. */
.limited-supply-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 1.25rem;
  padding: 0.45rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(255,41,117,0.16);
  border: 1px solid rgba(255,41,117,0.55);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(255,41,117,0.18);
}

/* ===== Sold-out tier (Entry + Drinks ran out) =====
   Stacked signals so the state is impossible to miss:
   1) Card dim + desaturate
   2) Diagonal "SOLD OUT" cancellation stamp across the card centre
   3) Strikethrough on the price ($35)
   4) Bottom action styled as a RED notice (border + text), not a button
   Card stays visible to preserve perks as social proof and to reassure
   buyers who already hold one. */
.ticket-card.tier-sold-out {
  position: relative;
  /* No opacity/saturate fade here: it desaturated the card's "Sold Out"
     button so it didn't match the other card's. The diagonal SOLD OUT
     stamp + struck-through price below are the sold-out signal. */
}
.ticket-card.tier-sold-out:hover {
  box-shadow: none;
  transform: none;
}

/* Diagonal cancellation stamp across the card centre.
   max-width keeps the rotated banner CONTAINED inside the card so it
   doesn't bleed past the card edges (its rotated bounding box stays well
   inside the 1px card border). */
.ticket-card.tier-sold-out::after {
  content: 'SOLD OUT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  max-width: 82%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(255,41,117,0.92);
  padding: 0.4rem 1.2rem;
  border-top: 3px solid rgba(255,255,255,0.55);
  border-bottom: 3px solid rgba(255,255,255,0.55);
  border-radius: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  box-shadow: 0 10px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,0,0,0.45);
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
}

/* Strike through the price so the dollar value is visibly cancelled. */
.ticket-card.tier-sold-out .tier-price {
  text-decoration: line-through;
  text-decoration-color: rgba(255,41,117,0.85);
  text-decoration-thickness: 3px;
  opacity: 0.7;
}

/* Bottom action for a sold-out tier: visually the SAME button as .btn-ticket
   (same neon-green colour and rounded corners) so all three card buy areas
   match, but non-interactive -- no slide-up hover fill, not clickable. */
.btn-ticket.btn-ticket-disabled {
  display: inline-block;
  background: transparent !important;
  color: var(--neon-red) !important;
  border: 2px solid var(--neon-red);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2.5rem;
  pointer-events: none;
  cursor: default;
  box-shadow: none !important;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
}
.btn-ticket.btn-ticket-disabled::before { display: none; }
.btn-ticket.btn-ticket-disabled:hover { background: transparent !important; }
@keyframes supplyPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255,41,117,0.3), 0 0 40px rgba(255,41,117,0.15); }
  33%      { box-shadow: 0 0 25px rgba(255,200,0,0.5), 0 0 60px rgba(255,200,0,0.2); }
  66%      { box-shadow: 0 0 30px rgba(255,41,117,0.6), 0 0 70px rgba(255,41,117,0.25); }
}
@keyframes supplyColorShift {
  0%, 100% {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,41,117,0.8), 0 0 20px rgba(255,41,117,0.4);
    border-image: linear-gradient(90deg, var(--neon-pink), #ffcc00, var(--neon-pink)) 1;
  }
  25% {
    color: #ffcc00;
    text-shadow: 0 0 12px rgba(255,200,0,0.9), 0 0 25px rgba(255,200,0,0.5);
    border-image: linear-gradient(90deg, #ffcc00, var(--neon-pink), #ffcc00) 1;
  }
  50% {
    color: #fff;
    text-shadow: 0 0 14px rgba(255,100,50,0.9), 0 0 30px rgba(255,100,50,0.5);
    border-image: linear-gradient(90deg, #ff6432, #ffcc00, #ff6432) 1;
  }
  75% {
    color: #ff6464;
    text-shadow: 0 0 12px rgba(255,41,117,0.9), 0 0 25px rgba(255,41,117,0.5);
    border-image: linear-gradient(90deg, var(--neon-pink), #ff6432, var(--neon-pink)) 1;
  }
}
@keyframes supplyBgShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Door Notice */
.door-notice {
  text-align: center;
  padding: 1.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.door-notice strong {
  color: var(--text);
}

/* Online-sales deadline banner + countdown (tickets page) */
.ticket-deadline {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
  padding: 1.5rem 1.25rem;
  background: rgba(255,45,123,0.06);
  border: 1px solid rgba(255,45,123,0.28);
  border-radius: var(--radius);
}
.ticket-deadline-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin: 0;
}
.ticket-deadline-date {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.2rem 0 0;
}
.ticket-deadline .countdown {
  margin-top: 1rem;
}
/* The deadline countdown uses the pink brand accent to set it apart
   from the green event countdown on the landing page. */
.ticket-deadline .countdown-unit {
  border-color: rgba(255,45,123,0.22);
}
.ticket-deadline .countdown-num {
  text-shadow: 0 0 12px rgba(255,45,123,0.5), 0 0 30px rgba(255,45,123,0.2);
}
.ticket-deadline .countdown-sep {
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255,45,123,0.6);
}
.ticket-deadline-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.9rem 0 0;
}
.ticket-deadline-note strong { color: var(--text); }
/* Shown in place of the timer cells once the deadline passes. */
.countdown-expired {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  letter-spacing: 0.04em;
  color: var(--neon-pink);
  margin: 0;
  line-height: 1.4;
}
/* Get-Tickets buttons after the online-sales deadline: grayed out and
   fully non-interactive (the JS also strips the href). */
.btn-ticket.ticket-sale-closed {
  opacity: 0.4;
  filter: grayscale(1);
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
}

/* ========== FAQ PAGE ========== */
.faq-section { padding: 3rem 0 5rem; }

/* Quick-facts strip */
.faq-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.faq-fact {
  flex: 1 1 240px;
  max-width: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
}
.faq-fact-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 0.35rem;
}
.faq-fact-value {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.faq-fact--age { border-color: rgba(255,45,123,0.45); background: rgba(255,45,123,0.06); }
.faq-fact--age .faq-fact-label { color: var(--neon-pink); }

/* Question groups */
.faq-group { margin-bottom: 2.75rem; }
.faq-group-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.faq-group-intro {
  color: rgba(224,224,224,0.7);
  margin-bottom: 1.1rem;
  line-height: 1.65;
}
.faq-group-intro strong { color: var(--text); }

/* Accordion items — native <details>/<summary>, no JS needed */
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 3rem 1rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--neon-green);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--neon-green); }
.faq-item[open] { border-color: rgba(57,255,20,0.32); }
.faq-answer {
  padding: 0 1.25rem 1.15rem;
  color: rgba(224,224,224,0.78);
  line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-answer a { color: var(--neon-blue); }
.faq-answer strong { color: var(--text); }
.faq-rules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.faq-rules li {
  padding-left: 1.2rem;
  position: relative;
}
.faq-rules li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--neon-purple);
}
.faq-rules strong { color: var(--text); }

/* Contact block */
.faq-contact {
  text-align: center;
  margin-top: 3rem;
  padding: 2.25rem 1.5rem;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: var(--radius);
}
.faq-contact > p { color: rgba(224,224,224,0.75); margin: 0.5rem 0 1.4rem; }
.faq-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.faq-contact-tg { background: rgba(0,212,255,0.12); }

/* Ticket Leap CTA */
.ticketleap-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.ticketleap-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(var(--neon-pink), var(--neon-purple), var(--neon-blue), var(--neon-pink));
  opacity: 0.15;
  animation: borderSpin 5s linear infinite;
  z-index: -1;
}
.ticketleap-cta h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.ticketleap-cta p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.btn-ticketleap {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: var(--neon-pink);
  border: none;
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 25px rgba(255,41,117,0.4), 0 0 60px rgba(255,41,117,0.15);
  position: relative;
  overflow: hidden;
  animation: ctaPinkGlow 2s ease-in-out infinite alternate;
}
@keyframes ctaPinkGlow {
  0%   { box-shadow: 0 0 25px rgba(255,41,117,0.4); }
  100% { box-shadow: 0 0 40px rgba(255,41,117,0.6), 0 0 80px rgba(255,41,117,0.25); }
}
.btn-ticketleap::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.5s infinite;
}
.btn-ticketleap:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 50px rgba(255,41,117,0.7), 0 0 100px rgba(255,41,117,0.3);
}

/* ---------- Venue Section (Home) ---------- */
.venue-section {
  padding: 6rem 0;
  position: relative;
  z-index: 3;
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.venue-info {
  text-align: center;
}
.venue-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px rgba(255,255,255,0.1);
}
.venue-address {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.venue-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.venue-map iframe {
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(57,255,20,0.05);
}

/* ---------- Travel Page ---------- */
.travel-section {
  padding: 6rem 0;
  position: relative;
  z-index: 3;
}
.travel-venue {
  margin-bottom: 5rem;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.hotel-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s ease, border-color 0.4s, box-shadow 0.4s;
}
.hotel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,240,255,0.3);
  box-shadow: 0 20px 60px rgba(0,240,255,0.1), inset 0 0 30px rgba(0,240,255,0.03);
}
.hotel-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(var(--neon-blue), var(--neon-purple), var(--neon-pink), var(--neon-blue));
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s;
  will-change: transform;
  transform: translateZ(0);
  animation: borderSpin 3s linear infinite;
  animation-play-state: paused;
}
.hotel-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius) - 1px);
  background: var(--card);
  z-index: -1;
}
.hotel-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.hotel-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}
.hotel-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hotel-address {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.hotel-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.hotel-features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hotel-features li:last-child { border: none; }
.hotel-phone {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0,240,255,0.4);
  letter-spacing: 0.06em;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 3;
  padding: 3rem 5%;
  border-top: 1px solid rgba(57,255,20,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--surface);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57,255,20,0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo-img {
  width: 32px;
  height: auto;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.3s, text-shadow 0.3s;
}
.footer-links a:hover { color: var(--neon-green); text-shadow: 0 0 8px rgba(57,255,20,0.4); }
.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ---------- Telegram Link (footer) ---------- */
.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.06);
  transition: all 0.35s ease;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}
.telegram-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px currentColor);
}
.telegram-link:hover {
  color: #fff;
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-blue);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.35), 0 0 60px rgba(0, 240, 255, 0.12);
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.6);
  transform: translateY(-3px);
}

/* Hero Telegram CTA — big, bright, impossible to miss */
.hero-telegram {
  margin-top: 0.6rem;
  position: relative;
  z-index: 2;
}
.hero-telegram .telegram-link {
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  padding: 0.8rem 2.2rem;
  gap: 0.85rem;
  border: 2px solid var(--neon-blue);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(176, 38, 255, 0.15));
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.4),
    0 0 50px rgba(0, 240, 255, 0.15),
    inset 0 0 20px rgba(0, 240, 255, 0.05);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.7), 0 0 30px rgba(0, 240, 255, 0.3);
  animation: telegramGlow 2s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
}
.hero-telegram .telegram-link svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
}
.hero-telegram .telegram-link::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
  transform: translateX(-100%);
  animation: telegramShimmer 3s infinite;
}
.hero-telegram .telegram-link:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(176, 38, 255, 0.25));
  box-shadow:
    0 0 40px rgba(0, 240, 255, 0.6),
    0 0 80px rgba(0, 240, 255, 0.25),
    inset 0 0 30px rgba(0, 240, 255, 0.1);
  transform: translateY(-4px) scale(1.04);
}
@keyframes telegramGlow {
  0%   { box-shadow: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 50px rgba(0, 240, 255, 0.15); }
  100% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 70px rgba(0, 240, 255, 0.25); }
}
@keyframes telegramShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Footer Telegram */
.footer-social {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

/* ---------- Section Glow Dividers ---------- */
.section-glow-divider {
  position: relative;
  z-index: 3;
  height: 1px;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(90deg,
    transparent,
    var(--neon-green),
    transparent);
  box-shadow: 0 0 15px rgba(57,255,20,0.4), 0 0 40px rgba(57,255,20,0.15);
  opacity: 0.6;
}
.section-glow-divider--pink {
  background: linear-gradient(90deg,
    transparent,
    var(--neon-pink),
    transparent);
  box-shadow: 0 0 15px rgba(255,41,117,0.4), 0 0 40px rgba(255,41,117,0.15);
}

/* ---------- About Section (Homepage) ---------- */
.about-section--home {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(57,255,20,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255,41,117,0.025) 0%, transparent 60%);
}

/* ---------- Reveal on Scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveals */
.info-grid .reveal:nth-child(1) { transition-delay: 0s; }
.info-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.info-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.info-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.staff-grid .staff-card { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s, border-color 0.4s; }
.staff-grid .staff-card.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  body { cursor: auto; }
  a, button { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-trail { display: none; }
  .hamburger { cursor: auto; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%; height: 100vh; height: 100dvh;
    flex-direction: column;
    background: rgba(5,5,5,0.97);
    padding: 6rem 2rem calc(4rem + env(safe-area-inset-bottom, 0px));
    gap: 1.5rem;
    transition: right 0.4s;
    backdrop-filter: blur(20px);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .staff-grid { gap: 1.25rem; }
  .info-grid { grid-template-columns: 1fr; }
  .ticket-tiers { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 8rem); letter-spacing: 0.08em; }

  /* Hero — keep content from overflowing vertically */
  .hero.hero-home {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
    gap: 0.2rem;
  }
  .hero-tagline { letter-spacing: 0.15em; font-size: clamp(0.75rem, 2.5vw, 1.1rem); }
  .hero-date { margin-top: 0.4rem; }

  /* CTA button — prevent compression on narrow screens */
  .hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    width: auto;
    max-width: 90%;
    text-align: center;
    white-space: nowrap;
  }

  /* Countdown — compact on mobile */
  .countdown { gap: 0.15rem; margin-top: 1rem; }
  .countdown-num { font-size: clamp(1.4rem, 5vw, 2rem); }
  .countdown-label { font-size: 0.5rem; }
  .countdown-sep { font-size: 1.2rem; }

  /* Perk chips — stack on mobile */
  .hero-perks-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .hero-perk-chip { font-size: 0.75rem; padding: 0.35rem 1rem; }

  /* Perk badges (legacy) — readable on mobile */
  .hero-perk {
    font-size: clamp(0.8rem, 2vw, 1rem);
    padding: 0 1rem;
    text-align: center;
  }
  .hero-perk.hero-perk-drinks {
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    padding: 0.4rem 0.8rem;
    max-width: 95%;
    white-space: normal;
    line-height: 1.4;
  }

  /* Telegram button — scale down for mobile */
  .hero-telegram .telegram-link {
    font-size: 1rem;
    padding: 0.6rem 1.4rem;
    gap: 0.6rem;
  }
  .hero-telegram .telegram-link svg {
    width: 22px;
    height: 22px;
  }

  /* Scroll indicator — tighter spacing */
  .scroll-indicator { margin-top: 0.75rem; }

  /* Footer — stack vertically and center everything */
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1.25rem;
    width: 100%;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
  .footer-social {
    margin-top: 0.5rem;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }

  /* Sections — less padding on mobile */
  .about-section,
  .info-section,
  .venue-section,
  .staff-section,
  .tickets-section,
  .travel-section { padding: 4rem 0; }

  .container { padding: 0 1.25rem; }

  /* Ticket cards — breathe on mobile */
  .ticket-card { padding: 2rem 1.5rem; }
  .btn-ticket { padding: 0.75rem 2rem; }
  .btn-ticketleap { padding: 0.85rem 2rem; font-size: 1.1rem; }
  .ticketleap-cta { padding: 3rem 1.5rem; }

  /* Venue page */
  .venue-intro-text { font-size: 1rem; }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 420px) {
  .hero.hero-home { padding-top: 4.5rem; }
  .hero-title { font-size: clamp(2rem, 14vw, 5rem); }
  .hero-character { height: clamp(3rem, 12vw, 5rem); }
  .hero-cta {
    padding: 0.85rem 2rem;
    font-size: 1.15rem;
  }
  .hero-tagline { letter-spacing: 0.1em; }
  .hero-date { font-size: clamp(0.9rem, 3vw, 1.2rem); }
  .hero-telegram .telegram-link {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
  .countdown-num { font-size: 1.3rem; }
  .countdown-label { font-size: 0.45rem; }
  .countdown-sep { font-size: 1rem; }
  .hero-perk-chip { font-size: 0.7rem; }
  .footer-links { gap: 0.75rem 1rem; }
  .footer-links a { font-size: 0.8rem; }
  .ticket-card .tier-price { font-size: 2.5rem; }
}

/* ---------- Rules Modal ---------- */
.rules-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.rules-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.rules-modal {
  background: var(--card);
  border: 1px solid rgba(255,41,117,0.3);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  max-width: 560px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 60px rgba(255,41,117,0.15), 0 0 120px rgba(0,0,0,0.5);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.rules-overlay.active .rules-modal {
  transform: translateY(0) scale(1);
}

.rules-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #fff;
}
.rules-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.rules-list {
  list-style: none;
  margin-bottom: 2rem;
}
.rules-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.rules-list li:last-child { border: none; }
.rules-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 8px rgba(255,41,117,0.6);
}

.rules-actions {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.btn-rules-accept {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--neon-green);
  border: none;
  border-radius: var(--radius);
  cursor: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(57,255,20,0.4), 0 0 60px rgba(57,255,20,0.15);
}
.btn-rules-accept:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 40px rgba(57,255,20,0.7), 0 0 80px rgba(57,255,20,0.3);
}
/* Cancel / back out — the rules modal is now triggered when the
   visitor clicks a Get Tickets button, so they need a way out. */
.btn-rules-cancel {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  cursor: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-rules-cancel:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
@media (max-width: 768px) {
  .btn-rules-accept, .btn-rules-cancel { cursor: auto; }
  .rules-modal { padding: 2rem 1.5rem; }
}

/* ---------- Venue Showcase Page ---------- */
.venue-showcase {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 3;
}

.venue-intro {
  text-align: center;
  margin-bottom: 5rem;
}
.venue-logo {
  max-width: 520px;
  width: 85%;
  margin: 0 auto 2rem;
  display: block;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
}
.venue-intro-text {
  max-width: 680px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Venue location badge */
.venue-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

/* Venue Highlight Cards */
.venue-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto 6rem;
}

.venue-highlight-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  perspective: 800px;
}
.venue-highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,41,117,0.3);
  box-shadow:
    0 20px 60px rgba(255,41,117,0.1),
    inset 0 0 30px rgba(255,41,117,0.03);
}
.venue-highlight-card .card-icon {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}
.venue-highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.venue-highlight-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Animated gradient border on hover */
.venue-highlight-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(
    var(--neon-pink),
    var(--neon-purple),
    var(--neon-blue),
    var(--neon-green),
    var(--neon-pink)
  );
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s;
  animation: borderSpin 3s linear infinite;
}
.venue-highlight-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: var(--card);
  z-index: -1;
}
.venue-highlight-card:hover::before { opacity: 1; }

/* Photo Gallery */
.venue-gallery-section {
  margin-bottom: 6rem;
}
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s, border-color 0.4s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,41,117,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,41,117,0.12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1) saturate(1.15);
}

/* Venue Location Block */
.venue-location-block {
  margin-top: 3rem;
  padding-top: 2rem;
}

@media (max-width: 900px) {
  .venue-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .venue-highlights { grid-template-columns: 1fr; }
  .venue-gallery { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Theme Toggle Button ---------- */
.theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  color: var(--neon-yellow);
  cursor: none;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.theme-toggle:hover {
  transform: scale(1.15) rotate(20deg);
  border-color: var(--neon-yellow);
  box-shadow: 0 0 15px rgba(255,230,0,0.4);
}
body.light-mode .theme-toggle {
  color: #333;
  border-color: rgba(0,0,0,0.2);
}
body.light-mode .theme-toggle:hover {
  border-color: #333;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

/* ---------- Psychopath Modal ---------- */
.psycho-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.psycho-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.psycho-modal {
  background: var(--card);
  border: 1px solid rgba(255,41,117,0.4);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 80px rgba(255,41,117,0.2), 0 0 120px rgba(0,0,0,0.5);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.psycho-overlay.active .psycho-modal {
  transform: translateY(0) scale(1);
}
.psycho-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}
.psycho-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.psycho-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.btn-psycho-accept {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: var(--neon-pink);
  border: none;
  border-radius: var(--radius);
  cursor: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(255,41,117,0.4);
}
.btn-psycho-accept:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 40px rgba(255,41,117,0.7);
}
.btn-psycho-deny {
  display: inline-block;
  padding: 0.7rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-psycho-deny:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

/* ---------- Therapy Toast ---------- */
.therapy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #121212;
  border: 1px solid rgba(57,255,20,0.4);
  border-radius: 12px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #39ff14;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(57,255,20,0.25);
  white-space: nowrap;
}
.therapy-toast.visible {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Light Mode (the psychopath theme) ---------- */
/* The dark-mode design uses --text and --text-muted CSS variables on
   nearly every paragraph/heading. Without overriding those here, any
   body copy that uses var(--text) ends up #e0e0e0 (near-white) on a
   white page -- invisible. Overriding the variables themselves
   cascades the fix to every section that uses them, so we don't have
   to chase every individual class. */
body.light-mode {
  --bg:         #ffffff;
  --card:       #f8f8f8;
  --text:       #1a1a1a;
  --text-muted: #555;
  background: #ffffff;
  color: #1a1a1a;
}
body.light-mode .about-content p,
body.light-mode .info-card p,
body.light-mode .info-card-title,
body.light-mode .venue-name,
body.light-mode .venue-address,
body.light-mode .venue-detail,
body.light-mode .venue-intro-text,
body.light-mode .ticket-card *,
body.light-mode .staff-card *,
body.light-mode .info-card *,
body.light-mode .venue-highlight-card * { color: #333; }
body.light-mode strong { color: #111; }
/* Neon-green accent stays the brand colour but darkened so it's
   readable on white -- the dark-mode #39ff14 vanishes on a light bg. */
body.light-mode .neon-green { color: #16a34a !important; }
body.light-mode .neon-pink  { color: #d11865 !important; }
body.light-mode .neon-blue  { color: #0077cc !important; }
body.light-mode .neon-purple{ color: #7c3aed !important; }
body.light-mode .navbar {
  background: rgba(255,255,255,0.95);
  border-bottom-color: rgba(0,0,0,0.1);
}
body.light-mode .navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
body.light-mode .nav-logo,
body.light-mode .nav-links a {
  color: #222;
}
body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active {
  color: #d6006e;
}
body.light-mode .nav-links a.nav-apply-btn,
body.light-mode .nav-links a.nav-apply-btn:hover,
body.light-mode .nav-links a.nav-dealer-btn,
body.light-mode .nav-links a.nav-dealer-btn:hover,
body.light-mode .nav-links a.nav-staff-btn,
body.light-mode .nav-links a.nav-staff-btn:hover,
body.light-mode .nav-links a.nav-tickets-btn {
  color: #fff;
}
body.light-mode .hero {
  background: linear-gradient(180deg, #f0f0f0 0%, #ffffff 100%);
}
/* The hero video is dark and colourful; in light mode the rest of
   the hero text + chips were sitting on top of a dark video instead
   of the light gradient. Suppress the video in light mode so the
   gradient actually shows through. */
body.light-mode .hero-video,
body.light-mode .hero-video-wrap { display: none !important; }
/* Hero perk chips need a real background colour over the gradient in
   light mode -- the dark-mode rgba(255,255,255,0.06) on the chip
   variants doesn't survive the colour-scheme flip. */
body.light-mode .hero-perk-chip,
body.light-mode .hero-perk-chip--age,
body.light-mode .hero-perk-chip--hot {
  background: rgba(255,255,255,0.85) !important;
  border-color: rgba(0,0,0,0.18) !important;
  color: #222 !important;
  text-shadow: none !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
body.light-mode .hero-perk-chip--age   { color: #d11865 !important; border-color: rgba(209,24,101,0.4) !important; }
body.light-mode .hero-perk-chip--hot   { color: #c47700 !important; border-color: rgba(196,119,0,0.4) !important; }
body.light-mode .hero-title {
  color: #111;
  text-shadow: none;
}
body.light-mode .hero-tagline {
  color: #555;
}
body.light-mode .hero-date {
  color: #666;
}
body.light-mode .countdown-unit {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.12);
}
body.light-mode .countdown-num {
  color: #111;
  text-shadow: none;
}
body.light-mode .countdown-sep {
  color: #d6006e;
  text-shadow: none;
}
body.light-mode .hero-cta {
  background: #222;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
body.light-mode .info-card,
body.light-mode .ticket-card,
body.light-mode .staff-card,
body.light-mode .venue-highlight-card {
  background: #f8f8f8;
  border-color: rgba(0,0,0,0.08);
  color: #333;
}
body.light-mode .staff-card .staff-name { color: #111; }
body.light-mode .staff-card .staff-role { color: #555; }
body.light-mode .section-title {
  color: #111;
}
body.light-mode .footer {
  background: #f0f0f0;
  color: #444;
}
body.light-mode .footer-logo {
  color: #111;
}
body.light-mode .footer-links a {
  color: #555;
}
body.light-mode .footer-copy {
  color: #888;
}
body.light-mode .hero-perk-chip {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: #444;
}
body.light-mode .scanlines { opacity: 0; }
body.light-mode .laser-container { opacity: 0; }
body.light-mode #particles-canvas { opacity: 0.15; }
body.light-mode .door-notice {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: #444;
}
body.light-mode .tier-price {
  color: #111;
}
body.light-mode .tier-features li {
  color: #555;
}
body.light-mode .hamburger span {
  background: #222;
}

@media (max-width: 768px) {
  .theme-toggle { cursor: auto; }
  .btn-psycho-accept, .btn-psycho-deny { cursor: auto; }
  .psycho-modal { padding: 2rem 1.5rem; }
}

/* ---------- Nav Tickets Button ---------- */
.nav-tickets-btn {
  padding: 0.45rem 1.1rem !important;
  border: 1px solid var(--neon-green) !important;
  border-radius: 6px;
  color: var(--neon-green) !important;
  background: rgba(57,255,20,0.08);
  text-shadow: 0 0 8px rgba(57,255,20,0.3);
  box-shadow: 0 0 10px rgba(57,255,20,0.1);
  transition: all 0.3s ease;
}
.nav-tickets-btn::after {
  display: none !important;
}
.nav-tickets-btn:hover {
  background: rgba(57,255,20,0.2) !important;
  box-shadow: 0 0 20px rgba(57,255,20,0.3), inset 0 0 12px rgba(57,255,20,0.1);
  color: #fff !important;
  text-shadow: 0 0 12px rgba(57,255,20,0.6);
}
body.light-mode .nav-tickets-btn {
  border-color: #16a34a !important;
  color: #16a34a !important;
  background: rgba(22,163,74,0.06);
  text-shadow: none;
  box-shadow: none;
}
body.light-mode .nav-tickets-btn:hover {
  background: rgba(22,163,74,0.15) !important;
  color: #15803d !important;
}

/* ---------- Nav Apply/Dealer Separator ---------- */
.nav-links li:has(.nav-apply-btn) {
  padding-left: 2rem;
  border-left: 2px solid rgba(255,255,255,0.4);
}
body.light-mode .nav-links li:has(.nav-apply-btn) {
  border-left-color: rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .nav-links li:has(.nav-apply-btn) {
    padding-left: 0;
    border-left: none;
    order: 10;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.3);
  }
  .nav-links li:has(.nav-dealer-btn) {
    order: 11;
  }
  .nav-links li:has(.nav-staff-btn) {
    order: 12;
  }
  body.light-mode .nav-links li:has(.nav-apply-btn) {
    border-top-color: rgba(0,0,0,0.2);
  }
}

/* ---------- Nav Apply Button ---------- */
.nav-apply-btn,
.nav-apply-btn:hover {
  padding: 0.45rem 1.1rem !important;
}
.nav-apply-btn::after {
  display: none !important;
}
.nav-apply-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #b44dff, #8b2fc9);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-shadow: none;
  box-shadow: 0 0 14px rgba(176,38,255,0.25), 0 0 30px rgba(139,47,201,0.1);
}
.nav-apply-btn:hover {
  background: linear-gradient(135deg, #c77dff, #a855f7);
  box-shadow: 0 0 22px rgba(176,38,255,0.45), 0 0 40px rgba(139,47,201,0.2);
  color: #fff;
  text-shadow: none;
  transform: translateY(-1px);
}
/* Locked state for nav button — still visible, just muted */
.nav-apply-btn.locked {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(176,38,255,0.15);
  color: var(--neon-purple);
  border: 1px solid rgba(176,38,255,0.3);
  box-shadow: none;
}
.nav-apply-btn.locked:hover {
  background: rgba(176,38,255,0.15);
  box-shadow: none;
  color: var(--neon-purple);
  transform: none;
}
body.light-mode .nav-apply-btn {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(139,92,246,0.3);
}
body.light-mode .nav-apply-btn:hover {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  box-shadow: 0 4px 12px rgba(139,92,246,0.4);
}

/* ---------- Nav Dealer Button ---------- */
.nav-dealer-btn,
.nav-dealer-btn:hover {
  padding: 0.45rem 1.1rem !important;
}
.nav-dealer-btn::after {
  display: none !important;
}
.nav-dealer-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: 600;
  background: linear-gradient(135deg, #ff9f1c, #ff6b35);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-shadow: none;
  box-shadow: 0 0 14px rgba(255,159,28,0.25), 0 0 30px rgba(255,107,53,0.1);
}
.nav-dealer-btn:hover {
  background: linear-gradient(135deg, #ffb347, #ff8c42);
  box-shadow: 0 0 22px rgba(255,159,28,0.45), 0 0 40px rgba(255,107,53,0.2);
  color: #000;
  text-shadow: none;
  transform: translateY(-1px);
}
.nav-dealer-btn.locked {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255,159,28,0.15);
  color: #ff9f1c;
  border: 1px solid rgba(255,159,28,0.3);
  box-shadow: none;
}
.nav-dealer-btn.locked:hover {
  background: rgba(255,159,28,0.15);
  box-shadow: none;
  color: #ff9f1c;
  transform: none;
}
body.light-mode .nav-dealer-btn {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
body.light-mode .nav-dealer-btn:hover {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

/* ---------- Nav Staff Button ---------- */
.nav-staff-btn,
.nav-staff-btn:hover {
  padding: 0.45rem 1.1rem !important;
}
.nav-staff-btn::after {
  display: none !important;
}
.nav-staff-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-shadow: none;
  box-shadow: 0 0 14px rgba(14,165,233,0.25), 0 0 30px rgba(6,182,212,0.1);
}
.nav-staff-btn:hover {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  box-shadow: 0 0 22px rgba(14,165,233,0.45), 0 0 40px rgba(6,182,212,0.2);
  color: #fff;
  text-shadow: none;
  transform: translateY(-1px);
}
.nav-staff-btn.locked {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(14,165,233,0.15);
  color: #0ea5e9;
  border: 1px solid rgba(14,165,233,0.3);
  box-shadow: none;
}
.nav-staff-btn.locked:hover {
  background: rgba(14,165,233,0.15);
  box-shadow: none;
  color: #0ea5e9;
  transform: none;
}
body.light-mode .nav-staff-btn {
  background: linear-gradient(135deg, #0284c7, #0891b2);
  color: #fff;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(14,165,233,0.3);
}
body.light-mode .nav-staff-btn:hover {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}

/* ---------- DJ Application Page ---------- */
.apply-section {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 3;
}
.apply-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(18,18,18,0.95), rgba(12,12,12,0.98));
  border: 1px solid rgba(176,38,255,0.15);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(176,38,255,0.06), 0 20px 60px rgba(0,0,0,0.5);
}
.apply-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-pink), var(--neon-blue), transparent);
  opacity: 0.7;
}
/* Note banner */
.apply-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(176,38,255,0.06);
  border: 1px solid rgba(176,38,255,0.12);
  border-radius: 10px;
}
.apply-note strong { color: var(--neon-purple); }

.apply-deadline-notice {
  background: rgba(255,45,123,0.08);
  border: 1px solid rgba(255,45,123,0.3);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.apply-deadline-notice strong { color: #ff2d7b; }
body.light-mode .apply-deadline-notice { color: #333; }

/* Form Sections */
.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-purple);
  text-shadow: 0 0 10px rgba(176,38,255,0.3);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(176,38,255,0.15);
}

/* Side-by-side fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Form Groups */
.apply-form .form-group {
  margin-bottom: 1.2rem;
}
.apply-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #bbb;
  margin-bottom: 0.4rem;
}
.apply-form .required {
  color: var(--neon-pink);
}
.apply-required-legend {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.apply-required-legend .required {
  color: var(--neon-pink);
  font-weight: 600;
}

/* Logo dropzone on apply form */
.logo-dropzone {
  border: 2px dashed rgba(180,77,255,0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.logo-dropzone.dragover {
  border-color: var(--neon-purple);
  background: rgba(180,77,255,0.06);
}
.logo-dropzone-empty p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin: 0;
}
.logo-dropzone-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.logo-dropzone-or {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.2) !important;
  margin: 0.4rem 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.logo-dropzone-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  background: rgba(180,77,255,0.12);
  border: 1px solid rgba(180,77,255,0.3);
  color: var(--neon-purple);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.logo-dropzone-btn:hover { background: rgba(180,77,255,0.22); }
.logo-dropzone-filled {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.logo-preview-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(180,77,255,0.3);
  box-shadow: 0 0 20px rgba(180,77,255,0.1);
}
.logo-filled-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.logo-change-btn,
.logo-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 0.9rem;
  margin: 0;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.logo-change-btn,
.apply-form .logo-change-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background: rgba(180,77,255,0.12);
  border: 1px solid rgba(180,77,255,0.25);
  color: var(--neon-purple);
  font-weight: 400;
}
.logo-change-btn:hover { background: rgba(180,77,255,0.22); }
.logo-remove-btn {
  background: rgba(255,68,68,0.08);
  border: 1px solid rgba(255,68,68,0.2);
  color: #ff4444;
}
.logo-remove-btn:hover { background: rgba(255,68,68,0.15); }

/* Light mode */
body.light-mode .logo-dropzone { border-color: rgba(124,58,237,0.2); }
body.light-mode .logo-dropzone.dragover { border-color: #7c3aed; background: rgba(124,58,237,0.04); }
body.light-mode .logo-dropzone-btn, body.light-mode .logo-change-btn { color: #7c3aed; border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.08); }
body.light-mode .logo-preview-img { border-color: rgba(124,58,237,0.3); }

/* Honeypot — visually hidden from humans, accessible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.apply-form .form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  margin-top: 0.3rem;
}
label .form-hint {
  display: inline;
  margin-top: 0;
}
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="url"],
.apply-form input[type="number"],
.apply-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
}
.apply-form input:focus,
.apply-form textarea:focus {
  border-color: var(--neon-purple);
  box-shadow: 0 0 0 3px rgba(176,38,255,0.1), 0 0 15px rgba(176,38,255,0.06);
  background: rgba(176,38,255,0.03);
}
.apply-form textarea {
  resize: vertical;
  min-height: 50px;
}

/* ===== Polished number-with-unit input (dealer length/width fields) =====
   Wraps a number input + a non-interactive unit suffix (e.g. "FT") that
   sits inside the input visually. The wrapper is a flexbox so the
   underlying .apply-form input rules still pick up the base styling. */
.number-with-unit {
  position: relative;
  display: block;
}
.number-with-unit input[type="number"] {
  padding-right: 2.8rem !important;
  /* Bigger, bolder, center-aligned so the value you typed is unambiguous
     at a glance. Stick with the body font (Inter) — the brand display
     font (Bebas Neue) is too condensed/thin for a 2-digit number input
     to read cleanly while typing. */
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  /* Hide the native spinner — the bigger font makes the tiny up/down
     arrows look out of place, and the 8-20 range is tight enough that
     typing is faster anyway. */
  -moz-appearance: textfield;
}
.number-with-unit input[type="number"]::-webkit-outer-spin-button,
.number-with-unit input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.number-with-unit .number-unit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  transition: color 0.2s;
}
.number-with-unit:focus-within .number-unit {
  /* Stay theme-neutral — the dealer page (and any future page using
     this pattern) may override the input's focus border to a different
     accent color via !important, so just brighten the gray instead of
     picking a fixed accent. */
  color: rgba(255,255,255,0.7);
}

/* ===== Dealer fee live breakdown =====
   Lives inside .dealer-fee-notice between the headline total and the
   small-print legal copy. Shows the per-tier itemization of what the
   dealer is paying, plus a "going larger costs..." callout so the
   pricing curve is visible (the design goal is to nudge dealers toward
   smaller booths). Empty by default; populated by updateDealerFeeDisplay
   in dealers.html / dealer-test.html. */
.dealer-fee-breakdown { margin-top: 0.9rem; }
.dealer-fee-breakdown:empty { display: none; }
.dealer-fee-breakdown .dfb-rows {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}
.dealer-fee-breakdown .dfb-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
}
.dealer-fee-breakdown .dfb-row-total {
  margin-top: 0.3rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.dealer-fee-breakdown .dfb-amount {
  flex-shrink: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.dealer-fee-breakdown .dfb-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 400;
}
.dealer-fee-breakdown .dfb-next {
  margin-top: 0.8rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255,159,28,0.06);
  border: 1px dashed rgba(255,159,28,0.25);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-align: left;
}
.dealer-fee-breakdown .dfb-next-title {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}
.dealer-fee-breakdown .dfb-next ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dealer-fee-breakdown .dfb-next li {
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
}
.dealer-fee-breakdown .dfb-next strong { color: #ffd180; }

/* ===== Dealer application: pre-submit confirmation modal =====
   Shown after all client-side validation passes but BEFORE the fetch
   to /api/dealer-apply, so the dealer gets a final "you're applying
   for X, you'll be charged $Y if accepted" beat. Built theme-orange
   to match the dealer page accent — the only place this modal renders. */
.dealer-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.dealer-confirm-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.dealer-confirm-modal {
  width: 100%;
  max-width: 460px;
  background: #14110d;
  border: 1px solid rgba(255,159,28,0.4);
  border-radius: 14px;
  box-shadow: 0 0 60px rgba(255,159,28,0.18), 0 30px 80px rgba(0,0,0,0.6);
  padding: 1.6rem 1.6rem 1.3rem;
  font-family: 'Inter', sans-serif;
  transform: translateY(8px);
  transition: transform 0.2s ease;
}
.dealer-confirm-overlay.is-open .dealer-confirm-modal {
  transform: translateY(0);
}
.dealer-confirm-modal h3 {
  margin: 0 0 1rem;
  color: #ff9f1c;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.dealer-confirm-body { font-size: 0.92rem; }
.dealer-confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
}
.dealer-confirm-row:first-of-type { padding-top: 0; }
.dealer-confirm-row > span:first-child {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dealer-confirm-row > span:last-child {
  font-weight: 600;
  text-align: right;
}
.dealer-confirm-row-total {
  border-bottom: none;
  padding-top: 0.8rem;
  margin-top: 0.3rem;
  border-top: 1px solid rgba(255,159,28,0.3);
}
.dealer-confirm-row-total > span:last-child {
  color: #ff9f1c;
  font-size: 1.35rem;
  font-weight: 700;
}
.dealer-confirm-note {
  margin: 0.9rem 0 1.2rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  line-height: 1.45;
}
.dealer-confirm-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
}
.dealer-confirm-actions button {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.15s, transform 0.1s, background 0.15s;
}
.btn-confirm-cancel {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
}
.btn-confirm-cancel:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-confirm-submit {
  background: linear-gradient(135deg, #ff9f1c, #ff6b35);
  color: #000;
}
.btn-confirm-submit:hover { opacity: 0.92; }
.btn-confirm-submit:active { transform: translateY(1px); }

/* ===== Real-time validation states ===== */
.apply-form .form-group .validation-message {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  min-height: 1em;
  line-height: 1.3;
  color: var(--neon-pink);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.apply-form .form-group.is-invalid .validation-message,
.apply-form .form-group.is-valid .validation-message {
  opacity: 1;
  transform: translateY(0);
}
.apply-form .form-group.is-valid .validation-message {
  color: var(--neon-green);
}
.apply-form .form-group.is-valid input[type="text"],
.apply-form .form-group.is-valid input[type="email"],
.apply-form .form-group.is-valid input[type="url"] {
  border-color: rgba(57,255,20,0.55) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2339ff14' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem !important;
}
.apply-form .form-group.is-invalid input[type="text"],
.apply-form .form-group.is-invalid input[type="email"],
.apply-form .form-group.is-invalid input[type="url"] {
  border-color: rgba(255,45,123,0.6) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d7b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem !important;
}
.apply-form .form-group.is-valid textarea {
  border-color: rgba(57,255,20,0.55) !important;
}
.apply-form .form-group.is-invalid textarea {
  border-color: rgba(255,45,123,0.6) !important;
}

/* Turnstile widget */
.turnstile-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.turnstile-error {
  color: var(--neon-pink);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* Submit Button */
.apply-submit-btn {
  display: block;
  width: 60%;
  max-width: 320px;
  margin: 2.5rem auto 0;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid var(--neon-purple);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 0 15px rgba(176,38,255,0.15);
  text-shadow: 0 0 8px rgba(176,38,255,0.4);
}
.apply-submit-btn:hover {
  background: var(--neon-purple);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(176,38,255,0.4), 0 4px 20px rgba(176,38,255,0.25);
  text-shadow: none;
}
.apply-submit-btn:active {
  transform: translateY(0);
}
.apply-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Success & Error */
.apply-success {
  text-align: center;
  padding: 3rem 1rem;
}
.apply-success-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--neon-green), #00c853);
  color: #000;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px rgba(57,255,20,0.3);
}
.apply-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--neon-green);
  text-shadow: 0 0 15px rgba(57,255,20,0.4);
  margin-bottom: 0.75rem;
}
.apply-success p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}
.apply-error {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,41,41,0.08);
  border: 1px solid rgba(255,41,41,0.25);
  border-radius: 10px;
  margin-top: 1.5rem;
}
.apply-error p { color: #ff6b6b; }
.apply-error a { color: var(--neon-pink); text-decoration: underline; }

/* Locked state */
.apply-locked {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.apply-locked-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: grayscale(0.3);
}
.apply-locked h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.apply-locked p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.apply-locked-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-blue);
  border: 1px solid rgba(0,240,255,0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.apply-locked-cta:hover {
  background: rgba(0,240,255,0.1);
  box-shadow: 0 0 20px rgba(0,240,255,0.2);
}

/* Sending spinner */
.apply-submit-btn.sending {
  pointer-events: none;
  opacity: 0.8;
}
.apply-submit-btn.sending::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 0.6rem;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Light mode overrides */
body.light-mode .apply-form-wrap {
  background: linear-gradient(145deg, #fafafa, #f0f0f0);
  border-color: rgba(124,58,237,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
body.light-mode .apply-form-wrap::before {
  background: linear-gradient(90deg, transparent, #7c3aed, #d6006e, #0ea5e9, transparent);
}
body.light-mode .apply-note { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.12); color: #555; }
body.light-mode .apply-note strong { color: #7c3aed; }
body.light-mode .form-section { border-bottom-color: rgba(0,0,0,0.06); }
body.light-mode .form-section-title { color: #7c3aed; text-shadow: none; border-bottom-color: rgba(124,58,237,0.15); }
body.light-mode .apply-form label { color: #333; }
body.light-mode .apply-form input,
body.light-mode .apply-form textarea {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.12);
  color: #222;
}
body.light-mode .apply-form input:focus,
body.light-mode .apply-form textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
  background: rgba(124,58,237,0.03);
}
body.light-mode .apply-success h3 { color: #16a34a; text-shadow: none; }
body.light-mode .apply-success-icon { box-shadow: 0 0 20px rgba(22,163,74,0.2); }

/* Mobile */
@media (max-width: 768px) {
  .apply-form-wrap {
    padding: 1.5rem;
    border-radius: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .apply-submit-btn { font-size: 1.1rem; }
}

/* ---------- Page Transition Flash ---------- */
@keyframes pageFlash {
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  100% { opacity: 1; }
}
body { animation: pageFlash 0.6s ease-out; }
