/* ─────────────────────────────────────────────
   ESKISTA SESSION · Minimal Clean Stylesheet
───────────────────────────────────────────── */

:root {
  --black:  #080808;
  --dark:   #0f0f0f;
  --dark2:  #161616;
  --gold:   #F2C12E;
  --gold-d: #C9960F;
  --green:  #2A8A3A;
  --green-l:#3DB054;
  --white:  #F0EBE0;
  --muted:  #7a7a72;

  --font-logo:    'Alfa Slab One', serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-italic:  'Playfair Display', serif;
  --font-raleway: 'Raleway', sans-serif;

  --max-w:  720px;
  --pad:    clamp(24px, 5vw, 64px);
}

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

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0;
  padding: 0 var(--pad);
}

/* ── Section labels ── */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-l);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-logo);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
}
.section-title em {
  font-family: var(--font-logo);
  font-style: normal;
  color: var(--gold);
}
.title-white {
  color: var(--white);
  text-decoration: none;
  pointer-events: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
  animation: bpmPulse 0.469s ease-in-out infinite;
}
.btn--primary:hover {
  animation-play-state: paused;
}
.btn--primary:hover {
  background: #f7d050;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(242,193,46,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--large {
  font-size: 1rem;
  padding: 18px 48px;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pad) 20px;
  transition: background 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  padding: 18px var(--pad) 14px;
}
.nav__logo {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 2px 3px 0 #4a0d0d;
  line-height: 1;
}
.nav__logo span {
  color: var(--gold);
}

.nav__cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.25s;
}
.nav__cta:hover { background: #f7d050; transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu a {
  font-family: var(--font-logo);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mob-link--cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-size: 1.2rem !important;
  padding: 12px 32px;
  border-radius: 100px;
}
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: var(--white); font-size: 1.4rem; cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu__close:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(42,138,58,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 35%, rgba(242,193,46,0.09) 0%, transparent 65%),
    var(--black);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.particles { position: absolute; inset: 0; pointer-events: none; }
.particle  {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1);       opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: var(--max-w);
  width: 100%;
  padding: 0 var(--pad);
}

.hero__pre {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--green-l);
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-top: 20px;
  margin-bottom: 28px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-logo);
  font-size: clamp(4.2rem, 17vw, 10rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow:
    3px 4px 0 #6b1212,
    5px 7px 0 #3d0808,
    0 0 80px rgba(242,193,46,0.18);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.05s ease both;
}

.hero__tagline {
  font-family: var(--font-raleway);
  font-style: normal;
  font-size: clamp(0.76rem, 1.6vw, 0.88rem);
  color: rgba(240,235,224,0.82);
  line-height: 1.55;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  height: 3.2em;
  overflow: hidden;
}
.hero__tagline span {
  display: block;
  min-height: 1.55em;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.85);
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero__meta-dot { color: var(--gold); opacity: 0.5; }

