/* ============================================================
   CREATORS ON STAGE – Main Stylesheet
   Design System: COS Black / White / Pink / Blue
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --cos-black:      #000000;
  --cos-black-2:    #09090F;
  --cos-black-3:    #0F0F1A;
  --cos-white:      #F5F5F5;
  --cos-pink:       #FF007A;
  --cos-pink-dim:   #cc005e;
  --cos-pink-glow:  rgba(255, 0, 122, 0.25);
  --cos-blue:       #2E1876;
  --cos-blue-light: #3d229e;
  --cos-grey:       #888898;
  --cos-border:     rgba(255,255,255,0.08);

  --font-title:     'Bebas Neue', sans-serif;
  --font-sub:       'Barlow Condensed', sans-serif;
  --font-body:      'Inter', sans-serif;

  --nav-h:          60px;
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cos-black);
  color: var(--cos-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cos-black); }
::-webkit-scrollbar-thumb { background: var(--cos-pink); border-radius: 3px; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag-pink { background: var(--cos-pink-glow); color: var(--cos-pink); border: 1px solid rgba(255,0,122,0.3); }
.tag-blue { background: rgba(46,24,118,0.4); color: #a78bfa; border: 1px solid rgba(46,24,118,0.5); }

.section-label {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cos-pink);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--cos-white);
}
.section-title span { color: var(--cos-pink); }
.section-lead {
  font-size: 17px;
  color: var(--cos-grey);
  max-width: 660px;
  margin-top: 16px;
  line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--cos-pink);
  color: #fff;
  box-shadow: 0 0 24px var(--cos-pink-glow), 0 4px 16px rgba(255,0,122,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(255,0,122,0.5), 0 8px 24px rgba(255,0,122,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--cos-white);
  border: 1.5px solid var(--cos-border);
}
.btn-outline:hover {
  border-color: var(--cos-pink);
  color: var(--cos-pink);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--cos-white);
  border: 1px solid var(--cos-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}
.btn-lg { padding: 18px 38px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Glass Card ───────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cos-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}
.glass:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,0,122,0.2);
}

/* ── Glow Divider ─────────────────────────────────────────── */
.glow-line {
  width: 60px;
  height: 3px;
  background: var(--cos-pink);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--cos-pink);
  margin: 16px 0 24px;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #000000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  background: #000000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 4px 24px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 8px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cos-pink);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--cos-white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--cos-pink); }
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cos-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cos-border);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cos-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--cos-border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--cos-pink); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cos-black);
}

/* Animated Stage Lights */
.stage-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.stage-light {
  position: absolute;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  transform-origin: bottom center;
  opacity: 0;
  animation: lightBeam 4s ease-in-out infinite;
}
.stage-light:nth-child(1) { left: 15%; height: 60vh; background: linear-gradient(to top, var(--cos-pink), transparent); animation-delay: 0s; }
.stage-light:nth-child(2) { left: 30%; height: 80vh; background: linear-gradient(to top, #a855f7, transparent); animation-delay: 0.6s; }
.stage-light:nth-child(3) { left: 50%; height: 70vh; background: linear-gradient(to top, var(--cos-pink), transparent); animation-delay: 1.2s; }
.stage-light:nth-child(4) { left: 65%; height: 65vh; background: linear-gradient(to top, var(--cos-blue-light), transparent); animation-delay: 0.4s; }
.stage-light:nth-child(5) { left: 80%; height: 75vh; background: linear-gradient(to top, var(--cos-pink), transparent); animation-delay: 0.9s; }

@keyframes lightBeam {
  0%, 100% { opacity: 0; transform: scaleX(1) rotate(0deg); }
  20% { opacity: 0.6; }
  50% { opacity: 0.3; transform: scaleX(2) rotate(3deg); }
  80% { opacity: 0.5; }
}

/* Radial Glow */
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,0,122,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cos-pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--cos-pink);
}

/* Hero Logo */
.hero-logo-wrap {
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}
.hero-logo-large {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 40px rgba(255,0,122,0.3));
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(52px, 9vw, 120px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  text-shadow: 0 0 60px rgba(255,0,122,0.2);
}
.hero-title .pink { color: var(--cos-pink); }
.hero-subtitle {
  font-family: var(--font-sub);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.6);
  margin: 18px 0 40px;
}
.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border: 1px solid rgba(255,0,122,0.4);
  border-radius: 100px;
  background: rgba(255,0,122,0.08);
  margin-bottom: 40px;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-date-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cos-pink); animation: blinkDot 1.5s infinite; }
@keyframes blinkDot { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Countdown */
.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.cd-num {
  font-family: var(--font-title);
  font-size: 54px;
  line-height: 1;
  color: var(--cos-white);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--cos-border);
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 80px;
  text-align: center;
  letter-spacing: 0.05em;
}
.cd-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cos-grey);
  margin-top: 8px;
}
.cd-sep {
  font-family: var(--font-title);
  font-size: 48px;
  color: var(--cos-pink);
  margin-bottom: 22px;
  animation: blinkDot 1.5s infinite;
}

/* Waitlist teaser in hero */
.hero-waitlist-teaser {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255,0,122,0.08);
  border: 1px solid rgba(255,0,122,0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cos-white);
}
.hero-waitlist-teaser:hover {
  background: rgba(255,0,122,0.15);
  border-color: rgba(255,0,122,0.5);
}
.hero-waitlist-teaser .pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cos-pink);
  box-shadow: 0 0 0 0 rgba(255,0,122,0.4);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255,0,122,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,0,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,122,0); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats {
  background: var(--cos-black-2);
  border-top: 1px solid var(--cos-border);
  border-bottom: 1px solid var(--cos-border);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--cos-border);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--cos-border);
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(255,0,122,0.04); }
.stat-icon { font-size: 28px; margin-bottom: 10px; }
.stat-value {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--cos-pink);
  line-height: 1;
  letter-spacing: 0.03em;
}
.stat-label {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--cos-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  line-height: 1.4;
}

/* Category Ticker */
.ticker-wrap {
  overflow: hidden;
  background: var(--cos-pink);
  padding: 12px 0;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after { content: '★'; color: rgba(255,255,255,0.5); }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   DAS EVENT / FESTIVAL
   ============================================================ */
#event { background: var(--cos-black-2); }
.event-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.event-header-left { max-width: 680px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--cos-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,0,122,0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,0,122,0.3);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.feature-tag {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cos-pink);
  margin-bottom: 10px;
}
.feature-title {
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  margin-bottom: 12px;
}
.feature-text {
  font-size: 14px;
  color: var(--cos-grey);
  line-height: 1.8;
}

/* ============================================================
   FÜR WEN
   ============================================================ */
#fuer-wen {
  background: var(--cos-black-2);
  position: relative;
  overflow: hidden;
}
#fuer-wen::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,24,118,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.audience-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--cos-border);
  transition: var(--transition);
  text-align: center;
}
.audience-card:hover {
  background: rgba(46,24,118,0.15);
  border-color: rgba(46,24,118,0.5);
  transform: translateY(-4px);
}
.audience-emoji { font-size: 48px; margin-bottom: 20px; }
.audience-title {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--cos-white);
  margin-bottom: 12px;
}
.audience-text {
  font-size: 14px;
  color: var(--cos-grey);
  line-height: 1.8;
}

/* ============================================================
   LOCATION
   ============================================================ */
#location { background: var(--cos-black); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}
.location-address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,0,122,0.06);
  border: 1px solid rgba(255,0,122,0.2);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.location-address-icon { font-size: 24px; flex-shrink: 0; }
.location-address h4 {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 700;
  color: var(--cos-white);
  margin-bottom: 4px;
}
.location-address p { font-size: 14px; color: var(--cos-grey); }
.travel-block { margin-bottom: 28px; }
.travel-block h4 {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cos-pink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.travel-block p { font-size: 14px; color: var(--cos-grey); line-height: 1.8; margin-bottom: 8px; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cos-border);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   LINE UP
   ============================================================ */
#lineup {
  background: var(--cos-black-2);
}
.lineup-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.lineup-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--cos-black-3);
  border: 1px solid var(--cos-border);
  transition: var(--transition);
}
.lineup-card:hover { transform: scale(1.02); border-color: rgba(255,0,122,0.4); }
/* Card image */
.lineup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  filter: brightness(0.85) saturate(1.1);
}
.lineup-card:hover .lineup-img {
  transform: scale(1.05);
  filter: brightness(0.6) saturate(1.3);
}

