/* versie 2 — modern, single font (Inter), animated 2D noise canvas bg */

/* ─── Reveal animation (IntersectionObserver-driven) ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.reveal.is-visible {
  animation: reveal-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes reveal-in {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#canv {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  /* 128x128 canvas stretched to viewport — keep pixel character */
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
}

.layout {
  position: relative;
  z-index: 1;
  max-width: 76rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 6rem;
}

/* ─── Top bar ─── */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  margin-bottom: 5rem;
}

.topbar__id { color: #fff; }
.topbar__date { color: rgba(255, 255, 255, 0.6); }

/* ─── Hero ─── */
.hero {
  text-align: center;
  margin: 3rem 0 4rem;
}

.hero__logo {
  display: block;
  width: clamp(110px, 14vw, 170px);
  height: auto;
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 4px 24px rgba(255, 140, 66, 0.25));
}

/* Reusable soft-edge fade mask — applies to any section we want to "melt"
   into the bg. Single linear gradient = simple + reliable across browsers. */
.fade-edges {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Hero CTA — "Watch the countdown" pill button */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.75rem;
  padding: 1rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFFEFB;
  background: rgba(255, 254, 251, 0.08);
  border: 1px solid rgba(255, 254, 251, 0.22);
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero__cta:hover,
.hero__cta:focus-visible {
  background: rgba(255, 254, 251, 0.14);
  border-color: rgba(255, 254, 251, 0.4);
  transform: translateY(-1px);
}
.hero__cta-arrow {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.2s ease;
}
.hero__cta:hover .hero__cta-arrow,
.hero__cta:focus-visible .hero__cta-arrow {
  transform: translateX(3px);
}

/* Live status row above the heading */
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.5rem 0 1.75rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.hero__stream-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}
.hero__stream-badge.is-live {
  color: #FF2E5F;
  animation: blink 1.4s ease-in-out infinite;
}

.hero__stream-viewers {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 0.85rem;
}

.hero__stream-link,
.hero__stream-link:link,
.hero__stream-link:visited {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 0.85rem;
  transition: color 0.15s ease;
}
.hero__stream-link:hover { color: #fff; }

@media (max-width: 600px) {
  .hero__meta { gap: 0.55rem; padding: 0.35rem 0.75rem; }
  .hero__stream-link, .hero__stream-viewers { display: none; }
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.5rem;
}

.hero__title {
  font-family: 'Zalando Sans Expanded', 'Zalando Sans', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 5.6vw, 4.2rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.015em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.hero__accent {
  color: #FF2E5F;
}

.hero__invited {
  margin: 1.5rem 0 0;
  font-family: 'Zalando Sans Expanded', 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  color: #fff;
}

.hero__sup {
  display: inline-block;
  font-size: 0.42em;
  vertical-align: top;
  margin-top: 0.4em;
  margin-left: 0.06em;
  opacity: 0.55;
  font-weight: 500;
  letter-spacing: 0;
}

.hero__sub {
  margin: 2rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Floating nav (centered glass pill) ─── */
html { scroll-behavior: smooth; }

.nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  padding: 0.45rem;
  background: rgba(15, 21, 48, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav__list {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav__item a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav__item a.is-active {
  color: #fff;
  background: rgba(255, 46, 95, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 46, 95, 0.4);
}

.nav__num {
  font-family: 'Inter', monospace;
  font-feature-settings: 'tnum';
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #FF2E5F;
  opacity: 0.85;
}

.nav__item a:hover .nav__num,
.nav__item a.is-active .nav__num { opacity: 1; }

@media (max-width: 700px) {
  .nav { top: 0.75rem; padding: 0.3rem; }
  .nav__item a {
    padding: 0.4rem 0.6rem;
    gap: 0.25rem;
    font-size: 0.7rem;
  }
  .nav__num { font-size: 0.55rem; }
  .nav__label { display: none; }
}

/* ─── Gallery — soft side-fade matching other sections ─── */
.gallery__dome {
  position: relative;
  width: 100%;
  height: clamp(260px, 32vw, 360px);
  margin: 2rem auto 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.gallery__dome .gallery__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: gallery-scroll 60s linear infinite;
  padding: 1rem 0;
  will-change: transform;
  transform: translateZ(0);
}
.gallery__dome .polaroid { margin-right: 1.25rem; }


/* ─── Gallery (dome version above heading; full-bleed marquee elsewhere) ─── */
.gallery {
  margin: 1.5rem calc(50% - 50vw) 0;
  width: 100vw;
  padding: 0;
  overflow: hidden;
}

.gallery__title {
  font-family: 'Zalando Sans Expanded', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 1.5rem 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.05;
}

.gallery__sparkle {
  display: inline-block;
  margin-left: 0.4em;
  color: #FFD93D;
  font-size: 0.8em;
  animation: sparkle-spin 8s linear infinite;
  transform-origin: center;
}

@keyframes sparkle-spin {
  0%, 100% { transform: rotate(0) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__sparkle { animation: none; }
}

.gallery__viewport {
  overflow: hidden;
  padding: 1.5rem 0;
}

.gallery__track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 60s linear infinite;
}
.gallery__track .polaroid { margin-right: 1.75rem; }


@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--track-half, 50%))); }
}

