@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700;900&family=Space+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --bg: #071e30;
  --orange: #f97316;
  --gold: #fbbf24;
  --cyan: #06b6d4;
  --magenta: #ff00cc;
  --purple: #6d28d9;
  --rainbow: linear-gradient(90deg, #ff0040, #ff7700, #ffee00, #00ff88, #00d2ff, #7b00ff, #ff00cc, #ff0040);
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background:
    radial-gradient(ellipse 120% 40% at 50% 0%,   rgba(251,147,36,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 80%  60% at 10% 30%,  rgba(6,182,212,0.22)  0%, transparent 55%),
    radial-gradient(ellipse 80%  60% at 90% 30%,  rgba(6,182,212,0.22)  0%, transparent 55%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(251,191,36,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80%  50% at 50% 60%,  rgba(6,182,212,0.12)  0%, transparent 60%),
    linear-gradient(180deg, #0a2035 0%, #071a2c 30%, #061626 60%, #071e2e 100%);
}

body {
  background: transparent;
  color: #e0e0f0;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

/* ─── LOTUS ─── */
.lotus-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1050px, 95vw);
  height: min(1050px, 95vw);
  z-index: 0;
  pointer-events: none;
}
.lotus-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.09;
  animation: lotus-spin 180s linear infinite;
}
@keyframes lotus-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── CANVAS STARS ─── */
#starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── AURORA BG ─── */
.aurora {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.30) 0%, transparent 65%);
  animation: aurora-drift 20s ease-in-out infinite alternate;
}
.aurora::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(251, 147, 36, 0.22) 0%, transparent 65%);
  animation: aurora-drift 25s ease-in-out infinite alternate-reverse;
}
@keyframes aurora-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, 5%) scale(1.15); }
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,5,16,0.9), transparent);
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 6s linear infinite;
}
.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  z-index: 1;
}

.hero-cover-wrap {
  position: relative;
  width: min(624px, 88vw);
  margin-bottom: 3rem;
  animation: hero-float 8s ease-in-out infinite;
}
@media (min-width: 781px) {
  .hero-cover-wrap {
    width: min(780px, 88vw);
  }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-cover {
  width: 100%;
  border-radius: 12px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 40px rgba(251,191,36,0.2),
    0 0 80px rgba(6,182,212,0.15),
    0 0 120px rgba(109,40,217,0.1),
    0 40px 80px rgba(0,0,0,0.8);
}

/* Rainbow glow ring around cover */
.hero-cover-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: var(--rainbow);
  background-size: 300% auto;
  animation: rainbow-flow 4s linear infinite;
  z-index: 1;
  filter: blur(8px);
  opacity: 0.6;
}
.hero-cover-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: var(--rainbow);
  background-size: 300% auto;
  animation: rainbow-flow 4s linear infinite;
  z-index: 1;
  opacity: 0.9;
}

/* ─── MILESTONES TITLE ─── */
.title-milestones {
  position: relative;
  display: block;
  width: min(990px, 83vw);
  margin: 0 auto;
  line-height: 0;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.2)) drop-shadow(0 0 60px rgba(251,191,36,0.15));
  animation: title-enter 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.title-milestones-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0.8;
}

.title-milestones::before {
  content: none;
}

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

@keyframes title-enter {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  animation: fade-up 1.4s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.6;
  animation: fade-up 1.4s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-tagline span {
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 6s linear infinite;
  font-weight: 500;
}

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

@keyframes rainbow-flow {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ─── RAINBOW DIVIDER ─── */
.rainbow-divider {
  width: 100%;
  height: 1px;
  background: var(--rainbow);
  background-size: 300% auto;
  animation: rainbow-flow 6s linear infinite;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.rainbow-divider.thick {
  height: 2px;
  opacity: 0.7;
}

/* ─── SECTION BASE ─── */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ─── STORY ─── */
.story-section {
  background: linear-gradient(to bottom, transparent, rgba(5,5,16,0.95), transparent);
}

.story-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 5s linear infinite;
  margin-bottom: 1.5rem;
  display: block;
}

.story-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
}

.story-headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
}

