/* ============================================================
   KOEVERNIGHT — Premium Redesign
   Donker · Goud · Concertlicht · 60fps
   ============================================================ */

:root {
  /* Palet gebaseerd op de originele KoeverNight-huisstijl: paars, wit, podiumlicht */
  --bg-0: #0d0716;
  --bg-1: #140b24;
  --bg-2: #1b1030;
  --bg-3: #23153e;
  --gold: #9b51e0;
  --gold-light: #c9a2ff;
  --gold-deep: #6a1fd0;
  --amber: #d13cff;
  --cap-gold: #eec26a;
  --neon-pink: #ff2e88;
  --neon-blue: #2ee6ff;
  --neon-purple: #a04dff;
  --text: #f4f0fb;
  --text-dim: #b9aed3;
  --text-faint: #7d6f9b;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-gold: rgba(155, 81, 224, 0.14);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #000; }

img, svg, video, canvas { max-width: 100%; display: block; }

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ---------- Typografie ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.section-title .accent,
.section-title.accent {
  background: linear-gradient(100deg, var(--gold-light) 10%, var(--gold) 45%, var(--amber) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.section-intro {
  max-width: 640px;
  color: var(--text-dim);
  font-size: 18px;
}

/* ---------- Layout helpers ---------- */

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

section { position: relative; }

.section-pad { padding: clamp(90px, 12vh, 150px) 0; }

/* ---------- Reveal animaties ---------- */

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.93) translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-scale.is-visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn-gold {
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 50%, var(--gold-deep));
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(155, 81, 224, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-gold:hover { box-shadow: 0 14px 44px rgba(155, 81, 224, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.btn-gold:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  border-color: rgba(155, 81, 224, 0.5);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45), 0 0 24px rgba(155, 81, 224, 0.12);
}

/* ============================================================
   NAVIGATIE
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              backdrop-filter 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 6, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-logo .logo-koe { color: var(--text); }
.nav-logo .logo-night {
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* Mini equalizer in logo */
.logo-eq {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 20px;
}
.logo-eq span {
  width: 3.5px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--gold-deep), var(--gold-light));
  animation: eq-bounce 1.05s ease-in-out infinite;
  transform-origin: bottom;
  height: 100%;
}
.logo-eq span:nth-child(1) { animation-delay: 0s; }
.logo-eq span:nth-child(2) { animation-delay: -0.35s; }
.logo-eq span:nth-child(3) { animation-delay: -0.6s; }
.logo-eq span:nth-child(4) { animation-delay: -0.15s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.28); }
  35% { transform: scaleY(1); }
  60% { transform: scaleY(0.5); }
  80% { transform: scaleY(0.82); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).is-active { color: var(--text); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).is-active::after { transform: scaleX(1); }

.nav-links .btn { padding: 12px 26px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.4s var(--ease-spring), opacity 0.3s, top 0.4s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 30px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobiel fullscreen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: radial-gradient(120% 120% at 80% 10%, rgba(155, 81, 224, 0.13), transparent 55%),
              radial-gradient(120% 120% at 15% 90%, rgba(160, 77, 255, 0.12), transparent 55%),
              rgba(5, 5, 9, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 36px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; display: grid; gap: 8px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 54px);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  display: inline-block;
  padding: 6px 0;
  opacity: 0;
  transform: translateY(30px) rotate(1.5deg);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out), color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu.is-open li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-menu.is-open li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-menu.is-open li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.is-open li:nth-child(4) a { transition-delay: 0.26s; }
.mobile-menu.is-open li:nth-child(5) a { transition-delay: 0.32s; }
.mobile-menu.is-open li:nth-child(6) a { transition-delay: 0.38s; }
.mobile-menu.is-open li:nth-child(7) a { transition-delay: 0.44s; }
.mobile-menu-footer {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.6s 0.5s;
}
.mobile-menu.is-open .mobile-menu-footer { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

/* Rooklagen */
.hero-smoke {
  position: absolute;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.85;
}
.hero-smoke::before,
.hero-smoke::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 55%;
  border-radius: 50%;
}
.hero-smoke::before {
  left: -5%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(160, 77, 255, 0.14), transparent 65%);
  animation: smoke-drift-a 26s ease-in-out infinite alternate;
}
.hero-smoke::after {
  right: -5%;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 46, 136, 0.1), transparent 65%);
  animation: smoke-drift-b 32s ease-in-out infinite alternate;
}
@keyframes smoke-drift-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(12%, -10%) scale(1.25); }
}
@keyframes smoke-drift-b {
  from { transform: translate(0, 0) scale(1.15); }
  to { transform: translate(-10%, 12%) scale(0.95); }
}

