/* ============================================================
   GLITTER SEIZURE — high bpm nightcore rave
   Palette pulled from moodBoard.jpg (Pantone refs) + poster.png
   ============================================================ */

:root {
  /* --- moodboard pantones --- */
  --purple:        #6638B6;  /* PMS 2090 C */
  --purple-lite:   #9B6BFF;
  --yellow:        #F4E04D;  /* 12-0743 Buzzing Bees */
  --cream:         #EDEEE0;  /* 11-0501 Baby Powder */
  --cyan:          #7FD6CE;  /* 13-5329 Polynya */
  --cyan-hot:      #36E6F5;  /* glow accent */
  --blue:          #0F4C81;  /* 19-4052 Classic Blue */
  --pink:          #FF3D9A;  /* poster RAVE magenta */

  /* --- structural --- */
  --ink:           #06050E;
  --ink-2:         #0C0A1C;
  --panel:         rgba(18, 13, 40, 0.72);
  --line:          rgba(155, 107, 255, 0.35);

  --font-pixel: 'Press Start 2P', monospace;
  --font-mono:  'VT323', 'Courier New', monospace;

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-mono);
  background: var(--ink);
  color: var(--cream);
  font-size: 20px;
  line-height: 1.4;
  overflow-x: hidden;
  position: relative;
  /* layered nightcore background */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(102,56,182,0.55), transparent 42%),
    radial-gradient(circle at 85% 8%,  rgba(54,230,245,0.22), transparent 40%),
    radial-gradient(circle at 78% 88%, rgba(255,61,154,0.30), transparent 45%),
    radial-gradient(circle at 10% 92%, rgba(15,76,129,0.55), transparent 50%),
    linear-gradient(160deg, #0a0820 0%, #06050e 55%, #0a0618 100%);
  background-attachment: fixed;
}

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

/* ============================================================
   ATMOSPHERE — scanlines, grain, halftone glow
   ============================================================ */
.scanlines {
  position: fixed; inset: 0; z-index: 9; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom, rgba(0,0,0,0) 0, rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.18) 3px, rgba(0,0,0,0) 4px);
  mix-blend-mode: multiply; opacity: .5;
}
.grain {
  position: fixed; inset: -50%; z-index: 8; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(4) infinite;
}
@keyframes grain {
  0%{transform:translate(0,0)}25%{transform:translate(-4%,2%)}
  50%{transform:translate(3%,-3%)}75%{transform:translate(-2%,4%)}100%{transform:translate(0,0)}
}
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  /* halftone dot field, very moodboard */
  background-image: radial-gradient(rgba(155,107,255,0.18) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 14px clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(6,5,14,0.92), rgba(6,5,14,0.45) 70%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav__left { display: flex; align-items: center; gap: clamp(10px, 2vw, 18px); justify-self: start; }
/* decorative emblem (feathered cutout) — centered in the header, not interactive */
/* centered emblem, links back to top */
.nav__emblem {
  justify-self: center; display: inline-flex; line-height: 0;
  transition: transform .15s ease;
}
.nav__emblem:hover { transform: scale(1.07); }
.nav__emblem:hover .nav__logo-img { filter: drop-shadow(0 0 16px rgba(54,230,245,0.85)); }
.nav__emblem:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; border-radius: 8px; }
.nav__logo-img {
  width: 56px; height: 56px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(54,230,245,0.55));
  transition: filter .15s ease;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; }

/* --- language switcher --- */
.lang { display: inline-flex; gap: 6px; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-pixel); font-size: 9px; letter-spacing: 1px;
  color: var(--cream); background: rgba(18,13,40,0.6);
  border: 2px solid var(--line); padding: 6px 8px; cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .12s, opacity .15s;
  opacity: .55;
}
.lang__btn:hover { opacity: 1; border-color: var(--purple-lite); transform: translateY(-1px); }
.lang__btn.is-active {
  opacity: 1; border-color: var(--cyan-hot); color: var(--cyan-hot);
  box-shadow: 0 0 12px rgba(54,230,245,0.35);
}
.lang__btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.flag {
  width: 22px; height: 15px; display: block; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.45); border-radius: 1px;
}
.lang__code { line-height: 1; }
.nav__logo-main {
  font-family: var(--font-pixel); font-size: 14px; color: var(--cyan-hot);
  letter-spacing: 1px; text-shadow: 2px 2px 0 var(--pink);
}
.nav__logo-sub {
  font-family: var(--font-pixel); font-size: 9px; color: var(--cream);
  letter-spacing: 6px; margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: clamp(14px, 3vw, 34px); justify-self: end; }