/* Category badge top-left */
.lineup-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  z-index: 2;
  transition: var(--transition);
}
.lineup-card:hover .lineup-badge {
  background: rgba(255,0,122,0.2);
  border-color: rgba(255,0,122,0.5);
  color: var(--cos-pink);
}
.lineup-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.lineup-card:hover .lineup-overlay { transform: translateY(0); }
.lineup-name {
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--cos-white);
}
.lineup-cat {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cos-pink);
  margin-top: 4px;
}
.lineup-tease {
  text-align: center;
  padding: 48px;
  background: rgba(255,0,122,0.04);
  border: 1px dashed rgba(255,0,122,0.3);
  border-radius: var(--radius-lg);
}
.lineup-tease p {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 600;
  color: rgba(245,245,245,0.5);
  margin-bottom: 20px;
}

/* Coming-soon cards: not interactive */
.lineup-card--coming-soon {
  cursor: default;
  opacity: 0.75;
}
.lineup-card--coming-soon:hover {
  transform: none;
  border-color: var(--cos-border);
}
.lineup-card--coming-soon:hover .lineup-img {
  transform: none;
}
.lineup-badge--soon {
  background: rgba(80, 80, 100, 0.75);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
}
.lineup-card--coming-soon:hover .lineup-badge--soon {
  background: rgba(80, 80, 100, 0.75);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
}
/* Always-visible centered overlay for coming-soon */
.lineup-comingsoon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(0px);
}
.lineup-comingsoon-icon {
  font-size: 36px;
  margin-bottom: 10px;
  opacity: 0.6;
}
.lineup-comingsoon-title {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: rgba(245,245,245,0.7);
  line-height: 1.2;
  margin-bottom: 8px;
}
.lineup-comingsoon-sub {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.35);
}

/* Social media links inside lineup overlay */
.lineup-socials {
  display: flex;
  gap: 8px;
  margin: 8px 0 10px;
}
.lineup-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(245,245,245,0.8);
  transition: var(--transition);
  flex-shrink: 0;
}
.lineup-social-link:hover {
  background: var(--cos-pink-glow);
  border-color: var(--cos-pink);
  color: var(--cos-pink);
  transform: scale(1.1);
}

/* Sponsor logo slots with white background */
.sponsor-logo-slot--white {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px;
}
.sponsor-logo-slot--white:hover {
  background: #f0f0f0;
  border-color: rgba(255,0,122,0.3);
}
.sponsor-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* ============================================================
   PODCAST STUDIO
   ============================================================ */
#podcast { background: var(--cos-black-2); }
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.podcast-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--cos-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.podcast-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cos-pink);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.podcast-card:hover::after { transform: scaleX(1); }
.podcast-card:hover { border-color: rgba(255,0,122,0.3); }
.podcast-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}
.podcast-title {
  font-family: var(--font-title);
  font-size: 30px;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  margin-bottom: 16px;
}
.podcast-text {
  font-size: 15px;
  color: var(--cos-grey);
  line-height: 1.9;
  margin-bottom: 28px;
}
.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.podcast-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,245,245,0.7);
}
.podcast-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cos-pink);
  flex-shrink: 0;
}

/* ============================================================
   ÜBER UNS – TIMELINE
   ============================================================ */
#ueber-uns {
  background: var(--cos-black-2);
  position: relative;
  overflow: hidden;
}
.uber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.uber-text .section-lead { margin-top: 0; }
.uber-text p {
  font-size: 15px;
  color: var(--cos-grey);
  line-height: 1.9;
  margin-bottom: 16px;
}
.uber-text a {
  color: var(--cos-pink);
  text-decoration: underline;
  text-decoration-color: rgba(255,0,122,0.4);
}
.uber-text a:hover { text-decoration-color: var(--cos-pink); }

/* Steps Timeline */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 27px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cos-pink), var(--cos-blue));
}
.timeline-step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}
.timeline-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cos-black);
  border: 2px solid var(--cos-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--cos-pink);
  position: relative;
  z-index: 1;
}
.timeline-body {}
.timeline-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cos-pink);
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 14px;
  color: var(--cos-grey);
  line-height: 1.8;
}

/* Vision Card */
.vision-card {
  padding: 40px;
  background: linear-gradient(135deg, rgba(46,24,118,0.3), rgba(255,0,122,0.08));
  border: 1px solid rgba(46,24,118,0.4);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}
.vision-card h3 {
  font-family: var(--font-title);
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  margin-bottom: 14px;
}
.vision-card p {
  font-size: 15px;
  color: rgba(245,245,245,0.7);
  line-height: 1.9;
}

/* Media badges */
.media-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.media-badge {
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--cos-border);
  border-radius: 8px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: rgba(245,245,245,0.6);
}

/* ============================================================
   SPONSOREN
   ============================================================ */
#sponsoren { background: var(--cos-black-2); }
.sponsor-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.sponsor-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.sponsor-logo-slot {
  aspect-ratio: 2/1;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  transition: var(--transition);
}
.sponsor-logo-slot:hover { border-color: rgba(255,0,122,0.3); background: rgba(255,0,122,0.04); }
.sponsor-more {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: rgba(245,245,245,0.3);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 16px;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

.sponsor-cta-card {
  padding: 44px;
  background: linear-gradient(135deg, rgba(46,24,118,0.25), rgba(255,0,122,0.06));
  border: 1px solid rgba(46,24,118,0.4);
  border-radius: var(--radius-lg);
}
.sponsor-cta-card h3 {
  font-family: var(--font-title);
  font-size: 32px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.sponsor-cta-card p {
  font-size: 15px;
  color: var(--cos-grey);
  line-height: 1.8;
  margin-bottom: 28px;
}
.sponsor-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.sponsor-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sponsor-benefit-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,0,122,0.1);
  border: 1px solid rgba(255,0,122,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.sponsor-benefit-body h4 {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--cos-white);
  margin-bottom: 3px;
}
.sponsor-benefit-body p {
  font-size: 13px;
  color: var(--cos-grey);
  line-height: 1.6;
  margin: 0;
}

.sponsor-form { display: flex; gap: 12px; flex-wrap: wrap; }
.sponsor-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--cos-border);
  border-radius: 8px;
  color: var(--cos-white);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}
.sponsor-form input::placeholder { color: rgba(255,255,255,0.3); }
.sponsor-form input:focus { border-color: var(--cos-pink); background: rgba(255,0,122,0.06); }

/* ============================================================
   TICKETS / WARTELISTE
   ============================================================ */
#tickets {
  background: var(--cos-black-2);
  position: relative;
  overflow: hidden;
}
#tickets::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at top, rgba(255,0,122,0.12), transparent 70%);
  pointer-events: none;
}

.ticket-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.ticket-info {}

/* App Feature Callout */
.app-callout {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(46,24,118,0.35), rgba(46,24,118,0.15));
  border: 1px solid rgba(46,24,118,0.5);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.app-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--cos-pink), var(--cos-blue));
}
.app-callout-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 10px;
}
.app-callout h4 {
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  margin-bottom: 10px;
}
.app-callout p {
  font-size: 14px;
  color: rgba(245,245,245,0.65);
  line-height: 1.8;
}
.app-callout .no-wait-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 14px;
  background: rgba(255,0,122,0.1);
  border: 1px solid rgba(255,0,122,0.3);
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cos-pink);
}

/* Counter */
.waitlist-counter {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255,0,122,0.06);
  border: 1px solid rgba(255,0,122,0.15);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.counter-num {
  font-family: var(--font-title);
  font-size: 42px;
  color: var(--cos-pink);
  letter-spacing: 0.04em;
  line-height: 1;
}
.counter-text {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  color: rgba(245,245,245,0.6);
  line-height: 1.4;
}
.counter-icon { font-size: 28px; margin-right: 4px; }

/* Waitlist Form Card */
.waitlist-card {
  padding: 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--cos-border);
  border-radius: var(--radius-lg);
}
.waitlist-card h3 {
  font-family: var(--font-title);
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.waitlist-card .sub {
  font-size: 14px;
  color: var(--cos-grey);
  margin-bottom: 28px;
  line-height: 1.7;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--cos-white);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group select option { background: #000000; }
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--cos-pink);
  background: rgba(255,0,122,0.06);
  box-shadow: 0 0 0 3px rgba(255,0,122,0.1);
}
.form-submit { width: 100%; justify-content: center; margin-top: 20px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(245,245,245,0.3);
  margin-top: 14px;
  line-height: 1.6;
}
.form-note a { color: rgba(245,245,245,0.5); text-decoration: underline; }

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.success-icon { font-size: 60px; margin-bottom: 16px; }
.success-title {
  font-family: var(--font-title);
  font-size: 30px;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  margin-bottom: 10px;
}
.success-text { font-size: 15px; color: var(--cos-grey); line-height: 1.8; }

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: var(--cos-black-2);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.faq-sidebar {}
.faq-sidebar-note {
  padding: 28px;
  background: rgba(255,0,122,0.06);
  border: 1px solid rgba(255,0,122,0.2);
  border-radius: var(--radius-lg);
  margin-top: 28px;
}
.faq-sidebar-note h4 {
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  margin-bottom: 8px;
}
.faq-sidebar-note p {
  font-size: 13px;
  color: var(--cos-grey);
  line-height: 1.8;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--cos-border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}