/* Publiek silhouet */
.hero-crowd {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 1;
  pointer-events: none;
  color: #030305;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(3, 3, 6, 0.75) 100%),
              linear-gradient(to bottom, rgba(3, 3, 6, 0.5), transparent 25%, transparent 70%, var(--bg-0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 140px;
  width: min(1100px, 100%);
  will-change: transform, opacity;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
  padding: 10px 24px;
  border-radius: 999px;
  background: rgba(155, 81, 224, 0.08);
  border: 1px solid rgba(155, 81, 224, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 14.5vw, 190px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin: 0 0 10px;
  background: linear-gradient(178deg, #ffffff 8%, var(--gold-light) 32%, var(--gold) 58%, #4d1596 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  filter: drop-shadow(0 10px 44px rgba(155, 81, 224, 0.33));
  position: relative;
}

.hero-sub {
  font-size: clamp(17px, 2.3vw, 23px);
  color: var(--text-dim);
  font-weight: 500;
  max-width: 620px;
  margin: 18px auto 12px;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin: 22px 0 38px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 9px; }
.hero-meta svg { width: 17px; height: 17px; flex: none; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.3s;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll .wheel {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px;
  position: relative;
}
.hero-scroll .wheel::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: currentColor;
  animation: wheel-drop 1.8s ease-in-out infinite;
}
@keyframes wheel-drop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   KOEIEN 🐄
   ============================================================ */

/* De koeienband uit de originele intro — rustig bewegend */
.hero-koeband {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--look-x, 0px), var(--look-y, 0px), 0);
  will-change: transform;
}
.hero-koeband img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  transform-origin: 50% 70%;
  animation: koeband-sway 19s ease-in-out infinite;
  will-change: transform;
}
/* zachte donkere waas voor leesbaarheid van de titel */
.hero-koeband::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(13, 7, 22, 0.66),
    rgba(13, 7, 22, 0.3) 38%,
    rgba(13, 7, 22, 0.42) 72%,
    rgba(13, 7, 22, 0.85));
}
@keyframes koeband-sway {
  0%   { transform: scale(1.05) translate(0, 0) rotate(0deg); }
  16%  { transform: scale(1.065) translate(-13px, 5px) rotate(-0.5deg); }
  34%  { transform: scale(1.075) translate(-5px, 9px) rotate(0.25deg); }
  52%  { transform: scale(1.085) translate(11px, 3px) rotate(0.55deg); }
  70%  { transform: scale(1.07) translate(6px, -5px) rotate(0.1deg); }
  86%  { transform: scale(1.055) translate(-4px, -2px) rotate(-0.35deg); }
  100% { transform: scale(1.05) translate(0, 0) rotate(0deg); }
}

/* Mascotte-sticker met opkomende "Boe!" (ticketsectie) */
.mascotte-sticker {
  position: absolute;
  top: clamp(90px, 13vh, 160px);
  right: clamp(18px, 6vw, 95px);
  z-index: 3;
  width: clamp(140px, 15vw, 250px);
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  transform: rotate(6deg);
  transform-origin: 50% 90%;
  animation: mascotte-rock 4.5s ease-in-out infinite;
  will-change: transform;
  transition: filter 0.4s;
}
.mascotte-sticker:hover { filter: brightness(1.1); }
.mascotte-sticker img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 4px solid #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6), 0 0 45px rgba(155, 81, 224, 0.4);
}
@keyframes mascotte-rock {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  25% { transform: rotate(4deg) translateY(-7px); }
  50% { transform: rotate(7.4deg) translateY(0); }
  75% { transform: rotate(5deg) translateY(-4px); }
}

.boe-bubble {
  position: absolute;
  top: -44px;
  left: -20px;
  padding: 9px 19px;
  border-radius: 18px 18px 18px 4px;
  background: #ffffff;
  color: #23153e;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.5) translateY(14px);
  transform-origin: bottom left;
  transition: opacity 0.35s var(--ease-spring), transform 0.35s var(--ease-spring);
  pointer-events: none;
}
.mascotte-sticker:hover .boe-bubble,
.mascotte-sticker.is-boe .boe-bubble { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .mascotte-sticker {
    position: static;
    display: block;
    width: 150px;
    margin: 30px auto 6px;
  }
}

