:root {
  --gold: #d4a843;
  --gold-light: #f6d67d;
  --gold-soft: rgba(212, 168, 67, 0.18);
  --ember: #f97316;
  --ember-light: #ff9b4d;
  --pink: #ff4aa3;
  --blue: #46a8ff;
  --green: #38d39f;
  --night: #050608;
  --night-deep: #090b11;
  --surface: rgba(15, 18, 25, 0.84);
  --surface-strong: #11141c;
  --surface-alt: #181c25;
  --text: #f7f3eb;
  --muted: #b9b2a8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(212, 168, 67, 0.34);
  --shadow-lg: 0 26px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.34);
  --content-max: 1220px;
  --nav-height: 88px;
  --z-progress: 210;
  --z-scrim: 230;
  --z-nav: 250;
  --z-sheet: 260;
}

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

html {
  scroll-behavior: smooth;
}

.intro-active body {
  overflow: hidden;
}

body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(70, 168, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 74, 163, 0.1), transparent 26%),
    linear-gradient(180deg, #06070b 0%, #040507 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 75%);
  opacity: 0.18;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

main {
  position: relative;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 360;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 74, 163, 0.16), transparent 24%),
    radial-gradient(circle at 50% 35%, rgba(70, 168, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.98) 0%, rgba(7, 8, 12, 0.99) 100%);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.js .intro-screen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-screen::before,
.intro-screen::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.65;
}

.intro-screen::before {
  width: 260px;
  height: 260px;
  background: rgba(255, 74, 163, 0.22);
  top: 18%;
  left: 18%;
}

.intro-screen::after {
  width: 320px;
  height: 320px;
  background: rgba(70, 168, 255, 0.18);
  right: 18%;
  bottom: 16%;
}

.intro-screen-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
}

.intro-logo-shell {
  position: relative;
  width: clamp(132px, 24vw, 220px);
}

.intro-logo-shell::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 42px rgba(255, 74, 163, 0.16),
    0 0 56px rgba(70, 168, 255, 0.2);
  animation: introRingPulse 1.9s ease-in-out infinite;
}

.intro-logo-shell::after {
  content: "";
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 74, 163, 0.12), transparent 62%);
  filter: blur(18px);
  animation: introAura 2.2s ease-in-out infinite;
}

.intro-logo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 40px rgba(255, 255, 255, 0.08),
    0 0 55px rgba(255, 74, 163, 0.16),
    0 0 72px rgba(70, 168, 255, 0.18);
  animation: introLogoPulse 1.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.intro-kicker {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.intro-title {
  font-family: "Righteous", sans-serif;
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.18),
    0 0 34px rgba(255, 74, 163, 0.2),
    0 0 42px rgba(70, 168, 255, 0.16);
  animation: introTitlePulse 1.9s ease-in-out infinite;
}

.intro-pulse-line {
  width: min(300px, 70vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--gold-light), var(--blue), transparent);
  box-shadow:
    0 0 20px rgba(255, 74, 163, 0.22),
    0 0 26px rgba(70, 168, 255, 0.18);
  animation: introLinePulse 1.9s ease-in-out infinite;
}