.faq-q-text {
  font-family: var(--font-sub);
  font-size: 17px;
  font-weight: 600;
  color: var(--cos-white);
  transition: color var(--transition);
}
.faq-q:hover .faq-q-text { color: var(--cos-pink); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}
.faq-item.open .faq-icon {
  border-color: var(--cos-pink);
  color: var(--cos-pink);
  background: rgba(255,0,122,0.1);
  transform: rotate(45deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  padding: 0;
}
.faq-item.open .faq-a-inner { padding-bottom: 20px; }
.faq-a-inner p {
  font-size: 15px;
  color: var(--cos-grey);
  line-height: 1.9;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  background: linear-gradient(135deg, var(--cos-black-2) 0%, rgba(46,24,118,0.2) 50%, var(--cos-black-2) 100%);
  border-top: 1px solid var(--cos-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#final-cta::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,0,122,0.15), transparent 70%);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta-content .section-title { margin-bottom: 16px; }
.final-cta-content .section-lead { margin: 0 auto 40px; text-align: center; }
.final-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.4);
}
.guarantee-item .icon { font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--cos-grey);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--cos-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cos-grey);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: rgba(255,0,122,0.1);
  border-color: rgba(255,0,122,0.3);
  color: var(--cos-pink);
}
.footer-col h5 {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
  font-size: 14px;
  color: var(--cos-grey);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--cos-pink); }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--cos-grey);
  line-height: 1.6;
}
.footer-col .contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--cos-border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(245,245,245,0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(245,245,245,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--cos-grey); }

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  width: calc(100% - 40px);
  padding: 22px 24px;
  background: #000000;
  border-radius: 16px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  display: none;
  animation: slideUpIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#cookie-banner.show { display: block; }

@keyframes slideUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#cookie-banner p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 16px;
}
#cookie-banner p a {
  color: var(--cos-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-btns {
  display: flex;
  gap: 10px;
}
.cookie-btn-necessary {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: var(--cos-white);
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.cookie-btn-necessary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}
.cookie-btn-accept {
  flex: 1;
  padding: 12px 16px;
  background: var(--cos-pink);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(255,0,122,0.35);
}
.cookie-btn-accept:hover {
  background: var(--cos-pink-dim);
  box-shadow: 0 6px 24px rgba(255,0,122,0.5);
  transform: translateY(-1px);
}

/* ============================================================
   POPUP MODAL – 5-Second Warteliste Teaser
   ============================================================ */
#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

#popup-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 10001;
  width: 90%;
  max-width: 420px;
  background: #000000;
  border-radius: 20px;
  padding: 40px 36px 36px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(255,0,122,0.08);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#popup-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* Pink top accent line */
#popup-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cos-pink), transparent);
  border-radius: 0 0 4px 4px;
}

.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.popup-close:hover {
  background: rgba(255,0,122,0.15);
  border-color: rgba(255,0,122,0.4);
  color: var(--cos-pink);
}

.popup-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,0,122,0.12);
  border: 1px solid rgba(255,0,122,0.35);
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cos-pink);
  margin-bottom: 20px;
}

.popup-title {
  font-family: var(--font-title);
  font-size: 34px;
  letter-spacing: 0.03em;
  color: var(--cos-white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.popup-sub {
  font-size: 14px;
  color: #888898;
  line-height: 1.8;
  margin-bottom: 24px;
}
.popup-sub strong { color: var(--cos-white); }

.popup-input-row {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: border-color var(--transition);
  margin-bottom: 12px;
}
.popup-input-row:focus-within {
  border-color: var(--cos-pink);
  box-shadow: 0 0 0 3px rgba(255,0,122,0.12);
}
.popup-input-row input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: var(--cos-white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}
.popup-input-row input::placeholder { color: rgba(255,255,255,0.3); }
.popup-submit-btn {
  padding: 14px 18px;
  background: var(--cos-pink);
  border: none;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  border-radius: 0;
}
.popup-submit-btn:hover { background: var(--cos-pink-dim); }

.popup-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.popup-success {
  display: none;
  padding: 20px;
  text-align: center;
}
.popup-success.show { display: block; }
.popup-success-icon { font-size: 40px; display: block; margin-bottom: 10px; }
.popup-success strong { color: var(--cos-white); font-size: 16px; }
.popup-success br + * { color: #888898; font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .uber-grid { grid-template-columns: 1fr; gap: 48px; }
  .sponsor-layout { grid-template-columns: 1fr; gap: 40px; }
  .ticket-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lineup-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .podcast-grid { grid-template-columns: 1fr; }
  .event-header { flex-direction: column; align-items: flex-start; }
  .lineup-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section-pad { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .countdown-wrap { gap: 4px; }
  .cd-num { font-size: 36px; min-width: 60px; padding: 8px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .final-btns { flex-direction: column; align-items: stretch; }
  .final-btns .btn { width: 100%; justify-content: center; }
  .sponsor-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 20px; }
  .timeline-num { width: 42px; height: 42px; font-size: 18px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lineup-grid { grid-template-columns: 1fr 1fr; }
  .cd-sep { font-size: 30px; }
  .waitlist-card { padding: 28px 20px; }
  .sponsor-cta-card { padding: 28px 20px; }
}

/* ============================================================
   QUEUE MODAL – Virtuelle Warteschlange
   ============================================================ */
#queue-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 10001;
  width: 92%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: #000000;
  border-radius: 22px;
  padding: 36px 32px 32px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 30px 100px rgba(0,0,0,0.8),
    0 0 80px rgba(255,0,122,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.4,0.64,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,0,122,0.3) transparent;
}
#queue-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
#queue-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cos-pink), transparent);
  border-radius: 0 0 4px 4px;
}

/* Header */
.qm-header {
  text-align: center;
  margin-bottom: 22px;
}
.qm-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,0,122,0.1);
  border: 1px solid rgba(255,0,122,0.25);
  color: var(--cos-pink);
  margin-bottom: 12px;
}
.qm-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cos-pink);
  margin-bottom: 4px;
}
.qm-creator {
  font-family: var(--font-title);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--cos-white);
  line-height: 1.1;
}

/* Stats Bar */
.qm-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.qm-stat {
  flex: 1;
  text-align: center;
}
.qm-stat-num {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--cos-pink);
  letter-spacing: 0.03em;
}
.qm-stat-label {
  font-size: 10px;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.qm-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
}

/* Progress Bar */
.qm-progress-wrap {
  margin-bottom: 18px;
}
.qm-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.qm-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cos-pink), #ff4da6);
  border-radius: 100px;
  transition: width 1s ease;
  box-shadow: 0 0 12px rgba(255,0,122,0.4);
}
.qm-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Avatar Social Proof */
.qm-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.qm-avatars {
  display: flex;
  flex-shrink: 0;
}
.qm-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: #fff;
  margin-left: -8px;
  border: 2px solid #000000;
  flex-shrink: 0;
}
.qm-avatars .qm-avatar:first-child { margin-left: 0; }
.qm-avatar-more {
  background: rgba(255,0,122,0.2) !important;
  border-color: rgba(255,0,122,0.4) !important;
  color: var(--cos-pink) !important;
  font-size: 9px !important;
  font-weight: 700;
}
.qm-social-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 600;
}
.qm-live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity:0.7; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

/* Form */
.qm-form { display: flex; flex-direction: column; gap: 12px; }
.qm-input-group { display: flex; flex-direction: column; gap: 6px; }
.qm-input-label {
  font-size: 12px;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.qm-input-wrap {
  position: relative;
}
.qm-input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  pointer-events: none;
}
.qm-input-wrap input {
  width: 100%;
  padding: 13px 14px 13px 42px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--cos-white);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.qm-input-wrap input:focus {
  border-color: var(--cos-pink);
  box-shadow: 0 0 0 3px rgba(255,0,122,0.12);
}
.qm-input-wrap input::placeholder { color: rgba(255,255,255,0.2); }