/* Headbangende koeien in het publiek */
.crowd-koe {
  position: absolute;
  bottom: -6px;
  z-index: 2;
  width: 74px;
  color: #030305;
  animation: koe-jump 1.6s ease-in-out infinite;
  transform-origin: bottom center;
  pointer-events: none;
}
.crowd-koe svg { width: 100%; display: block; }
@keyframes koe-jump {
  0%, 100% { transform: translateY(14px) rotate(-2deg); }
  30% { transform: translateY(-12px) rotate(3deg); }
  50% { transform: translateY(2px) rotate(-1deg); }
  70% { transform: translateY(-6px) rotate(2deg); }
}

/* Lopende koe over de footer-rand */
.loopkoe {
  position: absolute;
  top: 10px;
  left: -140px;
  width: 110px;
  color: rgba(201, 162, 255, 0.5);
  animation: koe-walk 38s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.loopkoe svg { width: 100%; display: block; }
.loopkoe .koe-body { animation: koe-wobble 0.8s ease-in-out infinite; transform-origin: 50% 60%; }
@keyframes koe-walk {
  from { transform: translateX(0) scaleX(1); }
  49.9% { transform: translateX(calc(100vw + 280px)) scaleX(1); }
  50% { transform: translateX(calc(100vw + 280px)) scaleX(-1); }
  99.9% { transform: translateX(0) scaleX(-1); }
  to { transform: translateX(0) scaleX(1); }
}
@keyframes koe-wobble {
  0%, 100% { transform: rotate(-1.6deg) translateY(0); }
  50% { transform: rotate(1.6deg) translateY(-2px); }
}

/* Koeienvlekken-textuur (subtiel) */
.koevlekken {
  position: relative;
}
.koevlekken::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='200' viewBox='0 0 260 200'%3E%3Cpath fill='%23ffffff' d='M42 38c14-10 34-8 40 4s-4 26-18 30-30-2-34-12 0-14 12-22zM160 20c10-8 26-4 30 6s-2 18-14 22-24 0-26-8 2-14 10-20zM210 120c12-6 26 0 28 10s-8 18-20 18-20-8-20-16 4-8 12-12zM70 130c16-8 34-2 36 10s-10 22-26 22-26-10-24-20 2-6 14-12z'/%3E%3C/svg%3E");
  background-size: 260px 200px;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(155, 81, 224, 0.2);
  background: linear-gradient(90deg, rgba(155, 81, 224, 0.05), rgba(155, 81, 224, 0.1), rgba(155, 81, 224, 0.05));
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
  padding-right: 28px;
}
.marquee-track span em {
  font-style: normal;
  color: var(--gold);
  padding-right: 28px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   OVER + STATS
   ============================================================ */

.about { overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about-copy p + p { margin-top: 18px; }
.about-copy .lead {
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}
.about-copy p { color: var(--text-dim); }

.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  padding: 30px 26px;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--glass), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(155, 81, 224, 0.4); }
.stat-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 81, 224, 0.15), transparent 70%);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   LINE-UP
   ============================================================ */

.lineup {
  background:
    radial-gradient(70% 50% at 15% 20%, rgba(160, 77, 255, 0.07), transparent 60%),
    radial-gradient(60% 45% at 85% 75%, rgba(255, 46, 136, 0.06), transparent 60%),
    var(--bg-1);
}

.lineup-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 6vh, 70px);
}

.band-list { display: grid; gap: clamp(30px, 4.5vh, 48px); }