.story-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 5s linear infinite;
  animation-delay: calc(var(--i, 0) * 0.5s);
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── PROGRESS BAR ─── */
.progress-wrap {
  margin-top: 2rem;
  max-width: 400px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.progress-bar-bg {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  width: 16.67%;
  background: var(--rainbow);
  background-size: 300% auto;
  animation: rainbow-flow 3s linear infinite;
  border-radius: 999px;
  box-shadow: 0 0 10px var(--gold);
  transition: width 1s ease;
}

/* ─── STATEMENT ─── */
.statement-section { }

.statement-box {
  position: relative;
  border-left: 2px solid transparent;
  border-image: var(--rainbow) 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border-radius: 0 12px 12px 0;
  padding: 2.5rem 2.5rem 2rem 3rem;
  max-width: 760px;
}

.statement-quote-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  line-height: 0.6;
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 6s linear infinite;
  margin-bottom: 1.2rem;
  display: block;
  opacity: 0.5;
}

.statement-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.statement-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.62);
  font-weight: 400;
}

.statement-lead {
  font-family: 'Oswald', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.9) !important;
  letter-spacing: 0.02em;
}

.statement-kicker {
  font-family: 'Oswald', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 0.05em;
}

.statement-sig {
  margin-top: 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 5s linear infinite;
}

/* ─── TRACKS ─── */
.tracks-section { }

.tracks-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tracks-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.tracks-title span {
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 5s linear infinite;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.track-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.track-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: var(--rainbow);
  background-size: 300% auto;
  animation: rainbow-flow 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.track-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background: rgba(5, 5, 20, 0.96);
  z-index: 0;
}

.track-card:hover::before { opacity: 0.8; }
.track-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.track-card > * { position: relative; z-index: 1; }

.track-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  width: 2.2rem;
  flex-shrink: 0;
  color: rgba(255,255,255,0.15);
  transition: color 0.3s;
}

.track-card.available .track-num {
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 4s linear infinite;
}

.track-info { flex: 1; }
.track-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.track-card.available .track-name {
  color: rgba(255,255,255,0.75);
}
.track-card:hover .track-name {
  color: rgba(255,255,255,0.9);
}

.track-badge {
  font-size: 0.62rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.track-badge.available {
  background: rgba(251,191,36,0.12);
  color: var(--gold);
  border: 1px solid rgba(251,191,36,0.3);
  box-shadow: 0 0 12px rgba(251,191,36,0.15);
}

.track-badge.coming {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ─── CTA ─── */
.cta-section {
  text-align: center;
}

.cta-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 5s linear infinite;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.btn-listen {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #050510;
  text-decoration: none;
  padding: 1rem 3rem;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 3rem;
}

.btn-listen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  background-size: 300% auto;
  animation: rainbow-flow 3s linear infinite;
  z-index: 0;
}
.btn-listen span, .btn-listen i { position: relative; z-index: 1; }

.btn-listen:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(251,191,36,0.3), 0 0 60px rgba(6,182,212,0.2);
}