.qm-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--cos-pink);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
  margin-top: 4px;
  box-shadow: 0 6px 24px rgba(255,0,122,0.35);
}
.qm-submit-btn:hover {
  background: var(--cos-pink-dim);
  box-shadow: 0 8px 32px rgba(255,0,122,0.5);
  transform: translateY(-1px);
}
.qm-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Success Screen */
.qm-success {
  display: none;
  text-align: center;
  padding: 8px 0;
}
.qm-success.show { display: block; }
.qm-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,0,122,0.1);
  border: 1px solid rgba(255,0,122,0.3);
  color: var(--cos-pink);
  margin: 0 auto 16px;
}
.qm-success-title {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--cos-white);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.qm-pos-card {
  background: rgba(255,0,122,0.06);
  border: 1px solid rgba(255,0,122,0.2);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}
.qm-pos-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.qm-pos-num {
  font-family: var(--font-title);
  font-size: 52px;
  color: var(--cos-pink);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.qm-pos-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.qm-success-info {
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
}
.qm-info-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sub);
  font-weight: 600;
}
.qm-info-row svg { color: var(--cos-pink); flex-shrink: 0; }

/* Popup Queue Preview (mini) */
.popup-queue-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.pqp-avatars { display: flex; }
.pqp-text {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sub);
  font-weight: 600;
  line-height: 1.5;
}

/* Lineup Queue Elements */
.lineup-queue-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.lineup-queue-info .lq-num {
  color: var(--cos-pink);
  font-size: 14px;
}
.lineup-queue-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 9px 16px;
  background: var(--cos-pink);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.lineup-queue-btn:hover {
  background: var(--cos-pink-dim);
  transform: scale(1.04);
}

@media (max-width: 480px) {
  #queue-modal { padding: 28px 20px 24px; }
  .qm-creator { font-size: 22px; }
  .qm-pos-num { font-size: 42px; }
}

/* ============================================================
   STAGE MANIFEST REDESIGN
   Version 2: plakativ, dunkel, bewegt
   ============================================================ */
:root {
  --cos-black: #030306;
  --cos-black-2: #07070c;
  --cos-black-3: #0d0d14;
  --cos-white: #f7f7f4;
  --cos-pink: #ff167f;
  --cos-pink-dim: #d70069;
  --cos-cyan: #50f2ff;
  --cos-hot: #ff4b2f;
  --cos-purple: #7b2cff;
  --cos-border: rgba(255,255,255,0.12);
  --radius: 6px;
  --radius-lg: 8px;
}

html { background: #030306; }

body {
  background:
    radial-gradient(circle at 78% 8%, rgba(80,242,255,0.08), transparent 22rem),
    radial-gradient(circle at 12% 12%, rgba(255,22,127,0.16), transparent 28rem),
    linear-gradient(180deg, #030306 0%, #07070c 46%, #030306 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
}

.container {
  max-width: 1320px;
  padding: 0 clamp(20px, 4vw, 56px);
}

.section-pad {
  padding: clamp(84px, 10vw, 150px) 0;
}

#navbar {
  height: 68px;
  background: rgba(0,0,0,0.84);
  backdrop-filter: blur(18px);
}

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

.nav-links {
  gap: clamp(18px, 2.6vw, 42px);
}

.nav-links a,
.btn,
.tag,
.section-label {
  letter-spacing: 0.11em;
}

.btn {
  border-radius: 4px;
  transform: skewX(-6deg);
}

.btn > *,
.btn {
  transform-origin: center;
}

.btn:hover {
  transform: skewX(-6deg) translateY(-1px);
}

.btn:active {
  transform: skewX(-6deg) scale(0.98);
}

.btn-primary {
  background: linear-gradient(100deg, var(--cos-pink), #ff3aa1 52%, var(--cos-hot));
  box-shadow: 0 0 36px rgba(255,22,127,0.32), 0 12px 42px rgba(0,0,0,0.4);
}

.btn-outline,
.btn-ghost {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.18);
}

.section-label {
  color: var(--cos-pink);
  font-size: 12px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--cos-pink);
  box-shadow: 0 0 18px rgba(255,22,127,0.8);
}

.section-title {
  font-size: clamp(54px, 9.2vw, 138px);
  line-height: 0.82;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-title span,
.hero-title .pink {
  color: transparent;
  background: linear-gradient(90deg, var(--cos-pink), #ff5dc1 48%, var(--cos-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(255,22,127,0.22));
}

.section-lead {
  font-size: clamp(17px, 1.6vw, 22px);
  max-width: 760px;
  color: rgba(247,247,244,0.72);
}

#hero {
  min-height: 108vh;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.92)),
    radial-gradient(circle at 50% 7%, rgba(255,255,255,0.13), transparent 14rem),
    radial-gradient(circle at 74% 33%, rgba(80,242,255,0.13), transparent 18rem),
    radial-gradient(circle at 26% 30%, rgba(255,22,127,0.22), transparent 22rem),
    #030306;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(3,3,6,0.28), rgba(3,3,6,0.78)),
    url("../Logo_COS_RGB.png") center 16% / min(58vw, 760px) auto no-repeat;
  opacity: 0.16;
  filter: blur(1px) saturate(1.4);
  pointer-events: none;
}

#hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -7vw;
  height: 18vw;
  z-index: 1;
  background: #07070c;
  transform: rotate(-3.4deg);
  transform-origin: left center;
}

.stage-bg {
  z-index: 1;
  filter: blur(1px);
}

.stage-light {
  width: clamp(90px, 12vw, 180px);
  height: 92vh !important;
  bottom: -10vh;
  opacity: 0.4;
  border-radius: 999px 999px 0 0;
  filter: blur(22px);
  mix-blend-mode: screen;
  transform-origin: bottom center;
  animation: stageSweep 7s ease-in-out infinite;
}

.stage-light:nth-child(1) { left: 3%; background: linear-gradient(to top, rgba(255,22,127,0.9), transparent 72%); animation-delay: 0s; }
.stage-light:nth-child(2) { left: 23%; background: linear-gradient(to top, rgba(80,242,255,0.72), transparent 72%); animation-delay: 1.3s; }
.stage-light:nth-child(3) { left: 45%; background: linear-gradient(to top, rgba(255,22,127,0.82), transparent 72%); animation-delay: 2.1s; }
.stage-light:nth-child(4) { left: 66%; background: linear-gradient(to top, rgba(123,44,255,0.76), transparent 72%); animation-delay: 0.7s; }
.stage-light:nth-child(5) { left: 84%; background: linear-gradient(to top, rgba(255,75,47,0.7), transparent 72%); animation-delay: 2.8s; }

@keyframes stageSweep {
  0%, 100% { opacity: 0.18; transform: rotate(-13deg) scaleX(0.62); }
  35% { opacity: 0.68; transform: rotate(8deg) scaleX(0.95); }
  68% { opacity: 0.34; transform: rotate(-4deg) scaleX(1.12); }
}

.hero-glow {
  width: 88vw;
  height: 88vw;
  max-width: 1100px;
  max-height: 1100px;
  background:
    radial-gradient(circle, rgba(255,22,127,0.18), transparent 62%),
    radial-gradient(circle at 70% 44%, rgba(80,242,255,0.09), transparent 44%);
}

.hero-grid {
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 76%, transparent);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 3px);
}

.hero-content {
  z-index: 4;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 0 170px;
}

.hero-eyebrow {
  font-size: clamp(13px, 1.1vw, 17px);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(78px, 16vw, 236px);
  line-height: 0.77;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 1280px;
  margin: 0 auto;
  text-shadow:
    0 0 46px rgba(255,22,127,0.18),
    0 18px 80px rgba(0,0,0,0.7);
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 30px);
  color: rgba(247,247,244,0.82);
  margin: 30px 0 18px;
}

.hero-manifest-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 26px;
}

.hero-manifest-strip span {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
  color: rgba(247,247,244,0.72);
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: skewX(-8deg);
}

.hero-date-badge {
  border-radius: 4px;
  background: rgba(255,22,127,0.11);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 0 34px rgba(255,22,127,0.16);
  margin-bottom: 34px;
}

.countdown-wrap {
  margin-bottom: 34px;
}

.cd-num {
  border-radius: 4px;
  min-width: clamp(68px, 9vw, 112px);
  font-size: clamp(42px, 7vw, 84px);
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.14);
}

.hero-btns {
  margin-bottom: 28px;
}