.band-card {
  --band-hue-a: var(--gold);
  --band-hue-b: var(--amber);
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.2s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}
.band-card:hover {
  border-color: color-mix(in srgb, var(--band-hue-a) 45%, transparent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px color-mix(in srgb, var(--band-hue-a) 16%, transparent);
}
.band-card:nth-child(even) { grid-template-columns: 1.08fr 0.92fr; }
.band-card:nth-child(even) .band-visual { order: 2; }

.band-card[data-accent="blue"] { --band-hue-a: var(--neon-blue); --band-hue-b: #7cf5ff; }
.band-card[data-accent="pink"] { --band-hue-a: var(--neon-pink); --band-hue-b: #ff7cb4; }
.band-card[data-accent="orange"] { --band-hue-a: #ff9d2e; --band-hue-b: #ffd27c; }

/* Visual zijde: podium-scene */
.band-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    radial-gradient(90% 75% at 50% 108%, color-mix(in srgb, var(--band-hue-a) 34%, transparent), transparent 62%),
    radial-gradient(60% 55% at 22% -8%, color-mix(in srgb, var(--band-hue-b) 24%, transparent), transparent 60%),
    linear-gradient(200deg, #0d0d16, #07070c 70%);
}

/* Bandfoto in de visual */
.band-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 6s ease-out, opacity 0.5s;
}
.band-card:hover .band-photo { transform: scale(1.06); opacity: 1; }
.band-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(13, 7, 22, 0.85), transparent 50%),
    radial-gradient(80% 60% at 50% 110%, color-mix(in srgb, var(--band-hue-a) 22%, transparent), transparent 65%);
}

/* Lichtbundels in band-visual */
.band-visual .beam {
  z-index: 2;
}
.band-visual .beam {
  position: absolute;
  top: -12%;
  width: 130px;
  height: 130%;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--band-hue-a) 45%, transparent), transparent 78%);
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0% 100%);
  opacity: 0.34;
  transform-origin: top center;
  filter: blur(3px);
  transition: opacity 0.6s;
}
.band-visual .beam:nth-child(1) { left: 10%; animation: beam-sway-a 7.5s ease-in-out infinite alternate; }
.band-visual .beam:nth-child(2) { left: 42%; animation: beam-sway-b 6.2s ease-in-out infinite alternate; }
.band-visual .beam:nth-child(3) { left: 72%; animation: beam-sway-a 8.4s ease-in-out infinite alternate-reverse; }
.band-card:hover .beam { opacity: 0.62; }
@keyframes beam-sway-a {
  from { transform: rotate(-16deg); }
  to { transform: rotate(14deg); }
}
@keyframes beam-sway-b {
  from { transform: rotate(12deg); }
  to { transform: rotate(-14deg); }
}

.band-visual .band-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(120px, 15vw, 220px);
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--band-hue-a) 55%, transparent);
  opacity: 0.5;
  transition: transform 0.8s var(--ease-out), opacity 0.6s;
  transform: translateZ(30px);
}
.band-card:hover .band-monogram { opacity: 0.9; transform: translateZ(30px) scale(1.06); }

/* Equalizer onderin visual */
.band-eq {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 64px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0 18px;
  opacity: 0.55;
  transition: opacity 0.5s;
}
.band-card:hover .band-eq { opacity: 1; }
.band-eq i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--band-hue-a) 80%, transparent), color-mix(in srgb, var(--band-hue-b) 55%, transparent));
  animation: eq-bounce 0.95s ease-in-out infinite;
  transform-origin: bottom;
  height: 100%;
}

.band-genre-chip {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(115deg, var(--band-hue-b), var(--band-hue-a));
  box-shadow: 0 6px 24px color-mix(in srgb, var(--band-hue-a) 40%, transparent);
}

/* Info zijde */
.band-info {
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.band-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  transition: letter-spacing 0.5s var(--ease-out);
}
.band-card:hover .band-name { letter-spacing: 0.035em; }
.band-tribute {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--band-hue-a);
  margin-top: -6px;
}
.band-bio { color: var(--text-dim); font-size: 16px; }

.band-songs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.band-songs li {
  font-size: 13px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
}
.band-songs li:hover {
  border-color: var(--band-hue-a);
  color: var(--text);
  transform: translateY(-2px);
}
.band-songs li::before { content: '♪'; color: var(--band-hue-a); font-size: 12px; }

.band-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  border-top: 1px solid var(--glass-border);
  padding-top: 18px;
  margin-top: 4px;
}
.band-meta strong { color: var(--gold-light); font-weight: 800; }

/* ============================================================
   TIJDSCHEMA
   ============================================================ */

.schedule-note {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 26px;
  letter-spacing: 0.05em;
}

.timeline {
  position: relative;
  margin-top: clamp(40px, 6vh, 64px);
  display: grid;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 89px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(155, 81, 224, 0.45) 12%, rgba(155, 81, 224, 0.45) 88%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 42px 1fr;
  align-items: stretch;
  gap: 0 18px;
  padding: 8px 0;
  position: relative;
}

.timeline-time {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--text-dim);
  text-align: right;
  padding-top: 24px;
  transition: color 0.35s;
}
.timeline-item:hover .timeline-time,
.timeline-item.is-live .timeline-time { color: var(--gold-light); }

.timeline-node {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.timeline-node::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg-1);
  z-index: 1;
  transition: background 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-spring);
}
.timeline-item:hover .timeline-node::before {
  background: var(--gold);
  box-shadow: 0 0 24px rgba(155, 81, 224, 0.8);
  transform: scale(1.25);
}