/* Newsletter */
.newsletter-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
}
.newsletter-form:focus-within {
  border-color: transparent;
  outline: 1px solid transparent;
  box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(251,191,36,0.2);
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  outline: none;
  padding: 0.85rem 1.2rem;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-btn {
  background: rgba(251,191,36,0.1);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: rgba(251,191,36,0.2);
}

.newsletter-success {
  display: none;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding: 0.8rem;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 8px;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.4em;
  background: var(--rainbow);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-flow 6s linear infinite;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-text {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

/* ─── TRACK PLAY BUTTON ─── */
.track-play-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  cursor: pointer;
  width: 1.8rem;
  flex-shrink: 0;
  transition: color 0.2s;
  padding: 0;
  position: relative;
  z-index: 1;
}
.track-card.available .track-play-btn { color: rgba(255,255,255,0.5); }
.track-card:hover .track-play-btn { color: var(--gold); }
.track-card.playing .track-play-btn { color: var(--gold); }
.track-card.playing {
  border-color: rgba(251,191,36,0.3);
  background: rgba(251,191,36,0.04);
}

/* ─── TRACK IMAGE BUTTONS ─── */
.track-card.available {
  padding: 0;
  overflow: hidden;
  background: transparent !important;
  border: none;
  box-shadow: none;
  transform: none;
  border-radius: 0;
  outline: none;
  aspect-ratio: 1912 / 550;
}
.track-card.available::before,
.track-card.available::after { content: none; }
.track-card.available {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.track-card.available:hover {
  transform: scale(1.04);
  box-shadow: none;
  filter: drop-shadow(0 0 12px rgba(251,191,36,0.55)) drop-shadow(0 0 28px rgba(6,182,212,0.3));
}
.track-btn-img {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  object-fit: fill;
  border-radius: 0 !important;
  box-shadow: none;
  border: none;
}
.track-num-overlay {
  display: none;
}

/* ─── PLAYER BAR ─── */
.player-bar {
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  z-index: 200;
  background: rgba(5,5,20,0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  padding: 0.9rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.player-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rainbow);
  background-size: 300% auto;
  animation: rainbow-flow 4s linear infinite;
}
.player-bar.active { bottom: 0; }

.player-cover {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.player-cover img { width: 100%; height: 100%; object-fit: cover; }

.player-info { flex-shrink: 0; min-width: 0; }
.player-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.player-artist {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.player-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: color 0.2s;
  line-height: 1;
}
.player-btn:hover { color: #fff; }
.player-btn-main {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s;
}
.player-btn-main:hover { background: rgba(251,191,36,0.2); color: var(--gold); }

.player-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.player-time {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}
.player-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
}
.player-progress-bar:hover { height: 6px; }
.player-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--rainbow);
  background-size: 300% auto;
  animation: rainbow-flow 4s linear infinite;
  border-radius: 999px;
  pointer-events: none;
  transition: width 0.1s linear;
}

.player-loading {
  display: none;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .player-bar { padding: 0.7rem 1rem; gap: 0.8rem; }
  .player-info { display: none; }
  .player-progress-wrap { min-width: 0; }
  .player-title { max-width: 120px; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 640px) {
  nav { padding: 1rem 1.2rem; }
  section { padding: 3.5rem 1.2rem; }
  .tracks-grid { grid-template-columns: 1fr; }
  .story-stats { gap: 1.5rem; }
  .hero { padding: 0 1.2rem 2rem; margin-top: -31px; }
}

/* ─── VOLUME SLIDER ─── */
.player-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  outline: none;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(251,191,36,0.6);
}
.volume-slider::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px rgba(251,191,36,0.6);
}
@media (max-width: 780px) {
  .player-volume { display: none; }
}

/* ─── THOM VIDEO LINK ─── */
.thom-video-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(251,191,36,0.4);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s, text-decoration-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.thom-video-link i {
  font-size: 0.85em;
  margin-right: 0.2em;
  opacity: 0.8;
}
.thom-video-link:hover {
  color: #fff;
  text-decoration-color: rgba(255,255,255,0.6);
  filter: drop-shadow(0 0 8px rgba(251,191,36,0.5));
}

.coming-badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  border: 1px solid #374151;
  border-radius: 20px;
  padding: 2px 10px;
}

/* ─── MOBILE ─── */
@media (max-width: 640px) {
  nav { padding: 1rem 1.2rem; }
  section { padding: 3.5rem 1.2rem; }
  .tracks-grid { grid-template-columns: 1fr; }
  .story-stats { gap: 1.5rem; }
  .hero { padding: 0 1.2rem 2rem; margin-top: -31px; }
  .track-img-card { border-radius: 30px; }
  .track-btn-img { border-radius: 30px; }
  .track-play-overlay { border-radius: 30px; }
  .track-play-overlay i { font-size: 2.5rem; }
}