/* DJ strip */
.hero__dj {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero__dj-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

/* ── DJ Avatar (disk player) ── */
.dj__avatar {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  transition: filter 0.25s;
}
.dj__avatar:hover {
  filter: brightness(1.25);
}
.dj__avatar-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255,220,60,0)   0deg,
    rgba(255,200,40,.85) 35deg,
    rgba(255,140,15,1)   70deg,
    rgba(220,65,0,.70)   100deg,
    rgba(120,28,0,.20)   150deg,
    rgba(30,6,0,.04)     210deg,
    rgba(30,6,0,.02)     270deg,
    rgba(130,38,0,.22)   320deg,
    rgba(230,115,18,.60) 350deg,
    rgba(255,220,60,0)   360deg
  );
  animation: rotateSlow 5s linear infinite;
}
.dj__avatar-ring::before {
  content: ''; position: absolute; inset: 10px; border-radius: 50%; background: var(--black);
}
.dj__avatar-ring::after {
  content: ''; position: absolute; top: 4px; left: 42%;
  width: 10px; height: 10px; background: rgba(255,220,80,1); border-radius: 50%;
  box-shadow: 0 0 8px 4px rgba(255,160,20,0.9);
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.dj__avatar-inner {
  width: 148px; height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle, #000 38%, #0d0300 60%, rgba(140,50,0,.35) 78%, rgba(80,20,0,.12) 92%, transparent 100%);
  box-shadow:
    inset 0 0 28px 8px #000,
    0 0 0 2px rgba(255,175,25,.95),
    0 0 12px 4px rgba(255,120,10,.7),
    0 0 26px 7px rgba(200,60,0,.4);
  animation: avatarBhPulse 2.4s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.disk-ctrl {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: rgba(242,193,46,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, transform 0.15s;
  position: relative;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}
.disk-ctrl:hover, .disk-ctrl:focus-visible {
  color: rgba(255,225,80,1);
  transform: scale(1.2);
  outline: none;
}
.disk-ctrl--main {
  padding: 8px;
}
.disk-ctrl--main:hover, .disk-ctrl--main:focus-visible {
  transform: scale(1.25);
}
.dj__avatar.is-playing .dj__avatar-ring {
  animation-duration: 2.5s;
}
.dj__avatar.is-playing .dj__avatar-inner {
  box-shadow:
    inset 0 0 20px 6px #000,
    0 0 0 3px rgba(255,215,55,1),
    0 0 14px 5px rgba(255,150,30,.9),
    0 0 30px 8px rgba(220,80,0,.55);
}
.dj__avatar.scratching {
  cursor: grabbing;
}
.dj__avatar:not(.scratching) {
  cursor: grab;
}
.now-playing {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,193,46,0.6);
  margin-top: 10px;
  margin-left: 4px;
  min-height: 1.2em;
  transition: opacity 0.4s;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.np-artist {
  color: rgba(255,210,60,.85);
}
.np-sep {
  opacity: 0.5;
}
.np-title {
  color: rgba(255,255,255,.55);
  font-style: italic;
}
@keyframes avatarBhPulse {
  0%,100% { box-shadow: inset 0 0 20px 6px #000, 0 0 0 2px rgba(255,175,25,.95), 0 0 10px 3px rgba(255,120,10,.7), 0 0 22px 6px rgba(200,60,0,.4); }
  50%     { box-shadow: inset 0 0 20px 6px #000, 0 0 0 3px rgba(255,215,55,1), 0 0 14px 5px rgba(255,150,30,.9), 0 0 30px 8px rgba(220,80,0,.55); }
}

/* DJ Name */
.dj__name {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

/* Blackhole O in D-NOVA */
.bh-wrap {
  position: relative;
  display: inline-block;
  width: 0.62em;
  height: 1em;
  vertical-align: top;
}
.bh-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0.48em; height: 0.48em;
  transform: translate(-50%, -54%);
  border-radius: 50%;
  background: radial-gradient(circle, #000 55%, #0a0200 80%, transparent 100%);
  box-shadow:
    0 0 0 .035em rgba(255,185,30,1),
    0 0 .07em .045em rgba(255,130,10,.95),
    0 0 .14em .07em rgba(220,70,0,.7),
    0 0 .26em .1em rgba(160,40,0,.45),
    0 0 .5em .16em rgba(80,18,0,.2);
  z-index: 3;
  animation: bhPulse 2.4s ease-in-out infinite;
}
.bh-disk {
  position: absolute;
  top: 68%; left: 50%;
  width: .88em; height: .88em;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,220,60,0) 0deg, rgba(255,200,40,.8) 30deg, rgba(255,140,15,1) 65deg, rgba(220,65,0,.75) 95deg, rgba(120,28,0,.25) 140deg, rgba(40,8,0,.05) 200deg, rgba(40,8,0,.02) 270deg, rgba(120,35,0,.18) 315deg, rgba(220,110,15,.55) 345deg, rgba(255,220,60,0) 360deg);
  transform: translate(-50%,-50%) scaleY(.18) rotate(0deg);
  animation: diskSpin 5s linear infinite;
  z-index: 2;
}
.bh-wrap::after {
  content: '';
  position: absolute;
  top: 32%; left: 50%;
  width: .72em; height: .72em;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,200,50,0) 0deg, rgba(255,170,30,.35) 30deg, rgba(255,110,10,.55) 65deg, rgba(200,55,0,.3) 95deg, rgba(80,18,0,.08) 150deg, rgba(0,0,0,0) 190deg, rgba(0,0,0,0) 300deg, rgba(180,80,10,.2) 340deg, rgba(255,200,50,0) 360deg);
  transform: translate(-50%,-50%) scaleY(.14) rotate(0deg);
  animation: diskSpin 5s linear infinite reverse;
  z-index: 1;
}
@keyframes bhPulse {
  0%,100% { box-shadow: 0 0 0 .035em rgba(255,185,30,1), 0 0 .07em .045em rgba(255,130,10,.95), 0 0 .14em .07em rgba(220,70,0,.7), 0 0 .26em .1em rgba(160,40,0,.45); }
  50%     { box-shadow: 0 0 0 .042em rgba(255,215,60,1), 0 0 .09em .055em rgba(255,160,35,1), 0 0 .18em .09em rgba(240,90,0,.85), 0 0 .34em .13em rgba(170,50,0,.55); }
}
@keyframes diskSpin {
  from { transform: translate(-50%,-50%) scaleY(.18) rotate(0deg); }
  to   { transform: translate(-50%,-50%) scaleY(.18) rotate(360deg); }
}

/* Hero CTA */
.hero__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  margin-top: 4px;
  margin-left: -1px;
  animation: fadeUp 0.8s 0.25s ease both;
  width: fit-content;
}
.hero__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(242,193,46,0.4);
  font-size: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  animation: bpmPulse 0.469s ease-in-out infinite;
}
.hero__cta:hover .hero__cta-arrow {
  animation-play-state: paused;
}
.hero__cta:hover .hero__cta-arrow {
  border-color: var(--gold);
  background: rgba(242,193,46,0.1);
  transform: translateX(4px);
}