.timeline-card {
  border-radius: 20px;
  padding: 22px 28px;
  margin: 6px 0;
  background: linear-gradient(140deg, var(--glass), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.timeline-item:hover .timeline-card {
  border-color: rgba(155, 81, 224, 0.45);
  transform: translateX(8px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.45), 0 0 34px rgba(155, 81, 224, 0.09);
}
.timeline-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--tl-a, var(--gold)), var(--tl-b, var(--amber)));
  opacity: 0;
  transition: opacity 0.4s;
}
.timeline-item:hover .timeline-card::before { opacity: 1; }

.timeline-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.timeline-card p { font-size: 14.5px; color: var(--text-dim); width: 100%; }
.timeline-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--tl-a, var(--gold)) 16%, transparent);
  color: var(--tl-b, var(--gold-light));
  border: 1px solid color-mix(in srgb, var(--tl-a, var(--gold)) 35%, transparent);
}

/* ============================================================
   TICKETS
   ============================================================ */

.tickets {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(155, 81, 224, 0.09), transparent 60%),
    var(--bg-1);
  overflow: hidden;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  margin: 40px 0 56px;
  flex-wrap: wrap;
}
.count-unit {
  min-width: clamp(80px, 11vw, 128px);
  padding: 22px 12px 18px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.count-unit::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 255, 0.7), transparent);
}
.count-value {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  background: linear-gradient(180deg, #f3ebff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.count-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.countdown-done {
  display: none;
  text-align: center;
  margin: 40px auto 56px;
  max-width: 560px;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(155, 81, 224, 0.35);
  background: var(--glass-gold);
  font-size: 18px;
  font-weight: 600;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.ticket-card {
  position: relative;
  border-radius: 26px;
  padding: 40px 34px 36px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
  will-change: transform;
}
.ticket-card:hover {
  transform: translateY(-10px);
  border-color: rgba(155, 81, 224, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 44px rgba(155, 81, 224, 0.1);
}

.ticket-card.is-featured {
  background: linear-gradient(170deg, rgba(155, 81, 224, 0.16), rgba(155, 81, 224, 0.04) 55%, rgba(255, 255, 255, 0.02));
  border-color: rgba(155, 81, 224, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 60px rgba(155, 81, 224, 0.14);
}
.ticket-card.is-featured:hover { transform: translateY(-12px) scale(1.015); }

.ticket-flag {
  position: absolute;
  top: 20px;
  right: -42px;
  transform: rotate(38deg);
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 48px;
  box-shadow: 0 6px 20px rgba(155, 81, 224, 0.4);
}

.ticket-type {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.ticket-card.is-featured .ticket-type { color: var(--gold-light); }

.ticket-price {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 74px);
  line-height: 1;
}
.ticket-price sup { font-size: 0.42em; top: -0.9em; margin-right: 4px; }
.ticket-price .cents { font-size: 0.42em; vertical-align: super; }
.ticket-card.is-featured .ticket-price {
  background: linear-gradient(120deg, #f3ebff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.ticket-perks {
  list-style: none;
  display: grid;
  gap: 11px;
  font-size: 15px;
  color: var(--text-dim);
  flex: 1;
}
.ticket-perks li { display: flex; gap: 11px; align-items: flex-start; }
.ticket-perks li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex: none;
}
.ticket-perks li.is-off { opacity: 0.4; }
.ticket-perks li.is-off::before { content: '—'; color: var(--text-faint); }

.ticket-status {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
}
.ticket-status .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.ticket-social-proof {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 38px;
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 600;
}
.ticket-social-proof span { display: inline-flex; align-items: center; gap: 9px; }
.ticket-social-proof svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* ============================================================
   VENUE
   ============================================================ */

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4.5vw, 60px);
  align-items: stretch;
  margin-top: 20px;
}

.venue-map-wrap {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
  min-height: 440px;
  background: var(--bg-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.venue-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) invert(0.92) hue-rotate(185deg) saturate(0.4) brightness(0.9) contrast(1.05);
}
.venue-map-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px 22px;
  border-radius: 16px;
  background: rgba(8, 8, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(155, 81, 224, 0.3);
  pointer-events: none;
}
.venue-map-overlay strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.venue-map-overlay span { font-size: 13.5px; color: var(--text-dim); }

.venue-facts { display: grid; gap: 14px; align-content: start; }
.venue-fact {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--glass), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--glass-border);
  align-items: center;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.venue-fact:hover { transform: translateX(8px); border-color: rgba(155, 81, 224, 0.4); }
.venue-fact-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-gold);
  border: 1px solid rgba(155, 81, 224, 0.3);
  color: var(--gold-light);
}
.venue-fact-icon svg { width: 26px; height: 26px; }
.venue-fact h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.venue-fact p { font-size: 14.5px; color: var(--text-dim); }

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  background:
    radial-gradient(65% 45% at 80% 12%, rgba(160, 77, 255, 0.08), transparent 60%),
    var(--bg-1);
}