.hero-waitlist-teaser {
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,22,127,0.16), rgba(80,242,255,0.06));
  backdrop-filter: blur(14px);
}

.hero-side-rail {
  position: absolute;
  z-index: 5;
  top: 25%;
  right: clamp(22px, 4vw, 70px);
  display: grid;
  gap: 12px;
  width: min(28vw, 320px);
}

.rail-card {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(247,247,244,0.72);
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  transform: skewX(-6deg);
  animation: railFloat 5s ease-in-out infinite;
}

.rail-card:nth-child(2) { animation-delay: 0.35s; }
.rail-card:nth-child(3) { animation-delay: 0.7s; }
.rail-card:nth-child(4) { animation-delay: 1.05s; }
.rail-card:nth-child(5) { animation-delay: 1.4s; }

.rail-card.is-live {
  background: linear-gradient(90deg, rgba(255,22,127,0.28), rgba(255,255,255,0.055));
  color: var(--cos-white);
}

.rail-card.is-live span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cos-pink);
  box-shadow: 0 0 0 6px rgba(255,22,127,0.12);
}

@keyframes railFloat {
  0%, 100% { transform: skewX(-6deg) translate3d(0,0,0); }
  50% { transform: skewX(-6deg) translate3d(-10px,-8px,0); }
}

.hero-bottom-marquee {
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: 3.4vw;
  z-index: 4;
  overflow: hidden;
  background: #f7f7f4;
  color: #030306;
  transform: rotate(-3.4deg);
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.hero-bottom-track {
  display: flex;
  width: max-content;
  animation: manifestoMarquee 18s linear infinite;
}

.hero-bottom-track span {
  display: inline-flex;
  padding: 14px 34px;
  font-family: var(--font-title);
  font-size: clamp(26px, 5vw, 82px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes manifestoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

#stats {
  position: relative;
  z-index: 3;
  background: #f7f7f4;
  color: #030306;
  border: 0;
}

.ticker-wrap {
  background: linear-gradient(90deg, #ff3a17, var(--cos-pink) 48%, #ff7a00);
}

.ticker-item {
  font-size: clamp(18px, 2.3vw, 32px);
  color: #fff;
}

.stats-grid {
  border-left-color: rgba(0,0,0,0.12);
}

.stat-item {
  border-right-color: rgba(0,0,0,0.12);
}

.stat-value {
  color: #030306;
  font-size: clamp(38px, 5vw, 68px);
}

.stat-label {
  color: rgba(3,3,6,0.58);
}

#event,
#lineup,
#podcast,
#ueber-uns,
#tickets,
#faq,
#sponsoren {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), transparent),
    #07070c;
  position: relative;
  overflow: hidden;
}

#event::before,
#lineup::before,
#podcast::before,
#ueber-uns::before,
#tickets::after {
  content: "";
  position: absolute;
  inset: auto -20% 4% -20%;
  height: 42%;
  background: radial-gradient(ellipse at center, rgba(255,22,127,0.12), transparent 62%);
  pointer-events: none;
}

.event-header,
.lineup-header {
  align-items: flex-start;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.features-grid,
.podcast-grid,
.sponsor-layout,
.ticket-layout,
.faq-layout,
.uber-grid,
.location-grid {
  position: relative;
  z-index: 1;
}

.feature-card,
.audience-card,
.podcast-card,
.vision-card,
.sponsor-cta-card,
.app-callout,
.waitlist-card,
.faq-sidebar-note,
.location-address,
.map-static,
.sponsor-logo-slot,
.lineup-tease,
.media-badge,
.timeline-num,
.qm-stats,
.qm-social,
#queue-modal,
#popup-modal,
#sponsor-modal,
#cookie-banner {
  border-radius: 6px !important;
}

.feature-card,
.podcast-card,
.audience-card,
.sponsor-cta-card,
.waitlist-card {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.feature-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 42px);
  counter-increment: feature;
}

.feature-card::after {
  content: "0" counter(feature);
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-title);
  font-size: 28px;
  color: rgba(255,255,255,0.18);
}

.feature-card:hover,
.audience-card:hover,
.podcast-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,22,127,0.42);
  box-shadow: 0 24px 70px rgba(0,0,0,0.3), 0 0 34px rgba(255,22,127,0.08);
}

.feature-icon,
.audience-emoji,
.podcast-icon,
.stat-icon,
.counter-icon {
  display: none;
}

.feature-title,
.audience-title,
.podcast-title,
.timeline-title,
.sponsor-cta-card h3,
.waitlist-card h3,
.app-callout h4,
.faq-sidebar-note h4 {
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 0.92;
  text-transform: uppercase;
}

.feature-text,
.audience-text,
.podcast-text,
.timeline-text,
.uber-text p,
.sponsor-cta-card p,
.app-callout p,
.faq-a-inner p {
  color: rgba(247,247,244,0.68);
}

#fuer-wen {
  background: #f7f7f4;
  color: #030306;
  transform: skewY(-2.8deg);
  margin: -28px 0;
  z-index: 2;
}

#fuer-wen > .container {
  transform: skewY(2.8deg);
}

#fuer-wen .section-label {
  color: var(--cos-pink);
}

#fuer-wen .section-title {
  color: #030306;
  font-size: clamp(70px, 13vw, 190px);
}

#fuer-wen .section-title span {
  position: relative;
  color: #030306;
  background: none;
  -webkit-text-fill-color: #030306;
}

#fuer-wen .section-title span::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 48%;
  height: 0.09em;
  background: var(--cos-pink);
  transform: rotate(-8deg);
}

#fuer-wen .section-lead,
#fuer-wen .audience-text {
  color: rgba(3,3,6,0.72);
}

#fuer-wen .audience-card {
  background: transparent;
  border-color: rgba(3,3,6,0.16);
  text-align: left;
}

#fuer-wen .audience-title {
  color: #030306;
}

#fuer-wen .tag {
  border-radius: 4px;
  color: #030306;
  border-color: rgba(3,3,6,0.18);
  background: rgba(3,3,6,0.04);
}

#location {
  background:
    linear-gradient(130deg, #07070c 0%, #07070c 52%, rgba(255,22,127,0.14) 52%, rgba(255,22,127,0.02) 100%);
}

.location-grid {
  align-items: stretch;
}

.travel-block {
  border-left: 2px solid rgba(255,22,127,0.55);
  padding-left: 18px;
}

.map-static {
  min-height: 470px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.38);
}

.lineup-grid {
  grid-template-columns: repeat(8, minmax(190px, 1fr));
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.lineup-card {
  min-width: 190px;
  aspect-ratio: 0.72;
  border-radius: 6px;
  scroll-snap-align: start;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.lineup-overlay {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.32), transparent);
}

.lineup-name {
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 0.95;
}

.lineup-badge,
.lineup-queue-btn {
  border-radius: 4px;
}

.lineup-tease {
  border-style: solid;
  background:
    linear-gradient(90deg, rgba(255,22,127,0.16), rgba(80,242,255,0.06)),
    rgba(255,255,255,0.025);
}

#podcast .podcast-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(255,22,127,0.16), rgba(123,44,255,0.1));
}

.podcast-list li {
  font-size: 15px;
}

.timeline::before {
  background: linear-gradient(to bottom, var(--cos-pink), var(--cos-cyan));
  box-shadow: 0 0 30px rgba(255,22,127,0.25);
}

.timeline-num {
  background: #07070c;
  box-shadow: 0 0 24px rgba(255,22,127,0.18);
}

.vision-card {
  background: linear-gradient(130deg, rgba(255,22,127,0.18), rgba(80,242,255,0.07));
}

#sponsoren {
  background: #f7f7f4;
  color: #030306;
}

#sponsoren .section-title,
#sponsoren .sponsor-benefit-body h4,
#sponsoren .sponsor-cta-card h3 {
  color: #030306;
}

#sponsoren .section-lead,
#sponsoren .sponsor-cta-card p,
#sponsoren .sponsor-benefit-body p,
#sponsoren .sponsor-more {
  color: rgba(3,3,6,0.64);
}

#sponsoren .sponsor-logo-slot,
#sponsoren .sponsor-cta-card {
  background: rgba(3,3,6,0.03);
  border-color: rgba(3,3,6,0.12);
}

.sponsor-logo-slot {
  color: rgba(3,3,6,0.24);
}

.ticket-layout {
  align-items: stretch;
}

.app-callout,
.waitlist-counter {
  background: linear-gradient(135deg, rgba(255,22,127,0.16), rgba(80,242,255,0.06));
}

.counter-num {
  font-size: clamp(58px, 7vw, 92px);
}