.polaroid {
  flex: 0 0 clamp(10rem, 26vw, 14rem);
  margin: 0;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
  will-change: transform;
}

.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #000;
  border-radius: 0.3rem;
}

.polaroid figcaption { display: none; }

.polaroid:hover {
  transform: rotate(0deg) scale(1.06);
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 700px) {
  .gallery__dome { height: 260px; }
  .gallery__dome .gallery__track {
    padding: 0.75rem 0;
    animation-duration: 200s;
  }
  .gallery__dome .polaroid { margin-right: 0.85rem; }
  .gallery__track { animation-duration: 200s; }
  .gallery__track .polaroid { margin-right: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track { animation: none !important; }
}

/* ─── Stream block ─── */
.stream {
  margin: 4rem auto;
  max-width: 44rem;
}

/* Mini stream — small preview above heading */
.stream--mini {
  max-width: 22rem;
  margin: 0.5rem auto 2rem;
}
.stream--mini .stream__bar {
  padding: 0.5rem 0.85rem;
  font-size: 0.65rem;
}
.stream--mini .stream__chat-link { font-size: 0.55rem; padding: 0.2rem 0.55rem; }

.stream__heading {
  margin: 0 0 1.25rem;
}

.stream__eyebrow {
  margin: 0 0 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}

.stream__h {
  margin: 0;
  font-family: 'Zalando Sans Expanded', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

.stream__chrome {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.stream__video {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.stream__video iframe,
.stream__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

/* Hide native seek timeline + play button on live HLS — Webkit only */
.stream__video video::-webkit-media-controls-timeline,
.stream__video video::-webkit-media-controls-current-time-display,
.stream__video video::-webkit-media-controls-time-remaining-display,
.stream__video video::-webkit-media-controls-play-button,
.stream__video video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}




.stream__bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stream__live {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.stream__live.is-live {
  color: #FF2E5F;
  animation: blink 1.4s ease-in-out infinite;
}

.stream__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

.stream__stat-icon {
  color: #FF2E5F;
  font-size: 0.7rem;
}

.stream__stat-value {
  font-weight: 700;
  color: #fff;
}

.stream__stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

/* Open chat — subtle inline link */
.stream__chat-link,
.stream__chat-link:link,
.stream__chat-link:visited {
  margin-left: auto;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  background: transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.stream__chat-link:hover,
.stream__chat-link:focus-visible {
  color: #FFFEFB;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.stream__video {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.stream__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ─── Info section ─── */
.info {
  margin-top: 6rem;
  padding: 0;
}

.info__title {
  font-family: 'Zalando Sans Expanded', 'Zalando Sans', 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  color: #fff;
}

.info__columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.info__list {
  margin: 0;
  padding: 0;
}

.info__row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 254, 251, 0.1);
}

.info__label {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 254, 251, 0.5);
}

.info__value {
  margin: 0;
  font-family: 'Zalando Sans Expanded', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.info__blurb {
  margin: 0;
  max-width: 44rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 700px) {
  .info__columns { grid-template-columns: 1fr; gap: 2rem; }
  .info__row {
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
    padding: 0.9rem 0;
  }
}

/* ─── Spotify mood section ─── */
.mood {
  margin-top: 4rem;
  text-align: center;
}

.mood__title {
  font-family: 'Zalando Sans Expanded', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.mood__player {
  width: 100%;
  max-width: 32rem;
  height: 152px;
  margin: 0 auto;
  display: block;
  border: 0;
  border-radius: 1rem;
  display: block;
  background: #0A0F2E;
}

/* ─── Lineup ─── */
.lineup {
  margin-top: 6rem;
}

.lineup__title {
  font-family: 'Zalando Sans Expanded', 'Zalando Sans', 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #fff;
}

.lineup__intro {
  margin: 0 0 2.5rem;
  max-width: 44rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.lineup__mood {
  margin: 4rem 0 0;
  text-align: center;
}
.lineup__mood-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #FFFEFB;
  background: rgba(255, 254, 251, 0.06);
  border: 1px solid rgba(255, 254, 251, 0.18);
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.lineup__mood-link:hover,
.lineup__mood-link:focus-visible {
  color: #FF8C42;
  border-color: rgba(255, 140, 66, 0.55);
  background: rgba(255, 140, 66, 0.12);
  transform: translateY(-1px);
}
.lineup__mood-icon {
  width: 1.2em;
  height: 1.2em;
  color: #FF8C42;
}


/* Poster-style lineup: stacked rows, big typography, no cards */
.lineup__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.lineup__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 254, 251, 0.08);
}
.lineup__item:last-child { border-bottom: none; }
@media (max-width: 600px) {
  .lineup__item { grid-template-columns: 48px 1fr; gap: 0.85rem; }
}

.lineup__item .lineup__avatar,
.lineup__item .lineup__avatar--placeholder {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 254, 251, 0.14);
  background: rgba(255, 254, 251, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 254, 251, 0.5);
}
@media (max-width: 600px) {
  .lineup__item .lineup__avatar,
  .lineup__item .lineup__avatar--placeholder { width: 48px; height: 48px; }
}

/* ─── Empty slot — mysterious placeholder ─── */
.lineup__item--open {
  background: transparent;
  border: 1px dashed rgba(255, 254, 251, 0.18);
  position: relative;
  overflow: hidden;
}
.lineup__item--open::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 140, 66, 0.08), transparent 60%);
  pointer-events: none;
}
.lineup__item--open:hover {
  border-color: rgba(255, 140, 66, 0.4);
  background: rgba(255, 140, 66, 0.04);
  transform: none;
}
.lineup__avatar--open {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 254, 251, 0.35);
  border: 1px dashed rgba(255, 254, 251, 0.22);
  background: transparent;
  animation: open-pulse 4s ease-in-out infinite;
}
@keyframes open-pulse {
  0%, 100% {
    border-color: rgba(255, 254, 251, 0.22);
    color: rgba(255, 254, 251, 0.35);
  }
  50% {
    border-color: rgba(255, 140, 66, 0.45);
    color: rgba(255, 140, 66, 0.6);
  }
}
.lineup__name--open {
  font-style: italic;
  font-weight: 500 !important;
  color: rgba(255, 254, 251, 0.55) !important;
}
.lineup__open-sub {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 140, 66, 0.7);
}