.gallery-masonry {
  columns: 3;
  column-gap: 18px;
  margin-top: 30px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  padding: 0;
  width: 100%;
  background: none;
  display: block;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.5s;
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  border-color: rgba(155, 81, 224, 0.45);
}
.gallery-scene {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s ease-out;
}
.gallery-item:hover .gallery-scene { transform: scale(1.09); }

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(4, 4, 8, 0.92), transparent);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-align: left;
}
.gallery-caption em { display: block; font-style: normal; color: var(--gold); font-size: 11px; margin-top: 2px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(3, 3, 6, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-content {
  width: min(1000px, 100%);
  transform: scale(0.92);
  transition: transform 0.45s var(--ease-spring);
}
.lightbox.is-open .lightbox-content { transform: scale(1); }
.lightbox-content svg {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}
.lightbox-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lightbox-caption em { color: var(--gold); font-style: normal; }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-spring);
}
.lightbox-close:hover,
.lightbox-nav:hover { border-color: var(--gold); background: var(--glass-gold); transform: scale(1.08); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-nav.prev { left: 26px; top: 50%; margin-top: -26px; }
.lightbox-nav.next { right: 26px; top: 50%; margin-top: -26px; }

/* ============================================================
   BELEEF TEASER (index)
   ============================================================ */

.experience-teaser {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 16vh, 190px) 0;
  text-align: center;
  isolation: isolate;
}
.experience-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(70% 90% at 50% 110%, rgba(155, 81, 224, 0.2), transparent 60%),
    radial-gradient(45% 60% at 12% 0%, rgba(160, 77, 255, 0.16), transparent 60%),
    radial-gradient(45% 60% at 88% 10%, rgba(255, 46, 136, 0.13), transparent 60%),
    var(--bg-0);
}
.experience-teaser .beam-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.beam-field .beam {
  position: absolute;
  top: -10%;
  width: 160px;
  height: 120%;
  background: linear-gradient(to bottom, rgba(155, 81, 224, 0.24), transparent 75%);
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0% 100%);
  transform-origin: top center;
  filter: blur(4px);
}
.beam-field .beam:nth-child(1) { left: 6%; animation: beam-sway-a 9s ease-in-out infinite alternate; }
.beam-field .beam:nth-child(2) { left: 30%; animation: beam-sway-b 7s ease-in-out infinite alternate; background: linear-gradient(to bottom, rgba(255, 46, 136, 0.17), transparent 75%); }
.beam-field .beam:nth-child(3) { left: 58%; animation: beam-sway-a 8s ease-in-out infinite alternate-reverse; background: linear-gradient(to bottom, rgba(46, 230, 255, 0.14), transparent 75%); }
.beam-field .beam:nth-child(4) { left: 82%; animation: beam-sway-b 10s ease-in-out infinite alternate-reverse; }

.experience-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 100px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}
.experience-teaser p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--text-dim);
  font-size: 18px;
}

/* ============================================================
   QUOTES (beleef + teaser)
   ============================================================ */