/* Hero teaser — Season II */
.hero__teaser {
  margin-top: 4px;
  animation: fadeUp 0.8s 0.28s ease both;
}
.hero__teaser-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 10px;
  animation: bpmPulse 1.8s ease-in-out infinite;
}
.hero__teaser-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 12px;
}
.hero__teaser-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 28px;
  gap: 6px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.countdown__unit span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 60px;
  text-align: center;
}
.countdown__unit label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 5px;
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 18px;
  animation: pulse 1s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
.countdown__live { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); letter-spacing: 0.1em; }

/* Hero scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s 1s ease both;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ── About Text EQ Bars ── */
@keyframes poleFlash {
  0%, 100% { filter: brightness(1)   saturate(1);   opacity: 0.6; }
  5%       { filter: brightness(3.5) saturate(1.8); opacity: 1;   }
  12%      { filter: brightness(1)   saturate(1);   opacity: 0.6; }
}

/* ── BPM Pulse ── */
@keyframes bpmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,193,46,0); }
  50%      { box-shadow: 0 0 14px 4px rgba(242,193,46,0.28), 0 0 28px 10px rgba(242,193,46,0.10); }
}

/* ── Glitch ── */
@keyframes glitchAnim {
  0%   { transform: translateX(0)    skewX(0deg);     filter: none; }
  25%  { transform: translateX(-4px) skewX(-2.5deg);  filter: hue-rotate(45deg) brightness(1.4); }
  50%  { transform: translateX(4px)  skewX(1.5deg);   filter: hue-rotate(-45deg); }
  75%  { transform: translateX(-2px) skewX(-1deg);    filter: brightness(1.6); }
  100% { transform: translateX(0)    skewX(0deg);     filter: none; }
}