.nav__links a {
  font-family: var(--font-pixel); font-size: 10px; letter-spacing: 1px;
  color: var(--cream); transition: color .15s, text-shadow .15s;
}
.nav__links a:hover { color: var(--cyan-hot); text-shadow: 0 0 8px var(--cyan-hot); }
.nav__cta {
  color: var(--ink) !important; background: var(--yellow);
  padding: 9px 14px; border: 2px solid var(--ink); white-space: nowrap;
  box-shadow: 3px 3px 0 var(--pink);
  transition: transform .12s, box-shadow .12s;
}
.nav__cta:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--pink); text-shadow: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; z-index: 1; padding: clamp(28px, 6vw, 70px) clamp(16px, 4vw, 48px) 0; }
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.hero__kicker {
  font-family: var(--font-pixel); font-size: clamp(9px, 1.6vw, 13px);
  color: var(--yellow); letter-spacing: 2px; margin-bottom: 22px;
  text-shadow: 0 0 10px rgba(244,224,77,0.5);
}

/* --- glitch title --- */
.glitch {
  position: relative; font-family: var(--font-pixel);
  font-size: clamp(34px, 7vw, 76px); line-height: 1.05; letter-spacing: 1px;
  color: var(--cream); margin-bottom: 18px;
}
.glitch__l1 { display: block; color: var(--cyan-hot); text-shadow: 3px 3px 0 var(--pink), -2px -1px 0 var(--purple); }
.glitch__l2 { display: block; color: var(--cream); text-shadow: 3px 3px 0 var(--purple); }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; inset: 0;
  display: flex; flex-direction: column; clip-path: inset(0 0 0 0);
}
.glitch::before { color: var(--pink);    transform: translate(-3px,0); animation: glitch-a 2.6s infinite linear alternate; opacity: .8; mix-blend-mode: screen; }
.glitch::after  { color: var(--cyan-hot); transform: translate(3px,0);  animation: glitch-b 2.1s infinite linear alternate; opacity: .8; mix-blend-mode: screen; }
@keyframes glitch-a {
  0%,100%{clip-path:inset(0 0 92% 0)} 20%{clip-path:inset(40% 0 40% 0)}
  40%{clip-path:inset(80% 0 4% 0)} 60%{clip-path:inset(10% 0 70% 0)} 80%{clip-path:inset(55% 0 25% 0)}
}
@keyframes glitch-b {
  0%,100%{clip-path:inset(85% 0 2% 0)} 25%{clip-path:inset(15% 0 60% 0)}
  50%{clip-path:inset(50% 0 30% 0)} 75%{clip-path:inset(5% 0 80% 0)}
}

.hero__emote {
  font-size: 24px; color: var(--cyan); letter-spacing: 1px; margin-bottom: 26px;
  text-shadow: 0 0 8px rgba(127,214,206,0.6);
}

.hero__meta { list-style: none; margin-bottom: 30px; display: grid; gap: 8px; }
.hero__meta li { font-size: 21px; color: var(--cream); }
.tag {
  display: inline-block; min-width: 64px; margin-right: 12px;
  font-family: var(--font-pixel); font-size: 9px; color: var(--ink);
  background: var(--cyan-hot); padding: 4px 7px; letter-spacing: 1px;
  vertical-align: middle;
}

/* --- countdown --- */
.countdown {
  display: flex; align-items: stretch; gap: 6px; margin-bottom: 8px; flex-wrap: wrap;
}
.cd-unit {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--panel); border: 2px solid var(--line);
  padding: 12px 14px; min-width: 78px;
  box-shadow: 0 0 18px rgba(54,230,245,0.12) inset, 4px 4px 0 rgba(255,61,154,0.25);
}
.cd-num {
  font-family: var(--font-pixel); font-size: clamp(20px, 3.4vw, 30px);
  color: var(--cyan-hot); text-shadow: 0 0 12px rgba(54,230,245,0.7); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-label { font-size: 16px; color: var(--purple-lite); letter-spacing: 2px; text-transform: uppercase; }
.cd-sep {
  font-family: var(--font-pixel); font-size: clamp(18px, 3vw, 28px); color: var(--pink);
  align-self: center; animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: .2; } }