.intro-location {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes introLogoPulse {
  0%,
  100% {
    transform: scale(0.94);
  }

  50% {
    transform: scale(1);
  }
}

@keyframes introRingPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes introAura {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes introTitlePulse {
  0%,
  100% {
    opacity: 0.88;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes introLinePulse {
  0%,
  100% {
    transform: scaleX(0.78);
    opacity: 0.72;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.scroll-progress-container {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: var(--z-progress);
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--ember), var(--pink));
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.4);
  transition: width 0.1s linear;
}

.nav-scrim[hidden] {
  display: none;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: var(--z-scrim);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

nav {
  position: fixed;
  inset: 4px 0 auto;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  transition: box-shadow 0.35s ease;
}

/* Weichzeichner + Hintergrund auf eine eigene Ebene legen, damit die Leiste
   KEIN "containing block" für das fixierte Mobil-Menü bildet (sonst landet
   das aufklappende Menü hinter der Leiste statt am Bildschirmrand). */
nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(6, 8, 12, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.35s ease, border-color 0.35s ease;
}

nav.scrolled {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

nav.scrolled::before {
  background: rgba(6, 8, 12, 0.92);
  border-color: rgba(212, 168, 67, 0.16);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  text-decoration: none;
}

.nav-logo,
.nav-tsv {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo {
  width: 56px;
  height: 56px;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.28);
}

.nav-tsv {
  width: 42px;
  height: 42px;
  background: #fff;
  padding: 2px;
}

.nav-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.nav-brand-copy strong {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.nav-brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--ember), var(--ember-light));
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.32);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 3rem) 2rem 3rem;
  overflow: hidden;
}

.hero-bg,
.hero-overlay,
.hero-grid,
.film-grain,
.particles {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("bilder/7457ab37-084c-43e6-bf45-08915db9f103.webp") center/cover no-repeat;
  filter: brightness(0.36) saturate(1.12);
  transform: scale(1.08);
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.13);
  }
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(4, 5, 8, 0.66) 0%, rgba(4, 5, 8, 0.28) 26%, rgba(4, 5, 8, 0.42) 56%, rgba(4, 5, 8, 0.98) 100%),
    radial-gradient(circle at 18% 20%, rgba(70, 168, 255, 0.24), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 74, 163, 0.2), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(249, 115, 22, 0.18), transparent 28%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 76%);
  opacity: 0.12;
}

.film-grain {
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

.particles {
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(246, 214, 125, 0.95), rgba(255, 255, 255, 0.95));
  box-shadow: 0 0 12px rgba(246, 214, 125, 0.28);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  12% {
    opacity: 0.5;
  }

  88% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 430px);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-date-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-date-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.hero-date-pill-live {
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.32);
  color: #ffd7ba;
}