/* ── Genres Ticker ── */
.genres-ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.genres-ticker__track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.genres-ticker:hover .genres-ticker__track {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Divider ── */
.section-divider {
  height: 1px;
  position: relative;
  background: linear-gradient(to right, transparent, rgba(242,193,46,0.18) 20%, rgba(242,193,46,0.45) 50%, rgba(42,138,58,0.25) 75%, transparent);
}
.section-divider::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 25%;
  width: 50%;
  height: 9px;
  background: radial-gradient(ellipse at center, rgba(242,193,46,0.22) 0%, transparent 70%);
  filter: blur(4px);
}

/* ─────────────────────────────────────────────
   THE NIGHT (ABOUT)
───────────────────────────────────────────── */
.about {
  background: var(--dark);
  padding: 100px 0;
}

.about__body {
  margin-bottom: 56px;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__text p {
  position: relative;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 0 10px 10px 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.75;
  color: rgba(240,235,224,0.75);
}
.about__text p::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 9px;
  height: 100%;
  border-radius: 3px 0 0 3px;
  animation: poleFlash 3s ease-in-out infinite;
}
.about__text p:nth-child(1)::before {
  background: linear-gradient(to top, #C9240A, #FF6B35, #FFD700);
  box-shadow: 0 0 10px 2px rgba(255,107,53,0.45);
  animation-delay: 0s;
}
.about__text p:nth-child(2)::before {
  background: linear-gradient(to top, #1a6e2e, #3DB054, #aaff66);
  box-shadow: 0 0 10px 2px rgba(61,176,84,0.45);
  animation-delay: 1s;
}
.about__text p:nth-child(3)::before {
  background: linear-gradient(to top, #8B4513, #F2C12E, #FFF176);
  box-shadow: 0 0 10px 2px rgba(242,193,46,0.45);
  animation-delay: 2s;
}

/* Genres */
.genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.genre-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  font-size: 0.78rem;
  color: rgba(240,235,224,0.8);
  transition: all 0.25s;
}
.genre-item:hover {
  background: rgba(242,193,46,0.08);
  color: var(--white);
}
.genre-item--large {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.genre-item--gold {
  background: rgba(242,193,46,0.1);
  color: var(--gold);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   FIND US (VENUE + TICKETS)
───────────────────────────────────────────── */
.venue {
  background: var(--black);
  padding: 100px 0;
}

.venue__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.venue__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.venue__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.venue__text {
  font-size: 0.95rem;
  color: rgba(240,235,224,0.7);
  line-height: 1.55;
}

.venue__map {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 36px;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
}
.venue__map iframe { display: block; width: 100%; height: 100%; }

.venue__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.venue__note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 36px 0 28px;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer__ig {
  flex-shrink: 0;
  color: var(--muted);
  transition: color 0.25s;
}
.footer__ig:hover { color: var(--gold); }
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo {
  font-family: var(--font-logo);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 2px 3px 0 #4a0d0d;
  line-height: 1;
}
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-size: 0.75rem;
  color: var(--muted);
}
.footer__copy {
  font-size: 0.72rem;
  color: rgba(122,122,114,0.5);
}
.footer__copy a { color: rgba(242,193,46,0.5); transition: color 0.2s; }
.footer__copy a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   REVEAL ON SCROLL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 100px 0 64px; }

  .hero__dj { gap: 24px; }
  .dj__avatar-inner { width: 120px; height: 120px; }
  .disk-ctrl { font-size: 1rem; padding: 4px; }
  .disk-ctrl--main { font-size: 1.4rem; }

  .about  { padding: 72px 0; }
  .venue  { padding: 72px 0; }
  .footer { padding: 48px 0 32px; }

  .venue__map { height: 240px; }

  .venue__ctas .btn { width: 100%; }

  .countdown { justify-content: center; }
  .countdown__unit { min-width: 52px; }
  .countdown__unit span { font-size: 1.5rem; padding: 7px 10px; min-width: 52px; }
}