.form-group input,
.form-group select,
.sponsor-form input,
.qm-input-wrap input,
.popup-input-row {
  border-radius: 4px;
}

#final-cta {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(255,22,127,0.20), transparent 34rem),
    linear-gradient(180deg, #07070c, #030306);
}

#final-cta .section-title {
  font-size: clamp(74px, 14vw, 210px);
}

#final-cta .section-title::after {
  content: "CREATORS. COMMUNITY. BÜHNE.";
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,0.08);
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
}

.guarantee-note {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}

#footer {
  background: #030306;
}

.reveal {
  transform: translateY(46px) scale(0.98);
}

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

@media (max-width: 1180px) {
  .hero-side-rail {
    display: none;
  }

  .lineup-grid {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  #hero {
    min-height: 100svh;
  }

  #hero::after,
  .hero-bottom-marquee {
    display: none;
  }

  .hero-content {
    min-height: auto;
    padding: calc(var(--nav-h) + 44px) 0 84px;
  }

  .hero-title {
    font-size: clamp(68px, 19vw, 120px);
    line-height: 0.82;
  }

  .hero-date-badge {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .countdown-wrap {
    width: 100%;
    gap: 3px;
  }

  .cd-block {
    min-width: 0;
    flex: 1;
  }

  .cd-num {
    min-width: 0;
    width: 100%;
    font-size: 34px;
    padding: 8px 6px;
  }

  .cd-sep {
    display: none;
  }

  .section-title {
    font-size: clamp(48px, 17vw, 94px);
  }

  .features-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 260px;
  }

  #fuer-wen {
    transform: none;
    margin: 0;
  }

  #fuer-wen > .container {
    transform: none;
  }

  #fuer-wen .section-title {
    font-size: clamp(62px, 18vw, 110px);
  }

  .lineup-grid {
    grid-template-columns: repeat(8, minmax(178px, 1fr));
  }

  .lineup-card {
    min-width: 178px;
  }

  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   ITERATION 2: EVENT INTERACTION + SPONSOR LEVELS
   ============================================================ */
.section-pad {
  padding: clamp(64px, 7vw, 112px) 0;
}

#navbar {
  height: 82px;
  top: 12px;
  left: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
    rgba(3,3,6,0.72);
  box-shadow: 0 24px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.15);
  overflow: hidden;
}

#navbar.scrolled {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.045)),
    rgba(3,3,6,0.82);
}

.scroll-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cos-pink), var(--cos-cyan), var(--cos-hot));
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(255,22,127,0.75);
}

.nav-inner {
  padding: 0 clamp(14px, 2vw, 28px);
}

.nav-links a {
  font-size: 15px;
}

.nav-cta {
  padding-inline: 24px;
}

.hero-bottom-track {
  animation-name: manifestoMarqueeRight;
}

@keyframes manifestoMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.rail-card {
  position: relative;
  min-height: 74px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px 20px;
  text-decoration: none;
  overflow: hidden;
}

.rail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,22,127,0.34), rgba(80,242,255,0.14));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.rail-card::after {
  content: "OPEN";
  position: absolute;
  right: 16px;
  bottom: 10px;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--cos-cyan);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.rail-card strong,
.rail-card small {
  position: relative;
  z-index: 1;
}

.rail-card strong {
  font-size: 18px;
  color: var(--cos-white);
}

.rail-card small {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(247,247,244,0.46);
}

.rail-card:hover {
  border-color: rgba(80,242,255,0.46);
  color: var(--cos-white);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28), 0 0 34px rgba(80,242,255,0.14);
}

.rail-card:hover::before,
.rail-card:hover::after {
  opacity: 1;
}

.rail-card:hover::after {
  transform: translateX(0);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 14px;
}

#fuer-wen .tag {
  display: none;
}

#fuer-wen .reveal:has(.tag) {
  display: none;
}

.experience-pill {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(3,3,6,0.15);
  background: rgba(3,3,6,0.035);
  color: #030306;
  text-align: left;
  overflow: hidden;
  position: relative;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.experience-pill::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 16px;
  font-family: var(--font-title);
  font-size: 30px;
  color: var(--cos-pink);
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.experience-pill svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-pill span {
  max-width: 12ch;
  font-family: var(--font-title);
  font-size: clamp(27px, 2.6vw, 42px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.experience-pill:hover {
  transform: translateY(-8px);
  border-color: rgba(255,22,127,0.42);
  background: linear-gradient(135deg, rgba(255,22,127,0.18), rgba(80,242,255,0.08));
}

.experience-pill:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn,
.qm-submit-btn,
.popup-submit-btn,
.lineup-queue-btn {
  background-image: linear-gradient(110deg, var(--cos-pink), #ff44b4 42%, var(--cos-cyan) 72%, var(--cos-hot));
  background-size: 220% 100%;
  transition: transform 0.26s ease, box-shadow 0.26s ease, background-position 0.55s ease;
}

.btn:hover,
.qm-submit-btn:hover,
.popup-submit-btn:hover,
.lineup-queue-btn:hover {
  background-position: 100% 0;
  box-shadow: 0 0 36px rgba(255,22,127,0.46), 0 18px 50px rgba(0,0,0,0.42);
}

.lineup-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: visible;
  gap: clamp(18px, 2vw, 28px);
}

.lineup-card {
  min-width: 0;
  aspect-ratio: 0.78;
}

.lineup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.52) 62%, rgba(0,0,0,0.95)),
    linear-gradient(90deg, rgba(255,22,127,0.16), transparent 46%);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.lineup-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(80,242,255,0.5);
}

.lineup-card:hover::after {
  opacity: 0.95;
}

.lineup-overlay {
  z-index: 3;
  padding: 26px;
}

.creator-social-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 12px;
}

.creator-social-stats span {
  padding: 8px 6px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  text-align: center;
}

.creator-social-stats b {
  display: block;
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 1;
  color: var(--cos-white);
}

.creator-social-stats small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.46);
}

.timeline-step {
  padding: 18px;
  border: 1px solid transparent;
  transition: transform 0.32s ease, background 0.32s ease, border-color 0.32s ease, opacity 0.32s ease;
}

.timeline:hover .timeline-step:not(.is-active) {
  opacity: 0.42;
}

.timeline-step.is-active {
  transform: translateX(calc(18px + var(--tilt-x, 0px))) translateY(var(--tilt-y, 0px)) scale(1.035);
  background: linear-gradient(135deg, rgba(255,22,127,0.16), rgba(80,242,255,0.06));
  border-color: rgba(255,255,255,0.13);
}

.timeline-step.is-active .timeline-num {
  color: #030306;
  background: var(--cos-cyan);
  border-color: var(--cos-cyan);
  box-shadow: 0 0 40px rgba(80,242,255,0.35);
}

.timeline-step.is-active .timeline-title {
  color: var(--cos-cyan);
}

#queue-modal {
  max-width: 560px;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,22,127,0.26), transparent 18rem),
    radial-gradient(circle at 100% 30%, rgba(80,242,255,0.14), transparent 16rem),
    rgba(5,5,10,0.96);
}

.qm-creator {
  font-size: clamp(34px, 5vw, 56px);
}

.qm-stats {
  padding: 18px;
}

#popup-modal {
  top: auto;
  left: auto;
  right: 22px;
  bottom: 22px;
  transform: translateY(26px) scale(0.96);
  max-width: 440px;
  text-align: left;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,22,127,0.25), transparent 15rem),
    rgba(5,5,10,0.96);
}

#popup-modal.show {
  transform: translateY(0) scale(1);
}

.popup-title {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.9;
}

.popup-input-row {
  border-radius: 4px;
}

.sponsor-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: 0 auto 34px;
}

.sponsor-level-trigger {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 126px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  text-align: left;
  color: var(--cos-white);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(8,8,14,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.sponsor-level-trigger::before {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--cos-pink), var(--cos-purple), var(--cos-cyan));
  transition: width 0.3s ease;
}

.sponsor-level-trigger::after {
  content: "->";
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--cos-pink);
  font-family: var(--font-title);
  font-size: 22px;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor-level-trigger span,
.sponsor-level-trigger small {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.sponsor-level-trigger strong {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--cos-white);
}

.sponsor-level-trigger:hover,
.sponsor-level-trigger:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255,22,127,0.45);
  background:
    linear-gradient(145deg, rgba(255,22,127,0.16), rgba(106,0,255,0.08)),
    rgba(8,8,14,0.96);
}

.sponsor-level-trigger:hover::before,
.sponsor-level-trigger:focus-visible::before {
  width: 82px;
}