.quotes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(40px, 6vh, 64px);
}
.quote-card {
  padding: 34px 30px;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--glass), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--glass-border);
  text-align: left;
  position: relative;
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
}
.quote-card:hover { transform: translateY(-7px); border-color: rgba(155, 81, 224, 0.4); }
.quote-card::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  position: absolute;
  top: 14px;
  left: 22px;
}
.quote-card blockquote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
  margin: 26px 0 20px;
}
.quote-card figcaption {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.quote-card figcaption span { display: block; color: var(--text-faint); margin-top: 2px; letter-spacing: 0.08em; }
.quote-stars { color: var(--cap-gold); letter-spacing: 3px; font-size: 14px; }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  display: grid;
  gap: 14px;
}
.faq-item {
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(150deg, var(--glass), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.faq-item.is-open {
  border-color: rgba(155, 81, 224, 0.45);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.4), 0 0 30px rgba(155, 81, 224, 0.07);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q .faq-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.45s var(--ease-spring), border-color 0.3s, background 0.3s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(135deg);
  border-color: var(--gold);
  background: var(--glass-gold);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 15.5px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: linear-gradient(to bottom, var(--bg-0), #030305);
  border-top: 1px solid rgba(155, 81, 224, 0.16);
  padding: clamp(70px, 9vh, 110px) 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(155, 81, 224, 0.12), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(34px, 4vw, 60px);
  margin-bottom: 60px;
}

.footer-brand .nav-logo { font-size: 26px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 15px; max-width: 300px; }

.footer h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}
.footer ul a:hover { color: var(--gold-light); padding-left: 6px; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.social-btn:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 10px 26px rgba(155, 81, 224, 0.2);
}
.social-btn svg { width: 20px; height: 20px; }

.newsletter-form { display: flex; gap: 0; margin-top: 6px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 999px 0 0 999px;
  border: 1px solid var(--glass-border);
  border-right: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: var(--text-faint); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  padding: 15px 26px;
  border-radius: 0 999px 999px 0;
  border: 0;
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: filter 0.3s;
}
.newsletter-form button:hover { filter: brightness(1.12); }
.newsletter-msg { font-size: 13.5px; color: var(--gold-light); margin-top: 12px; min-height: 20px; }

.footer-partner-note {
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px dashed rgba(155, 81, 224, 0.35);
  font-size: 14px;
  color: var(--text-dim);
}
.footer-partner-note a { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-faint);
}
.footer-bottom a { color: var(--text-faint); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom .legal { display: flex; gap: 24px; }

/* ============================================================
   CHATBOT
   ============================================================ */

.chatbot-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(155, 81, 224, 0.5);
  background: linear-gradient(140deg, #1a1a24, #0d0d14);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 26px rgba(155, 81, 224, 0.18);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}
.chatbot-fab:hover { transform: scale(1.09); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(155, 81, 224, 0.3); }
.chatbot-fab svg { width: 27px; height: 27px; }

.chatbot-panel {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 1000;
  width: min(380px, calc(100vw - 40px));
  max-height: min(560px, calc(100vh - 140px));
  border-radius: 24px;
  background: rgba(12, 12, 18, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(155, 81, 224, 0.3);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-spring), visibility 0.4s;
}
.chatbot-panel.is-open { opacity: 1; visibility: visible; transform: none; }

.chatbot-head {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(115deg, rgba(155, 81, 224, 0.14), transparent 65%);
}
.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-light), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex: none;
}
.chatbot-head strong { font-size: 15.5px; display: block; }
.chatbot-head small { font-size: 12px; color: #4ade80; display: flex; align-items: center; gap: 6px; }
.chatbot-head small::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}

.chatbot-log {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 81, 224, 0.35) transparent;
}
.chat-msg {
  max-width: 85%;
  padding: 12px 17px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  animation: chat-in 0.4s var(--ease-out);
}
@keyframes chat-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.chat-msg.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom-left-radius: 6px;
}
.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(120deg, rgba(155, 81, 224, 0.9), rgba(106, 31, 208, 0.9));
  color: #ffffff;
  font-weight: 600;
  border-bottom-right-radius: 6px;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 14px;
}
.chat-suggestions button {
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(155, 81, 224, 0.4);
  background: rgba(155, 81, 224, 0.08);
  color: var(--gold-light);
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.chat-suggestions button:hover { background: rgba(155, 81, 224, 0.2); transform: translateY(-2px); }

.chatbot-input {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.chatbot-input input {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}
.chatbot-input input:focus { outline: none; border-color: var(--gold); }
.chatbot-input button {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring), filter 0.3s;
}
.chatbot-input button:hover { transform: scale(1.08); filter: brightness(1.1); }
.chatbot-input svg { width: 19px; height: 19px; }

/* ============================================================
   MOUSE FOLLOWER
   ============================================================ */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(155, 81, 224, 0.07), rgba(155, 81, 224, 0.025) 38%, transparent 62%);
  opacity: 0;
  transition: opacity 0.6s;
  will-change: transform;
  mix-blend-mode: screen;
}
body.has-mouse .cursor-glow { opacity: 1; }

/* ============================================================
   CONFETTI CANVAS
   ============================================================ */

#confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
}

/* ============================================================
   BELEEF-PAGINA
   ============================================================ */

.experience-hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 24px 100px;
}
.experience-hero .hero-content { padding: 0; }

.exp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 6vh, 60px);
}

