/* ═══════════════════════════════════════════════════════════
   BACK TO THE MOVIES — Website Stylesheet
   Style: Synthwave / Neon Dark + West End Theatrical accents
   Mobile-first · British English · No external dependencies
═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-void:    #050210;
  --bg-deep:    #080518;
  --bg-dark:    #0d0820;
  --bg-mid:     #110b28;
  --bg-red:     #12040a;

  /* Neon palette */
  --neon-pink:     #ff00ff;
  --neon-pink-dim: rgba(255, 0, 255, 0.55);
  --neon-cyan:     #00e5ff;
  --neon-purple:   #9933ff;
  --neon-glow-sm:  0 0 8px currentColor, 0 0 16px currentColor;

  /* Brand */
  --gold:       #C9A84C;
  --gold-light: #ffd700;
  --deep-red:   #8B0000;
  --cream:      #f5e6cc;

  /* Text */
  --text-white:  #ffffff;
  --text-bright: rgba(255, 255, 255, 0.92);
  --text-dim:    rgba(255, 255, 255, 0.65);
  --text-dimmer: rgba(255, 255, 255, 0.4);

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Black', Impact, sans-serif;
  --font-retro:   'Orbitron', 'Courier New', monospace;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad:  clamp(4rem, 10vw, 8rem);
  --container:    1200px;
  --gutter:       clamp(1.25rem, 5vw, 2rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-void);
  color: var(--text-bright);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

address { font-style: normal; }

/* ── Neon border frame ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  border: 2px solid var(--neon-pink-dim);
  box-shadow:
    inset 0 0 40px rgba(255, 0, 255, 0.08),
    0 0 40px rgba(255, 0, 255, 0.05);
  pointer-events: none;
  z-index: 9999;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Shared section labels ─────────────────────────────── */
.section-label {
  font-family: var(--font-retro);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.body-text {
  color: var(--text-dim);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--bg-void);
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5), 0 0 40px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.8), 0 0 60px rgba(201, 168, 76, 0.4);
  outline: none;
}

.btn-primary--gold {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  padding: 1.1rem 3.5rem;
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.25rem;
  color: var(--neon-pink);
  border: 1px solid var(--neon-pink);
  background: transparent;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.3), inset 0 0 12px rgba(255, 0, 255, 0.05);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 0, 255, 0.1);
  box-shadow: 0 0 24px rgba(255, 0, 255, 0.6), inset 0 0 24px rgba(255, 0, 255, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  color: var(--cream);
  border: 1px solid rgba(245, 230, 204, 0.4);
  background: transparent;
  transition: all 0.25s var(--ease-out);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--cream);
  background: rgba(245, 230, 204, 0.08);
  outline: none;
}


/* ════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(8, 5, 24, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom-color: rgba(255, 0, 255, 0.25);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
  flex-shrink: 0;
}

.nav-logo-line1 {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  opacity: 0.8;
}

.nav-logo-line2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #ff6ec7, #ffd700, #9933ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 0, 255, 0.5));
}

.nav-logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  font-family: var(--font-retro);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.nav-links li a:hover,
.nav-links li a:focus-visible {
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink);
  outline: none;
}

.nav-cta {
  font-family: var(--font-display) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.15em !important;
  color: var(--bg-void) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 0.55rem 1.4rem;
  transition: box-shadow 0.25s, transform 0.25s !important;
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.4);
}

.nav-cta:hover {
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.7) !important;
  transform: translateY(-2px);
  text-shadow: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--neon-pink);
  transition: all 0.3s;
  box-shadow: 0 0 6px var(--neon-pink);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem var(--gutter) 4rem;
  max-width: 900px;
}

.hero-tagline {
  font-family: var(--font-retro);
  font-size: clamp(0.6rem, 1.5vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
  margin-bottom: 1.5rem;
  animation: taglinePulse 3s ease-in-out infinite;
}

@keyframes taglinePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.hero-logo-img {
  width: clamp(260px, 55vw, 680px);
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6)) drop-shadow(0 0 50px rgba(153, 51, 255, 0.4));
}

.hero-title {
  margin-bottom: 1rem;
}

.title-back {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 4rem);
  letter-spacing: 0.18em;
  color: var(--cream);
  text-shadow: 0 0 30px rgba(255, 200, 140, 0.4);
  line-height: 1;
  margin-bottom: 0.1em;
}

.title-movies {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 13rem);
  letter-spacing: -0.01em;
  line-height: 0.88;
  background: linear-gradient(
    135deg,
    #ff6ec7 0%,
    #ffd700 22%,
    #c9a84c 40%,
    #ff99dd 58%,
    #9933ff 78%,
    #ff6ec7 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 110, 199, 0.55));
  animation: shimmer 6s ease infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-family: var(--font-retro);
  font-size: clamp(0.65rem, 1.8vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: var(--font-retro);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.hero-date {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

.hero-sep { color: var(--neon-pink-dim); }

.hero-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-dimmer);
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: scrollBob 2.5s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.scroll-label {
  font-family: var(--font-retro);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--text-dimmer);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-pink-dim), transparent);
}


/* ════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════ */
.section-about {
  background: var(--bg-mid);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.section-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,0,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.about-copy .btn-secondary {
  margin-top: 1.5rem;
}

/* Cassette pile visual */
.cassette-pile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cassette-pile-img {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.3));
}