.sponsor-level-trigger:hover::after,
.sponsor-level-trigger:focus-visible::after {
  transform: translateX(0);
  opacity: 1;
}

.sponsor-level-card[data-sponsor-detail] {
  display: none;
}

#sponsor-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001;
  width: min(92vw, 720px);
  max-height: 88vh;
  overflow-y: auto;
  transform: translate(-50%, -48%) scale(0.94);
  padding: clamp(32px, 5vw, 54px);
  color: var(--cos-white);
  background:
    linear-gradient(135deg, rgba(255,22,127,0.18), rgba(106,0,255,0.08) 38%, rgba(5,5,10,0.98) 70%),
    #05050a;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0,0,0,0.78), 0 0 70px rgba(255,22,127,0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.34,1.2,0.64,1);
}

#sponsor-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

#sponsor-modal .popup-title {
  max-width: 10ch;
  margin-bottom: 24px;
  font-size: clamp(58px, 10vw, 110px);
}

.sponsor-modal-body {
  display: grid;
  gap: 24px;
}

.sponsor-modal-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sponsor-modal-body li {
  position: relative;
  min-height: 74px;
  padding: 18px 18px 18px 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.3;
}

.sponsor-modal-body li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  background: var(--cos-pink);
  box-shadow: 0 0 0 7px rgba(255,22,127,0.12);
}

.sponsor-modal-price {
  justify-self: start;
  padding: 10px 14px;
  color: var(--cos-black);
  background: var(--cos-white);
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.sponsor-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.sponsor-benefit-icon {
  font-size: 0;
}

.sponsor-benefit-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(255,22,127,0.12);
}

.sponsor-logos-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.sponsor-logo-slot {
  min-width: 220px;
  min-height: 110px;
  aspect-ratio: auto;
  background: #fff !important;
  border-color: rgba(3,3,6,0.1) !important;
  box-shadow: 0 12px 34px rgba(3,3,6,0.08);
}

.footer-social .social-btn:not(.social-svg) {
  display: none;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-btn:hover svg {
  transform: scale(1.12);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--cos-pink);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1024px) {
  .experience-grid,
  .sponsor-levels,
  .lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #navbar {
    top: 8px;
    left: 8px;
    right: 8px;
    height: 68px;
  }

  .experience-grid,
  .sponsor-levels,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .lineup-card {
    aspect-ratio: 0.86;
  }

  #popup-modal {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
  }

  #sponsor-modal {
    width: calc(100vw - 24px);
    padding: 30px 20px 22px;
  }

  .sponsor-modal-body ul {
    grid-template-columns: 1fr;
  }

  .sponsor-modal-actions .btn {
    width: 100%;
  }
}

/* Header simplification */
:root {
  --nav-h: 74px;
}

#navbar,
#navbar.scrolled {
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  border: 0;
  border-radius: 0;
  background: #000;
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.09);
  overflow: visible;
}

#navbar .container {
  height: 100%;
}

.nav-inner {
  height: 100%;
  min-height: var(--nav-h);
  padding: 0 clamp(16px, 3vw, 42px);
  display: flex;
  align-items: center;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  display: block;
}

.nav-links {
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: var(--nav-h);
  font-size: 14px;
}

.nav-cta {
  align-self: center;
  margin-left: 10px;
}

.hamburger {
  align-self: center;
}

.scroll-progress {
  top: auto;
  bottom: 0;
  height: 3px;
  z-index: 2;
}

#navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0%, transparent 28%, rgba(255,22,127,0.38) 42%, rgba(80,242,255,0.32) 50%, transparent 64%, transparent 100%),
    radial-gradient(circle at 50% 100%, rgba(255,22,127,0.24), transparent 46%);
  background-size: 240% 100%, 100% 100%;
  background-position: 120% 0, center;
  opacity: 0.95;
  animation: headerLightSweep 4.8s ease-in-out infinite;
}

#navbar .container {
  position: relative;
  z-index: 1;
}

@keyframes headerLightSweep {
  0%, 100% { background-position: 130% 0, center; opacity: 0.42; }
  42% { background-position: -35% 0, center; opacity: 1; }
  65% { background-position: -70% 0, center; opacity: 0.68; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 66px;
  }

  #navbar,
  #navbar.scrolled {
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
  }

  .nav-logo img {
    height: 42px;
  }
}

/* Legal pages */
.stage-light {
  width: clamp(150px, 18vw, 300px);
  height: 112vh !important;
  bottom: -18vh;
  opacity: 0.7;
  filter: blur(3px) saturate(1.5);
  mix-blend-mode: screen;
  animation: stageSweepStrong 4.2s ease-in-out infinite;
}

.stage-light:nth-child(1) { background: linear-gradient(to top, rgba(255,22,127,1), rgba(255,22,127,0.42) 42%, transparent 78%); }
.stage-light:nth-child(2) { background: linear-gradient(to top, rgba(80,242,255,0.95), rgba(80,242,255,0.38) 42%, transparent 78%); }
.stage-light:nth-child(3) { background: linear-gradient(to top, rgba(255,22,127,0.92), rgba(123,44,255,0.46) 45%, transparent 78%); }
.stage-light:nth-child(4) { background: linear-gradient(to top, rgba(123,44,255,0.98), rgba(123,44,255,0.38) 42%, transparent 78%); }
.stage-light:nth-child(5) { background: linear-gradient(to top, rgba(255,75,47,0.9), rgba(255,22,127,0.36) 44%, transparent 78%); }

@keyframes stageSweepStrong {
  0%, 100% { opacity: 0.34; transform: rotate(-16deg) scaleX(0.72); }
  28% { opacity: 0.92; transform: rotate(10deg) scaleX(1.16); }
  55% { opacity: 0.55; transform: rotate(-4deg) scaleX(0.9); }
  78% { opacity: 0.86; transform: rotate(14deg) scaleX(1.08); }
}

#sponsoren {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,22,127,0.16), transparent 28rem),
    radial-gradient(circle at 95% 18%, rgba(80,242,255,0.08), transparent 24rem),
    #06060b;
  color: var(--cos-white);
}

#sponsoren .section-title,
#sponsoren .sponsor-benefit-body h4,
#sponsoren .sponsor-cta-card h3 {
  color: var(--cos-white);
}

#sponsoren .section-lead,
#sponsoren .sponsor-cta-card p,
#sponsoren .sponsor-benefit-body p,
#sponsoren .sponsor-more {
  color: rgba(245,245,245,0.68);
}

#sponsoren .sponsor-more {
  display: inline-flex;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px;
}

#sponsoren .sponsor-logo-slot,
#sponsoren .sponsor-cta-card {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.1);
}

#sponsoren .sponsor-logo-slot {
  color: rgba(245,245,245,0.36);
}

#sponsoren .sponsor-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

#sponsoren #sponsor-logos-block {
  margin: 0;
}

#sponsoren .sponsor-logos-grid {
  margin-bottom: 14px;
}

#sponsoren .sponsor-more {
  width: 100%;
  justify-content: center;
  margin: 0;
}

#sponsoren #sponsor-cta-block {
  margin: 0;
}

#sponsoren .sponsor-cta-card {
  padding: 24px;
}

#sponsoren .sponsor-cta-card p {
  margin-bottom: 18px;
}

#sponsoren .sponsor-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

#sponsoren .sponsor-benefit {
  padding: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}

#sponsoren .sponsor-benefit-body p {
  display: none;
}

#sponsoren .sponsor-form {
  max-width: 620px;
}

@media (max-width: 980px) {
  #sponsoren .sponsor-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  #sponsoren .sponsor-benefits {
    grid-template-columns: 1fr;
  }

  #sponsoren .sponsor-form {
    max-width: none;
  }
}

.nav-links a {
  min-height: auto;
  padding-block: 8px;
}

.nav-links a::after {
  bottom: 2px;
}

.cos-confetti {
  position: fixed;
  z-index: 12000;
  pointer-events: none;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(255,22,127,0.22);
  animation-name: cosConfettiFall;
  animation-timing-function: cubic-bezier(0.16, 0.8, 0.36, 1);
  animation-fill-mode: forwards;
}

@keyframes cosConfettiFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0) rotate(0deg) scale(0.8);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--confetti-drift), 105vh, 0) rotate(var(--confetti-rotate)) scale(1);
  }
}

.lineup-card {
  cursor: pointer;
}

.lineup-card:focus-visible {
  outline: 3px solid var(--cos-cyan);
  outline-offset: 4px;
}