.lineup__item .lineup__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.15rem;
}
.lineup__item .lineup__main > .lineup__name,
.lineup__item .lineup__main > .lineup__desc {
  grid-column: 1;
}
.lineup__item .lineup__main > .lineup__sc-row {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.lineup__item .lineup__name {
  margin: 0;
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
}
.lineup__item .lineup__desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 254, 251, 0.6);
  max-width: 38rem;
}
.lineup__avatar--mystery {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 254, 251, 0.5);
  border: 1px dashed rgba(255, 254, 251, 0.22);
  background: transparent;
}
@media (max-width: 600px) {
  .lineup__avatar--mystery { width: 48px; height: 48px; font-size: 1.25rem; }
}

.lineup__item .lineup__sc-row {
  display: flex;
  gap: 0.5rem;
}
.lineup__item .lineup__sc {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 254, 251, 0.9);
  background: rgba(255, 254, 251, 0.08);
  border: 1px solid rgba(255, 254, 251, 0.16);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.lineup__item .lineup__sc svg { width: 1.6rem; height: 1.6rem; display: block; }
.lineup__item .lineup__sc:hover { color: #FF8C42; background: rgba(255, 140, 66, 0.12); }
.lineup__item .lineup__sc--spotify:hover { color: #1DB954; background: rgba(29, 185, 84, 0.12); }

@media (max-width: 700px) {
  .lineup__list { grid-template-columns: 1fr; }
}

.lineup__num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
  margin-top: 0.3rem;
}

.lineup__avatar {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.lineup__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.lineup__avatar-stack {
  display: inline-flex;
  align-items: center;
}

.lineup__avatar--stacked {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid #000;
  background: rgba(255, 255, 255, 0.08);
}

.lineup__sep {
  display: inline-block;
  margin: 0 0.5em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.lineup__main {
  min-width: 0;
}

.lineup__name {
  font-family: 'Zalando Sans Expanded', 'Zalando Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.7vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
  line-height: 1.15;
}

.lineup__desc {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  max-width: 38rem;
}

.lineup__slot {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.lineup__slot--side {
  text-align: right;
  margin-top: 0.3rem;
}

.lineup__slot--inline {
  display: none;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.65);
}

.lineup__sc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  margin-right: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.15s ease;
}

.lineup__sc:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.lineup__sc--off {
  opacity: 0.45;
  cursor: not-allowed;
}

.lineup__sc svg {
  width: 0.95rem;
  height: 0.95rem;
}

/* ─── Footer ─── */
.foot {
  text-align: center;
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.foot p { margin: 0; }

@media (max-width: 640px) {
  .lineup__item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.4rem 0.5rem;
  }
  .lineup__num { display: none; }
  .lineup__slot--side { display: none; }
  .lineup__slot--inline { display: block; }
  .lineup__desc { font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .stream__live.is-live { animation: none; }
}

/* ─── Footer ─── */
.footer {
  margin: 6rem 0 2.5rem;
  text-align: center;
  opacity: 0.45;
}
.footer__line {
  margin: 0;
  font-family: 'Zalando Sans Expanded', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text, #FFFEFB);
}

/* ─── Watch the stream (own HLS player at bottom) ─── */
.watch {
  margin-top: 6rem;
  padding: 0;
}
.watch__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.watch__title {
  margin: 0;
  font-family: 'Zalando Sans Expanded', 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.watch__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 254, 251, 0.55);
  border: 1px solid rgba(255, 254, 251, 0.18);
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.05);
}
.watch__badge.is-live {
  color: #FF8C42;
  border-color: rgba(255, 140, 66, 0.45);
  background: rgba(255, 140, 66, 0.1);
}
.watch__badge.is-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #FF8C42;
  box-shadow: 0 0 8px #FF8C42;
  animation: pulse-live 1.6s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.watch__player {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid rgba(255, 254, 251, 0.12);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.watch__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.watch__cta-row {
  margin-top: 1.75rem;
  text-align: center;
}
.watch__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFFEFB;
  background: rgba(255, 254, 251, 0.06);
  border: 1px solid rgba(255, 254, 251, 0.18);
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.watch__cta:hover,
.watch__cta:focus-visible {
  background: rgba(255, 254, 251, 0.12);
  border-color: rgba(255, 254, 251, 0.35);
  transform: translateY(-1px);
}
.watch__cta svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.2s ease;
}
.watch__cta:hover svg { transform: translateX(3px); }

/* ─── Centered stream CTA on landing ─── */
.stream-cta {
  margin: 6rem 0 0;
  text-align: center;
}
.stream-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0F1530;
  background: #FF8C42;
  border: 1px solid #FF8C42;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(255, 140, 66, 0.32);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.stream-cta__btn:hover,
.stream-cta__btn:focus-visible {
  background: #FFA866;
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(255, 140, 66, 0.4);
}
.stream-cta__btn svg {
  width: 1.1em;
  height: 1.1em;
  transition: transform 0.2s ease;
}
.stream-cta__btn:hover svg { transform: translateX(4px); }
.stream-cta__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #0F1530;
  box-shadow: 0 0 0 4px rgba(15, 21, 48, 0.25);
  animation: cta-pulse 1.4s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero pitch paragraph between invited + CTA */
.hero__pitch {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 254, 251, 0.7);
}
/* Pulsing dot inside the hero CTA (matches the bottombar live indicator) */
.hero__cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #FF8C42;
  box-shadow: 0 0 10px #FF8C42;
  animation: bb-pulse 1.6s ease-in-out infinite;
}