.countdown__done {
  font-family: var(--font-pixel); font-size: 16px; color: var(--yellow);
  margin: 14px 0; text-shadow: 0 0 12px var(--yellow); animation: blink 1.2s steps(2) infinite;
}

/* --- buttons --- */
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.btn {
  font-family: var(--font-pixel); font-size: 12px; letter-spacing: 1px;
  padding: 16px 24px; border: 2px solid var(--ink); cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease; display: inline-block;
}
.btn--primary { background: var(--pink); color: var(--cream); box-shadow: 5px 5px 0 var(--cyan-hot); }
.btn--primary:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--cyan-hot); }
.btn--ghost { background: transparent; color: var(--cyan-hot); border-color: var(--cyan-hot); box-shadow: 5px 5px 0 rgba(155,107,255,0.5); }
.btn--ghost:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 rgba(155,107,255,0.7); background: rgba(54,230,245,0.08); }
.btn--block { display: block; text-align: center; margin-top: 16px; }

/* --- poster --- */
.hero__poster { display: flex; justify-content: center; }
.poster-frame {
  position: relative; padding: 10px; background: var(--panel);
  border: 2px solid var(--line);
  box-shadow: 0 0 50px rgba(102,56,182,0.5), 10px 10px 0 rgba(255,61,154,0.3);
  transform: rotate(-1.5deg); transition: transform .3s ease;
}
.poster-frame::before {
  content: '★'; position: absolute; top: -18px; right: -10px; z-index: 2;
  font-size: 34px; color: var(--yellow); text-shadow: 0 0 14px var(--yellow);
  animation: spin 6s linear infinite;
}
.poster-frame:hover { transform: rotate(0deg) scale(1.02); }
.poster-frame img { width: 100%; max-width: 380px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- marquee --- */
.marquee {
  margin-top: clamp(32px, 6vw, 64px); overflow: hidden; white-space: nowrap;
  border-top: 2px solid var(--line); border-bottom: 2px solid var(--line);
  background: rgba(255,61,154,0.08); padding: 12px 0;
}
.marquee__track { display: inline-flex; flex-wrap: nowrap; animation: scroll 88s linear infinite; }
.marquee__track span {
  font-family: var(--font-pixel); font-size: 13px; color: var(--cyan);
  letter-spacing: 2px; padding-right: 20px;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section-head { text-align: center; max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,8vw,90px) 16px 30px; }
.section-title {
  font-family: var(--font-pixel); font-size: clamp(22px, 5vw, 44px);
  color: var(--cream); letter-spacing: 2px; position: relative; display: inline-block;
}
.glitch-sm { text-shadow: 3px 3px 0 var(--purple), -2px 0 0 var(--pink); }
.section-sub {
  font-size: 19px; letter-spacing: 3px; color: var(--cyan-hot); margin-top: 16px;
  text-transform: uppercase;
}

/* ============================================================
   LINEUP
   ============================================================ */
.lineup { position: relative; z-index: 1; padding-bottom: 20px; }
.lineup__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 0 clamp(16px, 4vw, 48px);
}
.dj-card {
  position: relative; background: var(--panel); border: 2px solid var(--line);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.dj-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(102,56,182,0.5); }
.dj-card--link { cursor: pointer; }
.dj-card--link:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.dj-card--link:hover .dj-card__handle { color: var(--cyan-hot); text-shadow: 0 0 8px rgba(54,230,245,0.6); }

.dj-card__media {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: linear-gradient(135deg, #14102e, #1d0e2e);
}
.dj-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.1) saturate(1.05);
}
.dj-card__slot {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--font-pixel); font-size: 9px; color: var(--ink);
  background: var(--yellow); padding: 5px 8px; letter-spacing: 1px;
}
.dj-card__genre {
  position: absolute; bottom: 10px; left: 10px; right: 10px; z-index: 2;
  font-family: var(--font-pixel); font-size: 10px; color: var(--cyan-hot);
  letter-spacing: 1px; text-shadow: 0 0 8px rgba(0,0,0,0.9);
}
.dj-card__body { padding: 16px; text-align: center; border-top: 2px solid var(--line); }
.dj-card__name { font-family: var(--font-pixel); font-size: 14px; color: var(--cream); letter-spacing: 1px; }
.dj-card__handle { font-size: 18px; color: var(--purple-lite); margin-top: 8px; }