.hero-kicker {
  margin-top: 1.2rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 1rem;
  font-family: "Righteous", sans-serif;
  font-size: clamp(3.4rem, 8.8vw, 7.8rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.hero-line {
  display: block;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.36);
  animation: text-pulse 1.6s ease-in-out infinite;
  transform-origin: left center;
}

.hero-line:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-line:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes text-pulse {
  0%   { transform: scale(1); }
  8%   { transform: scale(1.028); }
  16%  { transform: scale(1); }
  24%  { transform: scale(1.014); }
  32%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.hero-line.accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff3cb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 640px;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-ticket-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-ticket-chip {
  min-height: 58px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(12, 15, 21, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-poster {
  position: relative;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 24, 33, 0.92) 0%, rgba(9, 11, 16, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(212, 168, 67, 0.35), rgba(249, 115, 22, 0.26));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.poster-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-button {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  text-align: left;
}

.hero-poster-image {
  width: 100%;
  height: 100%;
  margin-top: 0.9rem;
  aspect-ratio: unset;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.poster-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-shrink: 0;
}

.poster-meta-item {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.poster-meta-item span {
  display: block;
  color: var(--gold-light);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.poster-meta-item strong {
  display: block;
  margin-top: 0.38rem;
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 2.4rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 15, 0.74);
  backdrop-filter: blur(14px);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 26s linear infinite;
}

.hero-marquee-track span {
  font-family: "Righteous", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ember), var(--ember-light));
  box-shadow: 0 14px 35px rgba(249, 115, 22, 0.32);
}

.btn-gold {
  color: #19140c;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 14px 35px rgba(212, 168, 67, 0.28);
}

.btn-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.btn-full {
  width: 100%;
}

section {
  position: relative;
  padding: 6rem 2rem;
}

.section-header {
  width: min(100%, 820px);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 0.9rem;
  font-family: "Righteous", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.section-sub {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-sub a {
  color: var(--gold-light);
  text-decoration: none;
}

.countdown-section {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(11, 13, 19, 0.98) 0%, rgba(8, 9, 14, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.6s ease;
}

.countdown-section.is-urgent {
  border-top-color: rgba(249, 115, 22, 0.18);
  border-bottom-color: rgba(249, 115, 22, 0.18);
}

.countdown-section.is-urgent .countdown-item:first-child .countdown-number {
  background: linear-gradient(135deg, var(--ember), var(--ember-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.countdown-label span {
  color: var(--gold-light);
  font-weight: 700;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.countdown-item {
  min-width: 116px;
  padding: 1.2rem 1.45rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.countdown-number {
  font-family: "Righteous", sans-serif;
  font-size: 3.4rem;
  line-height: 0.95;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-unit {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.countdown-note {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.festival-look {
  background: linear-gradient(180deg, #090b11 0%, #07080d 100%);
}

.look-showcase {
  width: min(100%, 920px);
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding-top: 1.2rem;
}

.look-showcase::before,
.look-showcase::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.32;
}

.look-showcase::before {
  top: 0;
  left: -2.5rem;
  background: radial-gradient(circle, rgba(70, 168, 255, 0.24) 0%, rgba(70, 168, 255, 0) 70%);
}

.look-showcase::after {
  right: -2rem;
  bottom: -1.5rem;
  background: radial-gradient(circle, rgba(255, 74, 163, 0.2) 0%, rgba(255, 74, 163, 0) 72%);
}

.look-display,
.day-card,
.action-banner,
.ticket-card,
.faq-details,
.info-card,
.hero-poster {
  backdrop-filter: blur(16px);
}

.look-display {
  position: relative;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(70, 168, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 74, 163, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(18, 22, 31, 0.94) 0%, rgba(9, 11, 17, 0.97) 100%);
  box-shadow: var(--shadow-lg);
}

.look-display::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.04) 0%, rgba(6, 8, 12, 0.04) 58%, rgba(6, 8, 12, 0.34) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%, transparent 70%, rgba(255, 255, 255, 0.04));
}

.look-display-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(290px, 43vw, 500px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: rgba(3, 4, 7, 0.9);
  color: var(--text);
  cursor: zoom-in;
  -webkit-appearance: none;
  appearance: none;
}

.look-display-frame:focus-visible {
  outline: 3px solid rgba(212, 168, 67, 0.45);
  outline-offset: 3px;
}

.look-zoom-hint {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 8, 12, 0.5);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.look-zoom-hint svg {
  width: 16px;
  height: 16px;
}

.look-display-frame:hover .look-zoom-hint,
.look-display-frame:focus-visible .look-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .look-zoom-hint {
    opacity: 1;
    transform: none;
  }
}

.look-display-frame.is-portrait {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(3, 4, 7, 0.94);
}

.look-spotlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.65s ease, opacity 0.28s ease, filter 0.65s ease;
}

.look-display-frame.is-portrait .look-spotlight-image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.look-display.is-swapping .look-spotlight-image {
  opacity: 0.38;
  transform: scale(1.04);
}

.look-display-bar {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.look-display-count {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 12, 0.48);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.look-thumb-strip {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.look-thumb {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(12, 15, 22, 0.88);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1.06;
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.look-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.04) 0%, rgba(6, 8, 12, 0.16) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%, transparent 68%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.look-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.look-thumb-portrait {
  aspect-ratio: 1.06;
}

.look-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.24);
  box-shadow: var(--shadow-lg);
}

.look-thumb:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.04);
}

.look-thumb.is-active {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.34);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(212, 168, 67, 0.14);
}

.look-thumb.is-active img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.look-thumb:focus-visible {
  outline: 3px solid rgba(212, 168, 67, 0.36);
  outline-offset: 3px;
}

.look-thumb.is-active::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.8;
  pointer-events: none;
}

.programm {
  background: linear-gradient(180deg, #07080d 0%, #0a0b12 100%);
}

.days-grid {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.day-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(22, 26, 36, 0.92) 0%, rgba(12, 14, 21, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.day-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.24);
}

.day-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 26px 26px 0 0;
}

.day-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--blue), #91cbff);
}

.day-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--pink), #ff8bc3);
}

.day-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--green), #91ffc9);
}