/* CSS fallback cassette stack */
.cassette-stack-fallback {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 280px;
  margin-inline: auto;
}

.cs-tape {
  position: absolute;
  width: 260px;
  background: #1a1030;
  border: 1px solid rgba(255,0,255,0.3);
  border-radius: 6px;
  padding: 1rem 1.25rem 1.25rem;
  box-shadow: 0 0 20px rgba(255,0,255,0.15);
}

.cs-tape--1 { top: 0;   left: 20px;  transform: rotate(-8deg); z-index: 3; }
.cs-tape--2 { top: 60px; left: 60px; transform: rotate(3deg);  z-index: 2; }
.cs-tape--3 { top: 120px; left: 30px; transform: rotate(-4deg); z-index: 1; }

.cs-stripe {
  height: 6px;
  background: linear-gradient(90deg, #ff0080, #ff8800, #00ff80, #0080ff, #8000ff);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.cs-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.cs-sub {
  display: block;
  font-family: var(--font-retro);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--neon-pink);
  margin-top: 0.25rem;
}


/* ════════════════════════════════════════════════════════
   SETLIST
════════════════════════════════════════════════════════ */
.section-setlist {
  background: var(--bg-void);
  padding-block: var(--section-pad);
  position: relative;
}

.section-setlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153,51,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153,51,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.setlist-intro {
  color: var(--text-dim);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-bottom: 3rem;
  max-width: 600px;
}

/* ── Poster carousel ─────────────────────────────── */
.poster-carousel {
  position: relative;
  margin-bottom: 3rem;
  padding: 0 3rem;
}

.pc-track-wrap {
  overflow: hidden;
  border-radius: 8px;
}

.pc-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.pc-slide {
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: 0;
}

.pc-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 0, 255, 0.2);
}

.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pc-card:hover .pc-img {
  transform: scale(1.04);
}

/* Play icon easter egg */
.pc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(4, 0, 14, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  padding-left: 3px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.pc-card:hover .pc-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pc-card[data-youtube] {
  cursor: pointer;
}

.pc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.25rem 2rem;
  background: linear-gradient(to bottom,
    rgba(4, 0, 14, 0.95) 0%,
    rgba(4, 0, 14, 0.75) 50%,
    transparent 100%
  );
}

.pc-film {
  font-family: var(--font-retro);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink);
  margin-bottom: 0.3rem;
}

.pc-song {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* Prev / Next arrows */
.pc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 255, 0.35);
  background: rgba(8, 5, 24, 0.85);
  color: var(--neon-pink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  z-index: 2;
}

.pc-btn:hover {
  background: rgba(255, 0, 255, 0.15);
  border-color: var(--neon-pink);
}

.pc-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.pc-btn--prev { left: 0; }
.pc-btn--next { right: 0; }

/* Dot indicators */
.pc-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.pc-dot.active {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  transform: scale(1.3);
  box-shadow: 0 0 6px var(--neon-pink);
}

/* Mobile: single card */
@media (max-width: 767px) {
  .poster-carousel {
    padding: 0 2.5rem;
  }
  .pc-slide {
    flex: 0 0 85%;
  }
}

/* ── Cookie consent banner ──────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(8, 5, 24, 0.97);
  border-top: 1px solid rgba(255, 0, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 1.5rem;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-banner__content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.82rem;
  color: #9080b0;
  min-width: 200px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--neon-pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  font-family: var(--font-retro);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-btn--reject {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #9080b0;
}

.cookie-btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cookie-btn--accept {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #0a0520;
}

.cookie-btn--accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── Full setlist accordion ──────────────────── */
.setlist-full {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.setlist-accordion {
  background: rgba(13, 8, 32, 0.8);
}

.setlist-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-retro);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink);
  user-select: none;
  list-style: none;
  transition: background 0.2s;
}

.setlist-summary::-webkit-details-marker { display: none; }