/* ─── Embedded stream block on homepage ─── */
/* Slight bleed beyond the layout column so the player feels like the focal
   point. Falls back to flush on mobile where there's no extra space. */
.watch-embed {
  margin: 6rem -3rem 0;
  width: calc(100% + 6rem);
}
@media (max-width: 700px) {
  .watch-embed { margin: 4rem 0 0; width: 100%; }
}

/* ─── Watch-embed stage (player + chat side by side) ─── */
.watch-embed__stage {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.25rem;
  align-items: start;
}
.watch-embed__player-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 980px) {
  .watch-embed__stage { grid-template-columns: 1fr; }
}
.watch-embed__player {
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 254, 251, 0.10);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.watch-embed__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.watch-embed__meta {
  margin: 0.7rem 0 0;
  padding: 0 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Zalando Sans', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0;
  color: rgba(255, 254, 251, 0.45);
}
.watch-embed__hint { margin: 0; }
.watch-embed__viewers {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.watch-embed__viewers-icon {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.75;
  flex: 0 0 auto;
}
@media (max-width: 700px) {
  .watch-embed__meta { padding: 0; }
}
.watch-embed__chat {
  background: rgba(255, 254, 251, 0.04);
  border: 1px solid rgba(255, 254, 251, 0.10);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 480px;
}
.watch-embed__chat-head {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255, 254, 251, 0.10);
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 254, 251, 0.65);
}
.watch-embed__chat-body {
  position: relative;
  flex: 1;
  min-height: 0;
}
.watch-embed__chat iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}
.watch-embed__chat-gate {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 21, 48, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  z-index: 2;
}
.watch-embed__chat-gate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: 240px;
}
.watch-embed__chat-gate-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: rgba(255, 140, 66, 0.85);
  opacity: 0.9;
}
.watch-embed__chat-gate-title {
  margin: 0;
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: #FFFEFB;
}
.watch-embed__chat-gate-sub {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 254, 251, 0.55);
}
.watch-embed__chat-gate-btn {
  margin-top: 0.35rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 66, 0.55);
  background: rgba(255, 140, 66, 0.18);
  color: #FF8C42;
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 120ms ease;
}
.watch-embed__chat-gate-btn:hover,
.watch-embed__chat-gate-btn:focus-visible {
  background: #FF8C42;
  color: #0F1530;
  outline: none;
}
.watch-embed__chat-gate-btn:active { transform: scale(0.97); }