.exp-scene {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}
.exp-scene svg { width: 100%; display: block; }
.exp-scene-caption {
  position: absolute;
  left: 26px;
  bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 38px);
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.aftermovie-cta {
  margin-top: 60px;
  padding: clamp(40px, 6vw, 70px);
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 120%, rgba(155, 81, 224, 0.16), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(155, 81, 224, 0.3);
  position: relative;
  overflow: hidden;
}
.aftermovie-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 52px);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.aftermovie-cta p { color: var(--text-dim); max-width: 520px; margin: 0 auto 30px; }

.play-ring {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 2px solid rgba(155, 81, 224, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  position: relative;
}
.play-ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(155, 81, 224, 0.4);
  animation: ring-pulse 2.4s ease-out infinite;
}
@keyframes ring-pulse {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.7); opacity: 0; }
}
.play-ring svg { width: 30px; height: 30px; margin-left: 4px; }

/* Vorige editie kaarten */
.edition-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.edition-card {
  padding: 34px 30px;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--glass), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--glass-border);
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
  position: relative;
  overflow: hidden;
}
.edition-card:hover { transform: translateY(-8px); border-color: rgba(155, 81, 224, 0.4); }
.edition-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.edition-card .band-tribute { position: static; margin: 0 0 12px; }
.edition-card p { font-size: 15px; color: var(--text-dim); }

/* ============================================================
   EDITIES-ARCHIEF
   ============================================================ */

.edition-block {
  position: relative;
  overflow: hidden;
}
.edition-block.alt { background: var(--bg-1); }

.edition-year {
  position: absolute;
  top: clamp(20px, 5vh, 60px);
  right: -0.06em;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(130px, 24vw, 340px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(155, 81, 224, 0.22);
  pointer-events: none;
  user-select: none;
}

.edition-head { position: relative; z-index: 1; }

.edition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}
.edition-meta span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(155, 81, 224, 0.35);
  background: var(--glass-gold);
  color: var(--gold-light);
}

.archive-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(30px, 5vh, 50px);
}
.archive-band-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, var(--glass), rgba(255, 255, 255, 0.015));
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}
.archive-band-card:hover {
  transform: translateY(-8px);
  border-color: rgba(155, 81, 224, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(155, 81, 224, 0.1);
}
.archive-band-card .visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.archive-band-card .visual img,
.archive-band-card .visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 5s ease-out;
}
.archive-band-card:hover .visual img,
.archive-band-card:hover .visual svg { transform: scale(1.07); }
.archive-band-card .info { padding: 22px 26px 26px; }
.archive-band-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.archive-band-card .band-tribute { margin: 2px 0 10px; }
.archive-band-card p { font-size: 14.5px; color: var(--text-dim); }

@media (max-width: 1024px) {
  .archive-band-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============================================================
   SPOTIFY / PLAYLIST STRIP
   ============================================================ */

.playlist-strip {
  margin-top: 60px;
  border-radius: 26px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(140deg, rgba(30, 215, 96, 0.08), rgba(255, 255, 255, 0.02));
  padding: clamp(30px, 4vw, 46px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
.playlist-strip .play-icon {
  width: 64px;
  height: 64px;
  flex: none;
  border-radius: 18px;
  background: #1ed760;
  color: #04220e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.playlist-strip .play-icon svg { width: 32px; height: 32px; }
.playlist-strip h3 { font-size: 21px; font-weight: 800; margin-bottom: 4px; }
.playlist-strip p { color: var(--text-dim); font-size: 15px; }
.playlist-strip .grow { flex: 1; min-width: 240px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 1800px) {
  .container { width: min(1440px, calc(100% - 64px)); }
  body { font-size: 18px; }
}

@media (max-width: 1024px) {
  .band-card,
  .band-card:nth-child(even) { grid-template-columns: 1fr; }
  .band-card:nth-child(even) .band-visual { order: 0; }
  .band-visual { min-height: 280px; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .exp-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .crowd-koe { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .venue-map-wrap { min-height: 340px; }
  .ticket-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .quotes-row { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .edition-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 42px 1fr; }
  .timeline-time { display: none; }
  .timeline-card h3 { font-size: 20px; }
  .timeline-card .tl-time-inline { display: inline; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .gallery-masonry { columns: 1; }
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 10px 18px; font-size: 13px; }
  .hero-ctas .btn { width: 100%; }
  .lightbox { padding: 20px; }
  .lightbox-nav { display: none; }
  .chatbot-panel { right: 12px; bottom: 92px; }
  .chatbot-fab { right: 16px; bottom: 16px; }
  .exp-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

.tl-time-inline { display: none; color: var(--gold-light); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