/* revealed card accents */
.dj-card--revealed .dj-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,5,14,0.85));
}
.dj-card--revealed .dj-card__name { color: var(--cyan-hot); text-shadow: 0 0 10px rgba(54,230,245,0.6); }
.dj-card--revealed { border-color: var(--cyan-hot); box-shadow: 0 0 24px rgba(54,230,245,0.18); }

/* TBA / placeholder card */
.dj-card--tba .dj-card__media {
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(155,107,255,0.07) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #14102e, #20102f);
}
.dj-card--tba .dj-card__qmark {
  font-family: var(--font-pixel); font-size: 64px; color: var(--purple-lite);
  text-shadow: 0 0 20px rgba(155,107,255,0.6); animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.45; transform:scale(1)} 50%{opacity:1; transform:scale(1.08)} }
.dj-card--tba .dj-card__name { color: var(--purple-lite); }
.dj-card--tba .dj-card__handle { color: var(--cream); opacity: .55; }

/* ============================================================
   INFO
   ============================================================ */
.info { position: relative; z-index: 1; }
.info__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px) 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.info-card {
  background: var(--panel); border: 2px solid var(--line); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 8px; min-height: 200px;
  transition: border-color .2s, transform .2s;
}
.info-card:hover { border-color: var(--cyan-hot); transform: translateY(-4px); }
.info-card__icon { font-size: 26px; color: var(--yellow); text-shadow: 0 0 12px var(--yellow); }
.info-card h3 { font-family: var(--font-pixel); font-size: 12px; color: var(--cyan-hot); letter-spacing: 1px; margin: 4px 0 8px; }
.info-card p { font-size: 19px; color: var(--cream); line-height: 1.3; }
.info-card--cta { background: linear-gradient(160deg, rgba(255,61,154,0.18), var(--panel)); border-color: var(--pink); }
.info-card--cta { justify-content: space-between; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; z-index: 1; }
.about__inner {
  max-width: 940px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); text-align: center;
}
.about__lead {
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.55; color: var(--cream);
}
.about__order {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 34px;
}
.order-block {
  flex: 1 1 300px; max-width: 400px;
  background: var(--panel); border: 2px solid var(--line); border-left: 4px solid var(--pink);
  padding: 20px 22px; text-align: left; display: flex; flex-direction: column; gap: 8px;
  transition: border-color .2s, transform .2s;
}
.order-block:hover { border-color: var(--cyan-hot); transform: translateY(-3px); }
.order-block__time {
  font-family: var(--font-pixel); font-size: 14px; color: var(--cyan-hot);
  letter-spacing: 1px; text-shadow: 0 0 10px rgba(54,230,245,0.4);
}
.order-block__desc { font-size: 20px; color: var(--cream); }

/* lineup reveal note */
.lineup__note {
  text-align: center; margin: 28px auto 0; max-width: 940px; padding: 0 16px;
  font-family: var(--font-pixel); font-size: 11px; line-height: 1.8;
  color: var(--yellow); letter-spacing: 1px; text-shadow: 0 0 10px rgba(244,224,77,0.4);
}

/* ============================================================
   ENTRY / age policy
   ============================================================ */