.setlist-summary:hover {
  background: rgba(255, 0, 255, 0.05);
}

.sa-chevron {
  transition: transform 0.3s var(--ease-out);
  font-size: 0.7rem;
}

details[open] .sa-chevron {
  transform: rotate(180deg);
}

.setlist-content {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 0, 255, 0.15);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.act-heading {
  margin-bottom: 1rem;
}

.act-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

.song-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.song-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.song-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-bright);
  flex: 1;
  min-width: 0;
}

.song-film {
  font-family: var(--font-retro);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--text-dimmer);
  text-align: right;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════
   VENUE
════════════════════════════════════════════════════════ */
.section-venue {
  background: var(--bg-red);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}

/* Deep red atmosphere glow */
.section-venue::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(139,0,0,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.venue-address {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
  margin-bottom: 1.5rem;
}

.venue-access {
  margin-bottom: 2rem;
}

.venue-map-wrap {
  display: flex;
  align-items: stretch;
}

.map-placeholder {
  flex: 1;
  background: rgba(139, 0, 0, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 280px;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.2), inset 0 0 40px rgba(139, 0, 0, 0.1);
  transition: border-color 0.3s;
}

.map-placeholder:hover {
  border-color: rgba(201, 168, 76, 0.6);
}

.map-pin {
  font-size: 2.5rem;
  line-height: 1;
}

.map-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.map-addr {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.map-open-link {
  font-family: var(--font-retro);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}

.map-open-link:hover { opacity: 0.75; }


/* ════════════════════════════════════════════════════════
   TICKETS CTA
════════════════════════════════════════════════════════ */
.section-tickets {
  background: var(--bg-deep);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Gold glow pulse background */
.section-tickets::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  animation: ticketGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ticketGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* Neon pink border top */
.section-tickets::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--gold), var(--neon-pink), transparent);
}

.tickets-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}

.tickets-overline {
  font-family: var(--font-retro);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  margin-bottom: 0.75rem;
}

.tickets-date {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4), 0 0 80px rgba(255, 215, 0, 0.15);
  margin-bottom: 0.5rem;
}

.tickets-detail {
  font-family: var(--font-retro);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.tickets-copy {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.tickets-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-dimmer);
  letter-spacing: 0.03em;
}


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-void);
  padding-block: 4rem 2rem;
  border-top: 1px solid rgba(255, 0, 255, 0.2);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink-dim), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* Footer logo */
.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.35));
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.fl-back {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--cream);
  opacity: 0.7;
}

.fl-movies {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ff6ec7, #ffd700, #9933ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-stars {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-shadow: 0 0 8px rgba(201,168,76,0.5);
  margin-bottom: 0.3rem;
}

.footer-url {
  font-family: var(--font-retro);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-dimmer);
}

/* Footer details */
.footer-show-line {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.9;
}

.footer-show-line strong {
  color: var(--cream);
}

.footer-email a {
  color: var(--neon-cyan);
  font-family: var(--font-retro);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  text-shadow: 0 0 8px var(--neon-cyan);
}

.footer-email a:hover { opacity: 0.7; }

/* Social */
.footer-social-label {
  font-family: var(--font-retro);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-retro);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
}

.social-link:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink);
}

.social-link svg {
  flex-shrink: 0;
  transition: filter 0.2s;
}

.social-link:hover svg {
  filter: drop-shadow(0 0 6px var(--neon-pink));
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-company {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0.7;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-dimmer);
}

.footer-legal-links {
  font-size: 0.75rem;
  color: var(--text-dimmer);
  margin-top: 0.35rem;
}

.footer-legal-links a {
  color: var(--text-dimmer);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-links a:hover {
  color: var(--neon-pink);
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet 768px+
════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .cassette-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .setlist-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .venue-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — Desktop 1200px+
════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {

  .cassette-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }

  .venue-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}


/* ════════════════════════════════════════════════════════
   MOBILE NAV — max 767px
════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  .nav-toggle {
    display: flex;
    z-index: 10;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(5, 2, 16, 0.98);
    backdrop-filter: blur(20px);
    gap: 2rem;
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 5;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li a {
    font-size: 0.9rem !important;
    letter-spacing: 0.2em !important;
  }

  .nav-cta {
    font-size: 1rem !important;
    padding: 0.75rem 2rem !important;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.3rem;
  }

  .hero-sep { display: none; }

  .setlist-content {
    grid-template-columns: 1fr;
  }

  .song-list li {
    flex-direction: column;
    gap: 0.1rem;
  }

  .song-film {
    text-align: left;
  }
}


/* ════════════════════════════════════════════════════════
   ACCESSIBILITY — 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; }
}