#creator-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001;
  width: min(94vw, 980px);
  max-height: 90vh;
  overflow-y: auto;
  transform: translate(-50%, -48%) scale(0.94);
  opacity: 0;
  pointer-events: none;
  color: var(--cos-white);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,22,127,0.26), transparent 22rem),
    radial-gradient(circle at 100% 20%, rgba(80,242,255,0.12), transparent 20rem),
    #05050a;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  box-shadow: 0 34px 120px rgba(0,0,0,0.78), 0 0 80px rgba(255,22,127,0.14);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.34,1.18,0.64,1);
}

#creator-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.creator-modal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(28px, 5vw, 54px);
}

.creator-modal-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0b0b12;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
}

.creator-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(1.18) contrast(1.04);
}

.creator-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent 48%);
  pointer-events: none;
}

.creator-modal-time {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px 9px 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: var(--transition);
}
.creator-modal-time svg {
  flex-shrink: 0;
  opacity: 0.75;
}
/* TBA / "Zeit folgt" variant */
.creator-modal-time.cmt-tba {
  background: rgba(255, 0, 122, 0.15);
  border-color: rgba(255, 0, 122, 0.4);
  color: #ff6ab0;
  gap: 8px;
}
/* Pulsing dot for TBA state */
.cmt-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cos-pink);
  flex-shrink: 0;
  animation: cmt-pulse 1.6s ease-in-out infinite;
}
@keyframes cmt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

.creator-modal-content {
  align-self: center;
}

.creator-modal-name {
  margin: 8px 0 18px;
  font-family: var(--font-title);
  font-size: clamp(72px, 10vw, 138px);
  line-height: 0.8;
  text-transform: uppercase;
}

.creator-modal-bio {
  max-width: 58ch;
  color: rgba(245,245,245,0.74);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.creator-modal-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0;
}

.creator-modal-facts span {
  padding: 8px 11px;
  color: rgba(245,245,245,0.86);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 4px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-modal-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.creator-modal-social {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  color: var(--cos-white);
  text-decoration: none;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.creator-modal-social:hover,
.creator-modal-social:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255,22,127,0.48);
  background: rgba(255,22,127,0.12);
}

.creator-modal-social svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.creator-modal-social b,
.creator-modal-social small {
  display: block;
}

.creator-modal-social b {
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 0.95;
}

.creator-modal-social small {
  max-width: 13ch;
  overflow: hidden;
  color: rgba(245,245,245,0.58);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-modal-queue {
  width: 100%;
  justify-content: center;
}

@media (max-width: 820px) {
  .creator-modal-layout {
    grid-template-columns: 1fr;
  }

  .creator-modal-media,
  .creator-modal-media img {
    min-height: 340px;
  }

  .creator-modal-socials {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(255,22,127,0.18), transparent 26rem),
    radial-gradient(circle at 90% 10%, rgba(80,242,255,0.10), transparent 20rem),
    #06060b;
}

.legal-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 96px) 0;
}

.legal-shell .section-title {
  margin: 16px 0 36px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(247,247,244,0.78);
  font-family: var(--font-sub);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-card {
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cos-white);
}

.legal-card p {
  margin: 0 0 14px;
  color: rgba(247,247,244,0.72);
  line-height: 1.8;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--cos-pink);
}

/* ── Matrix Glitch Countdown ──────────────────────────────── */

/* Scanline overlay on the whole countdown block */
.countdown-wrap.countdown-glitch {
  position: relative;
  overflow: hidden;
}

.countdown-wrap.countdown-glitch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 255, 70, 0.03) 3px,
    rgba(0, 255, 70, 0.03) 4px
  );
  pointer-events: none;
  z-index: 1;
  animation: scanlines 6s linear infinite;
}

@keyframes scanlines {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

/* Glitch digits */
.cd-glitch {
  font-family: 'Courier New', 'Courier', monospace !important;
  font-size: clamp(28px, 5vw, 48px) !important;
  color: #00ff46;
  transition: color 0.05s;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 8px #00ff46;
  letter-spacing: 0.04em;
}

/* Occasional full-row horizontal glitch shift */
@keyframes glitch-shift {
  0%,  95% { transform: translateX(0); }
  96%       { transform: translateX(-3px) skewX(-1deg); }
  97%       { transform: translateX(4px)  skewX(1deg); }
  98%       { transform: translateX(-2px); }
  100%      { transform: translateX(0); }
}

.countdown-wrap.countdown-glitch .cd-block {
  animation: glitch-shift 3.5s infinite;
}
.countdown-wrap.countdown-glitch .cd-block:nth-child(2) { animation-delay: 0.4s; }
.countdown-wrap.countdown-glitch .cd-block:nth-child(3) { animation-delay: 0.9s; }
.countdown-wrap.countdown-glitch .cd-block:nth-child(4) { animation-delay: 1.6s; }

/* "Datum wird bekannt gegeben" label */
.cd-coming-soon {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 255, 70, 0.5);
  text-align: center;
  margin-top: 10px;
  animation: blink-coming-soon 2.2s step-start infinite;
}

/* ============================================================
   PUBLIC LAUNCH: NEWSLETTER, CREATOR STATUS & PLANNED QUEUE
   ============================================================ */
.hero-planned-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 194, 71, 0.34);
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.08);
  color: #ffd36f;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-planned-note .pulse-dot {
  background: #ffc247;
  box-shadow: 0 0 0 0 rgba(255, 194, 71, 0.5);
}

.queue-planned-chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 250px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 194, 71, 0.35);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 194, 71, 0.13), rgba(255, 255, 255, 0.03));
  color: #ffd36f;
}

.queue-planned-chip strong {
  font-family: var(--font-sub);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.queue-planned-chip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.lineup-status-ribbon {
  position: absolute;
  z-index: 5;
  top: 23px;
  right: -49px;
  width: 205px;
  padding: 8px 16px;
  transform: rotate(36deg);
  background: linear-gradient(90deg, #ffad1f, #ffd36f);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  color: #17110a;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.lineup-tease--planned {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin-inline: auto;
  border-color: rgba(255, 194, 71, 0.28);
  background: linear-gradient(135deg, rgba(255, 194, 71, 0.09), rgba(255, 255, 255, 0.025));
  text-align: left;
}

.lineup-tease--planned strong {
  display: block;
  margin-bottom: 5px;
  color: #ffd36f;
  font-family: var(--font-sub);
  font-size: 18px;
  letter-spacing: 0.03em;
}

.lineup-tease--planned p { margin: 0; }
.lineup-tease-icon { font-size: 34px; }

#newsletter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 0, 122, 0.17), transparent 34rem),
    radial-gradient(circle at 84% 74%, rgba(80, 242, 255, 0.09), transparent 30rem),
    var(--cos-black);
}

#newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

#newsletter .container { position: relative; z-index: 1; }

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.newsletter-intro-card {
  position: relative;
  margin-bottom: 28px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 122, 0.25);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 0, 122, 0.13), rgba(255, 255, 255, 0.035));
}

.newsletter-intro-card::after {
  content: '@';
  position: absolute;
  right: -18px;
  bottom: -50px;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-head);
  font-size: 190px;
  line-height: 1;
}

.newsletter-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(80, 242, 255, 0.28);
  border-radius: 999px;
  background: rgba(80, 242, 255, 0.08);
  color: #83f5ff;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-intro-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--cos-white);
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.newsletter-intro-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--cos-grey);
  line-height: 1.75;
}

#newsletter .waitlist-card {
  border-color: rgba(255, 0, 122, 0.3);
  background: linear-gradient(145deg, rgba(21, 21, 29, 0.96), rgba(255, 0, 122, 0.08));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38), 0 0 70px rgba(255, 0, 122, 0.08);
}

.creator-modal-status {
  display: inline-flex;
  margin: 4px 0 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 194, 71, 0.35);
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.1);
  color: #ffd36f;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible { color: var(--cos-pink); }

#queue-modal,
#popup-modal { display: none !important; }

@media (max-width: 900px) {
  .newsletter-layout { grid-template-columns: 1fr; }
  .queue-planned-chip { width: 100%; min-width: 0; }
}

@media (max-width: 640px) {
  .hero-planned-note { align-items: flex-start; border-radius: 14px; text-align: left; }
  .lineup-status-ribbon { top: 18px; right: -55px; font-size: 10px; }
  .lineup-tease--planned { grid-template-columns: 1fr; text-align: center; }
  .newsletter-intro-card { padding: 24px 20px; }
}

@keyframes blink-coming-soon {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.2; }
}