.day-label {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.day-date {
  margin-top: 0.65rem;
  font-family: "Righteous", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.day-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.day-intro {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.day-events {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.4rem;
  flex-grow: 1;
}

.event-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-time {
  min-width: 58px;
  font-family: "Righteous", sans-serif;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.event-time-wide {
  min-width: 74px;
}

.event-info h4 {
  font-size: 1.04rem;
  font-weight: 700;
}

.event-info p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 0.6rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag-music {
  color: #8dd1ff;
  background: rgba(70, 168, 255, 0.12);
  border: 1px solid rgba(70, 168, 255, 0.24);
}

.tag-sport {
  color: #ff91c8;
  background: rgba(255, 74, 163, 0.12);
  border: 1px solid rgba(255, 74, 163, 0.24);
}

.tag-food {
  color: #96ffcb;
  background: rgba(56, 211, 159, 0.12);
  border: 1px solid rgba(56, 211, 159, 0.24);
}

.tag-day {
  color: #ffd9b0;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.24);
}

.calendar-btn {
  width: 100%;
  margin-top: 1.5rem;
}

.tickets {
  background: linear-gradient(180deg, #090b11 0%, #050608 100%);
}

.action-banner {
  width: min(100%, var(--content-max));
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(20, 24, 33, 0.94) 0%, rgba(10, 12, 18, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.action-banner-copy {
  max-width: 760px;
}

.action-banner-copy h3 {
  margin-top: 0.8rem;
  font-family: "Righteous", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 0.95;
}

.action-banner-copy p {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.tickets-grid {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.ticket-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 1.5rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(21, 25, 34, 0.92) 0%, rgba(10, 12, 18, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-6px);
}

.ticket-card.featured {
  border-color: rgba(212, 168, 67, 0.45);
  background:
    radial-gradient(circle at top right, rgba(212, 168, 67, 0.16), transparent 40%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(32, 27, 14, 0.88) 0%, rgba(16, 18, 24, 0.96) 100%);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 168, 67, 0.18), 0 0 42px rgba(212, 168, 67, 0.08);
  transform: translateY(-4px);
}

.ticket-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 168, 67, 0.28), 0 0 60px rgba(212, 168, 67, 0.12);
}

.ticket-featured-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #19140c;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticket-eyebrow {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticket-type {
  margin-top: 0.6rem;
  font-family: "Righteous", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.05em;
}

.ticket-price {
  margin-top: 0.5rem;
  font-family: "Righteous", sans-serif;
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ticket-price-free {
  font-size: 3.3rem;
}

.ticket-desc {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.ticket-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.35rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ticket-feature {
  display: flex;
  gap: 0.7rem;
  color: var(--text);
  line-height: 1.55;
}

.ticket-feature::before {
  content: "•";
  color: var(--gold-light);
  font-weight: 700;
}

.info {
  background: linear-gradient(180deg, #08090e 0%, #050608 100%);
}

.faq-container {
  width: min(100%, 820px);
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-details {
  padding: 1.3rem 1.4rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21, 25, 34, 0.94) 0%, rgba(10, 12, 18, 0.94) 100%);
  transition: border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-md);
}

.faq-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq-details .icon {
  color: var(--gold-light);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-details[open] .icon {
  transform: rotate(45deg);
}

.faq-details[open] {
  border-color: rgba(212, 168, 67, 0.22);
}

.faq-details p {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              margin-top 0.38s ease,
              opacity 0.3s ease;
}

.faq-details[open] p {
  max-height: 300px;
  margin-top: 1rem;
  opacity: 1;
}

.info-grid {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.info-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 1.5rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(20, 24, 33, 0.94) 0%, rgba(10, 12, 18, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.16);
  color: var(--gold-light);
}

.info-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.info-card h3 {
  margin-top: 1rem;
  font-family: "Righteous", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.info-card p {
  margin-top: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  line-height: 1.75;
  flex-grow: 1;
}

.inline-btn-row {
  display: flex;
  gap: 0.7rem;
}

.inline-btn-row .btn {
  flex: 1;
}

.map-container {
  width: min(100%, var(--content-max));
  height: 360px;
  margin: 2rem auto 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-fallback {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

footer {
  padding: 3.5rem 2rem 4.5rem;
  text-align: center;
  background: linear-gradient(180deg, #050608 0%, #030407 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.3rem;
}

.footer-logos img {
  width: 56px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.footer-text {
  color: var(--muted);
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.8rem;
  color: var(--muted);
}

.footer-links a {
  color: var(--gold-light);
  text-decoration: none;
}

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero {
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 74, 163, 0.12), transparent 26%),
    radial-gradient(circle at top left, rgba(70, 168, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(18, 22, 31, 0.94) 0%, rgba(10, 12, 18, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-brand-logo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 28px rgba(255, 74, 163, 0.16), 0 0 32px rgba(70, 168, 255, 0.12);
}

.legal-kicker {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-title {
  margin-top: 0.45rem;
  font-family: "Righteous", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.legal-intro {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.legal-card {
  padding: 1.6rem 1.5rem;
  margin-top: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20, 24, 33, 0.94) 0%, rgba(10, 12, 18, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.legal-card h2 {
  margin-bottom: 0.75rem;
  font-family: "Righteous", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.8;
}

.legal-card a {
  color: var(--gold-light);
  text-decoration: none;
}

.lightbox {
  width: min(92vw, 1180px);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(5, 7, 10, 0.96);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.lightbox-close-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
}

.lightbox-close {
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 20px;
  background: #050608;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 8, 12, 0.6);
  backdrop-filter: blur(10px);
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav:hover {
  background: rgba(212, 168, 67, 0.22);
  border-color: rgba(212, 168, 67, 0.4);
}

.lightbox-nav:focus-visible {
  outline: 3px solid rgba(212, 168, 67, 0.45);
  outline-offset: 2px;
}

.lightbox-nav[hidden] {
  display: none;
}

.lightbox-prev {
  left: 0.6rem;
}

.lightbox-next {
  right: 0.6rem;
}

@media (max-width: 540px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
}

.lightbox-caption {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  nav {
    padding-inline: 1.4rem;
  }

  .hero {
    padding-inline: 1.5rem;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    max-width: 940px;
  }

  .hero-poster {
    max-width: 470px;
  }

  .look-display-frame {
    min-height: clamp(300px, 46vw, 460px);
  }

  .look-thumb-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .look-thumb,
  .look-thumb-portrait {
    aspect-ratio: 1.08;
  }

  .days-grid,
  .tickets-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  :root {
    --nav-height: 78px;
  }

  nav {
    padding: 0.8rem 1rem;
    gap: 1rem;
  }

  .nav-brand-copy small {
    display: none;
  }

  .intro-location,
  .intro-kicker {
    letter-spacing: 0.14em;
  }

  .nav-links {
    position: fixed;
    inset: auto 0 0;
    z-index: var(--z-sheet);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.25rem 6rem;
    background: rgba(10, 12, 18, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px 26px 0 0;
    transform: translateY(105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.98rem;
    color: var(--text);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-links .nav-cta {
    margin-top: 0.9rem;
    border-bottom: 0;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 4.75rem 1.25rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 2.25rem) 1.25rem 2.25rem;
  }

  .hero-title {
    font-size: clamp(3.6rem, 15vw, 5.8rem);
  }

  .hero-ticket-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ticket-chip {
    width: 100%;
  }

  .hero-marquee-track span {
    font-size: 1.08rem;
  }

  .countdown-item {
    min-width: 92px;
    padding: 1rem 1.1rem;
  }

  .countdown-number {
    font-size: 2.7rem;
  }

  .look-display {
    padding: 0.85rem;
    border-radius: 28px;
  }

  .look-display-frame {
    min-height: clamp(280px, 60vw, 400px);
    border-radius: 22px;
  }

  .look-thumb-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .look-display-bar {
    right: 1.3rem;
    bottom: 1.3rem;
  }

  .days-grid,
  .tickets-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .action-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-btn-row {
    flex-direction: column;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 540px) {
  .nav-brand {
    gap: 0.65rem;
  }

  .intro-screen {
    padding: 1.4rem;
  }

  .intro-logo-shell {
    width: clamp(120px, 38vw, 168px);
  }

  .intro-title {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .intro-location,
  .intro-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .nav-logo {
    width: 46px;
    height: 46px;
  }

  .nav-tsv {
    width: 34px;
    height: 34px;
  }

  .nav-brand-copy strong {
    font-size: 0.78rem;
  }

  .hero-date-pill {
    min-height: 38px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero-kicker {
    letter-spacing: 0.18em;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .look-display {
    padding: 0.7rem;
    border-radius: 24px;
  }

  .look-display-frame {
    min-height: clamp(220px, 66vw, 320px);
    border-radius: 18px;
  }

  .look-display-count {
    min-height: 34px;
    padding: 0.45rem 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .look-thumb-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .look-thumb,
  .look-thumb-portrait {
    aspect-ratio: 1.02;
  }

  .day-card,
  .ticket-card,
  .info-card {
    padding-inline: 1.25rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.3rem;
  }

  .legal-shell {
    padding: 4rem 1.25rem 3rem;
  }

  .legal-hero,
  .legal-card {
    padding-inline: 1.25rem;
  }

  .legal-brand {
    align-items: flex-start;
  }

  .legal-brand-logo {
    width: 62px;
    height: 62px;
  }

  .footer-links span {
    display: none;
  }
}

/* ---------- Mosaik-Galerie (Rückblick) ---------- */
.mosaic {
  width: min(100%, 1080px);
  margin: 0 auto;
  column-count: 3;
  column-gap: 0.9rem;
}

.mosaic-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 0.9rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(12, 15, 22, 0.88);
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  break-inside: avoid;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.mosaic-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 7, 10, 0.5));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.mosaic-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.34);
  box-shadow: var(--shadow-lg);
}

.mosaic-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.mosaic-item:hover::after {
  opacity: 1;
}

.mosaic-item:focus-visible {
  outline: 3px solid rgba(212, 168, 67, 0.45);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .mosaic {
    column-count: 2;
    column-gap: 0.7rem;
  }

  .mosaic-item {
    margin-bottom: 0.7rem;
  }
}

/* ---------- Anmelde-Popup (Elfmeterturnier) ---------- */
.anmeldung {
  width: min(94vw, 760px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 24, 33, 0.98) 0%, rgba(9, 11, 16, 0.99) 100%);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

.anmeldung::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.anmeldung[open] {
  display: flex;
  flex-direction: column;
  animation: anmeldungIn 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes anmeldungIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.anmeldung-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 1.6rem 1.1rem;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 42%),
    radial-gradient(circle at top left, rgba(255, 74, 163, 0.12), transparent 40%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.anmeldung-eyebrow {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.anmeldung-title {
  margin-top: 0.4rem;
  font-family: "Righteous", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.anmeldung-sub {
  max-width: 48ch;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.anmeldung-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.anmeldung-close svg {
  width: 20px;
  height: 20px;
}

.anmeldung-close:hover {
  background: rgba(255, 74, 163, 0.18);
  border-color: rgba(255, 74, 163, 0.4);
  transform: rotate(90deg);
}

.anmeldung-close:focus-visible {
  outline: 3px solid rgba(212, 168, 67, 0.45);
  outline-offset: 2px;
}

.anmeldung-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.anmeldung-step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.anmeldung-step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--ember-light));
  color: #fff;
  font-size: 0.72rem;
}

.anmeldung-frame {
  position: relative;
  flex: 1;
  min-height: 420px;
  overflow-y: auto;
  background: #fff;
}

.anmeldung-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  border: 0;
}

.anmeldung-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  background: linear-gradient(180deg, rgba(20, 24, 33, 0.98), rgba(9, 11, 16, 0.99));
}

.anmeldung-spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--gold-light);
  animation: anmeldungSpin 0.9s linear infinite;
}

@keyframes anmeldungSpin {
  to {
    transform: rotate(360deg);
  }
}

.anmeldung-foot {
  padding: 0.9rem 1.6rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.anmeldung-foot a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 540px) {
  .anmeldung {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    border: 0;
  }

  .anmeldung-head {
    padding: 1.2rem 1.2rem 0.9rem;
  }

  .anmeldung-steps,
  .anmeldung-foot {
    padding-inline: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .intro-screen,
  .intro-logo,
  .intro-logo-shell::before,
  .intro-logo-shell::after,
  .intro-title,
  .intro-pulse-line {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