.entry { position: relative; z-index: 1; }
.entry__inner {
  max-width: 820px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); text-align: center;
}
.entry__rules { list-style: none; display: grid; gap: 14px; margin: 0 0 28px; text-align: left; }
.entry__rules li {
  background: var(--panel); border: 2px solid var(--line); border-left: 4px solid var(--cyan-hot);
  padding: 16px 20px; font-size: 19px; color: var(--cream); line-height: 1.4;
}
.entry__link {
  display: inline-block; font-family: var(--font-pixel); font-size: 11px; letter-spacing: 1px;
  color: var(--cyan-hot); border: 2px solid var(--cyan-hot); padding: 14px 22px;
  box-shadow: 4px 4px 0 rgba(155,107,255,0.5);
  transition: transform .12s, box-shadow .12s, background .12s;
}
.entry__link:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(155,107,255,0.7); background: rgba(54,230,245,0.08); }
.entry__link:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 1; margin-top: clamp(48px, 8vw, 90px);
  border-top: 2px solid var(--line); padding: 48px 16px;
  text-align: center; background: linear-gradient(180deg, transparent, rgba(102,56,182,0.12));
}
.footer__hope {
  font-family: var(--font-pixel); font-size: 13px; color: var(--pink);
  letter-spacing: 1px; margin-bottom: 22px; text-shadow: 0 0 10px rgba(255,61,154,0.5);
}
.footer__brand {
  font-family: var(--font-pixel); font-size: 20px; color: var(--cyan-hot);
  letter-spacing: 2px; text-shadow: 2px 2px 0 var(--pink);
}
.footer__by { font-size: 22px; margin-top: 14px; color: var(--cream); }
.footer__by strong { color: var(--yellow); }
.footer__contact {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 28px;
  margin: 20px 0 6px;
}
.footer__contact a {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 20px; color: var(--cyan-hot); letter-spacing: 1px;
  transition: color .15s, text-shadow .15s, filter .15s;
}
.footer__contact .ico { width: 22px; height: 22px; flex-shrink: 0; }
.footer__contact a:hover { color: var(--yellow); text-shadow: 0 0 10px rgba(244,224,77,0.6); filter: drop-shadow(0 0 6px rgba(244,224,77,0.6)); }
.footer__contact a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.footer__tags { font-size: 18px; color: var(--purple-lite); margin-top: 8px; letter-spacing: 2px; }
.footer__copy { font-size: 16px; color: rgba(237,238,224,0.45); margin-top: 18px; }

/* ============================================================
   LAND-FLASH
   When an in-page link scrolls you to a section, script.js adds
   .flash to the destination for ~1.8s. The target's interactive
   bits briefly pulse to their hover look, so you see where you
   landed. Each group ripples via a small per-item stagger.
   ============================================================ */
@keyframes land-card {
  0%, 100% { box-shadow: 0 0 0 0 rgba(54,230,245,0); transform: translateY(0); }
  45%      { box-shadow: 0 10px 32px rgba(102,56,182,0.5), 0 0 22px rgba(54,230,245,0.45);
             transform: translateY(-5px); border-color: var(--cyan-hot); }
}
@keyframes land-link {
  0%, 100% { color: var(--cyan-hot); text-shadow: none; filter: none; }
  45%      { color: var(--yellow); text-shadow: 0 0 10px rgba(244,224,77,0.7);
             filter: drop-shadow(0 0 6px rgba(244,224,77,0.6)); }
}

#lineup.flash .dj-card,
#info.flash .info-card,
#about.flash .order-block,
#entry.flash .entry__rules li,
.info-card.flash            { animation: land-card 0.6s ease 3; }
#contact.flash .footer__contact a { animation: land-link 0.6s ease 3; }

/* ripple: nudge each subsequent item's start so they don't blink in unison */
#lineup.flash .dj-card:nth-child(2),
#info.flash .info-card:nth-child(2),
#about.flash .order-block:nth-child(2),
#entry.flash .entry__rules li:nth-child(2),
#contact.flash .footer__contact a:nth-child(2) { animation-delay: 0.08s; }
#lineup.flash .dj-card:nth-child(3),
#info.flash .info-card:nth-child(3),
#contact.flash .footer__contact a:nth-child(3) { animation-delay: 0.16s; }
#lineup.flash .dj-card:nth-child(4),
#info.flash .info-card:nth-child(4)            { animation-delay: 0.24s; }

/* ============================================================
   ADMIN — badge, #admin link, modals, editor
   ============================================================ */
.admin-badge {
  align-self: center; margin-left: 2px;
  font-family: var(--font-pixel); font-size: 9px; letter-spacing: 1px;
  color: var(--ink); background: var(--yellow); border: 2px solid var(--ink);
  padding: 6px 8px; cursor: pointer; box-shadow: 2px 2px 0 var(--pink);
  transition: transform .12s, box-shadow .12s;
}
.admin-badge:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--pink); }

.footer__adminlink { color: var(--purple-lite); transition: color .15s, text-shadow .15s; }
.footer__adminlink:hover { color: var(--cyan-hot); text-shadow: 0 0 8px rgba(54,230,245,0.5); }

.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(4,3,12,0.82); backdrop-filter: blur(4px); }
.modal__box {
  position: relative; z-index: 1; width: 100%; max-width: 420px; max-height: 90vh; overflow-y: auto;
  background: var(--ink-2); border: 2px solid var(--cyan-hot); padding: 28px;
  box-shadow: 0 0 44px rgba(54,230,245,0.28), 8px 8px 0 rgba(255,61,154,0.3);
}
.modal__box--wide { max-width: 680px; }
.modal__x { position: absolute; top: 8px; right: 12px; background: none; border: none; color: var(--cream); font-size: 22px; line-height: 1; cursor: pointer; }
.modal__x:hover { color: var(--pink); }
.modal__title { font-family: var(--font-pixel); font-size: 16px; color: var(--cyan-hot); letter-spacing: 1px; margin-bottom: 20px; text-shadow: 2px 2px 0 var(--purple); }
body.modal-open { overflow: hidden; }

.adminform { display: flex; flex-direction: column; gap: 14px; }
.adminform > label { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-pixel); font-size: 9px; letter-spacing: 1px; color: var(--purple-lite); }
.adminform input, .editrow input[type="text"] {
  font-family: var(--font-mono); font-size: 18px; color: var(--cream);
  background: rgba(0,0,0,0.4); border: 2px solid var(--line); padding: 10px 12px;
}
.adminform input:focus, .editrow input:focus { outline: none; border-color: var(--cyan-hot); }
.adminform__err { color: var(--pink); font-size: 17px; }
.adminform__err[hidden] { display: none; }

.editlist { display: flex; flex-direction: column; gap: 16px; margin-bottom: 18px; }
.editrow { border: 2px solid var(--line); border-left: 4px solid var(--pink); padding: 14px 16px; }
.editrow__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.editrow__slot { font-family: var(--font-pixel); font-size: 11px; color: var(--cyan-hot); }
.editrow__reveal { font-family: var(--font-mono); font-size: 18px; color: var(--cream); display: flex; align-items: center; gap: 8px; cursor: pointer; }
.editrow__reveal input { width: 18px; height: 18px; accent-color: var(--cyan-hot); }
.editrow__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.editrow__grid label { display: flex; flex-direction: column; gap: 4px; font-family: var(--font-mono); font-size: 16px; color: var(--purple-lite); }
.editbar { display: flex; justify-content: space-between; gap: 12px; }
.editbar .btn { font-size: 11px; padding: 12px 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__poster { order: -1; }
  .poster-frame img { max-width: 300px; }
  .lineup__grid { grid-template-columns: repeat(2, 1fr); }
  .info__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 18px; }
  .nav { padding-left: 12px; padding-right: 12px; }
  .nav__left { gap: 10px; }
  .lang__code { display: none; }      /* flags only — saves room on phones */
  .lang__btn { padding: 6px; }
  .nav__links a:not(.nav__cta) { display: none; }
  /* shrink the brand so logo + lettering + tickets fit one row on phones */
  .nav__logo { gap: 7px; }
  .nav__logo-img { width: 34px; height: 34px; }
  .nav__logo-main { font-size: 12px; }
  .nav__logo-sub { font-size: 8px; letter-spacing: 3px; margin-top: 3px; }
  .lineup__grid { grid-template-columns: 1fr 1fr; }
  .info__grid { grid-template-columns: 1fr; }
  .cd-unit { min-width: 62px; padding: 10px; }
  .hero__emote { font-size: 20px; }
  .editrow__grid { grid-template-columns: 1fr; }
}

/* very small phones — squeeze the brand row so nothing overlaps the CTA */
@media (max-width: 430px) {
  .nav { padding-left: 10px; padding-right: 10px; }
  .nav__left { gap: 7px; }
  .nav__logo { gap: 5px; }
  .nav__logo-img { width: 26px; height: 26px; }
  .nav__logo-main { font-size: 11px; }
  .nav__logo-sub { font-size: 7px; letter-spacing: 2px; margin-top: 2px; }
  .lang { gap: 4px; }
  .lang__btn { padding: 5px; }
  .flag { width: 20px; height: 13px; }
  .nav__cta { padding: 8px 10px; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  html { scroll-behavior: auto; }
}
