/* ============================================================
   ALVA VINTER — Hypnotic Nordic Pop
   Design System: Icy Dark · Aurora · Atmospheric
   ============================================================ */

/* ── TOKENS ── */
:root {
  /* Core palette */
  --bg:          #05080f;
  --bg-2:        #080c17;
  --bg-3:        #0a1020;
  --ice:         #7dd3fc;
  --ice-dim:     rgba(125, 211, 252, 0.15);
  --ice-glow:    rgba(125, 211, 252, 0.08);
  --frost:       #e0f2fe;
  --aurora-1:    #6366f1; /* indigo */
  --aurora-2:    #06b6d4; /* cyan */
  --aurora-3:    #818cf8; /* violet */
  --yt-red:      #FF0000;
  --yt-red-dim:  rgba(255, 0, 0, 0.18);
  --sp-green:    #1DB954;
  --sp-green-dim:rgba(29, 185, 84, 0.15);
  --white:       #ffffff;
  --white-90:    rgba(255,255,255,0.9);
  --white-70:    rgba(255,255,255,0.7);
  --white-50:    rgba(255,255,255,0.5);
  --white-30:    rgba(255,255,255,0.3);
  --white-12:    rgba(255,255,255,0.12);
  --white-06:    rgba(255,255,255,0.06);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-serif:   'DM Serif Display', serif;

  /* Layout */
  --max-w: 1280px;
  --px: clamp(1.25rem, 5vw, 4rem);
  --header-h: 110px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── CUSTOM CURSOR ── */
#cursor-dot {
  position: fixed;
  pointer-events: none !important;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.25s ease;
  mix-blend-mode: screen;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
#cursor-dot::before {
  content: '❄';
  color: var(--ice);
  font-size: 1.15rem;
  text-shadow: 0 0 8px rgba(125, 211, 252, 0.8);
  animation: spin-frost 15s linear infinite;
  display: block;
  pointer-events: none !important;
  transition: font-size 0.25s var(--ease), color 0.25s ease, text-shadow 0.25s ease;
}
#cursor-dot.expanded::before {
  font-size: 2rem;
  color: var(--frost);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.95), 0 0 25px var(--ice);
  animation-duration: 4s;
}
@media (hover: none) { #cursor-dot { display: none !important; } }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#header.scrolled {
  background: rgba(5, 8, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--white-06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--px);
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.animated-logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: all 0.4s var(--ease);
  background: linear-gradient(120deg, #ffffff 40%, #bae6fd 50%, #ffffff 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logo-shine 5s linear infinite;
}
.animated-logo-text:hover {
  letter-spacing: 0.18em;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.4));
}
@keyframes logo-shine {
  0% { background-position: 200% center; }
  30% { background-position: -200% center; }
  100% { background-position: -200% center; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-left: auto;
}
@media (max-width: 860px) { .nav-links { display: none; } }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-70);
  position: relative;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--ice);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 860px) { .header-ctas { display: none; } }

.btn-yt-header, .btn-spotify-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-yt-header svg, .btn-spotify-header svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-yt-header {
  background: var(--yt-red-dim);
  border: 1px solid rgba(255,0,0,0.35);
  color: #ff6b6b;
}
.btn-yt-header:hover { background: var(--yt-red); color: var(--white); border-color: var(--yt-red); }
.btn-spotify-header {
  background: var(--sp-green-dim);
  border: 1px solid rgba(29,185,84,0.3);
  color: var(--sp-green);
}
.btn-spotify-header:hover { background: var(--sp-green); color: var(--white); border-color: var(--sp-green); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
@media (max-width: 860px) { .hamburger { display: flex; } }
.hamburger span { display: block; height: 1.5px; background: var(--white); transition: all 0.3s ease; }
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 16px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

/* ── MOBILE MENU ── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,8,15,0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#mobile-menu.open { opacity: 1; visibility: visible; }

.mm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--px);
  border-bottom: 1px solid var(--white-06);
}
.mm-top button { display: flex; align-items: center; }
.mm-top svg { width: 28px; height: 28px; }

.mm-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 2rem;
  padding: 3rem var(--px);
}
.mm-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-70);
  transition: color 0.25s ease;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
#mobile-menu.open .mm-link { opacity: 1; transform: translateX(0); }
#mobile-menu.open .mm-link:nth-child(1) { transition-delay: 0.05s; }
#mobile-menu.open .mm-link:nth-child(2) { transition-delay: 0.1s; }
#mobile-menu.open .mm-link:nth-child(3) { transition-delay: 0.15s; }
#mobile-menu.open .mm-link:nth-child(4) { transition-delay: 0.2s; }
.mm-link:hover { color: var(--ice); }

.mm-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem var(--px);
  border-top: 1px solid var(--white-06);
}
.mm-cta-yt, .mm-cta-spotify {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.4s 0.25s ease, background 0.25s ease;
}
#mobile-menu.open .mm-cta-yt,
#mobile-menu.open .mm-cta-spotify { opacity: 1; }
.mm-cta-yt svg, .mm-cta-spotify svg { width: 20px; height: 20px; flex-shrink: 0; }
.mm-cta-yt { background: var(--yt-red); color: var(--white); }
.mm-cta-yt:hover { background: #cc0000; }
.mm-cta-spotify { background: var(--sp-green); color: var(--white); }
.mm-cta-spotify:hover { background: #18a349; }

/* ── SHARED BUTTON STYLES ── */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-xl { font-size: 1rem; padding: 1.1rem 2.5rem; }
.cta-full { width: 100%; justify-content: center; }

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cta-primary:hover .cta-glow { opacity: 1; }
.cta-inner { position: relative; display: inline-flex; align-items: center; gap: 0.6rem; z-index: 1; }
.cta-inner svg, .cta-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta-xl .cta-inner svg { width: 22px; height: 22px; }

.cta-yt { background: var(--yt-red); color: var(--white); box-shadow: 0 0 30px rgba(255,0,0,0.25); }
.cta-yt:hover { background: #cc0000; box-shadow: 0 0 50px rgba(255,0,0,0.4), 0 8px 24px rgba(0,0,0,0.4); transform: translateY(-2px); }

.cta-sp {
  background: transparent;
  color: var(--sp-green);
  border: 1.5px solid rgba(29,185,84,0.4);
}
.cta-sp:hover {
  background: var(--sp-green);
  color: var(--white);
  border-color: var(--sp-green);
  box-shadow: 0 0 30px rgba(29,185,84,0.25);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 95% 15%, #5c5d62 0%, #3a3a3f 40%, #1e1f22 70%, #0d0d10 100%);
}
.aurora-img {
  display: none;
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
}
.hero-gradient-top {
  position: absolute; top: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to bottom, rgba(5,8,15,0.6) 0%, transparent 100%);
  z-index: 2;
}
.hero-gradient-horizontal {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #05080f 0%, rgba(5, 8, 15, 0.9) 30%, rgba(5, 8, 15, 0.4) 65%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Frost particles */
.frost-particles { position: absolute; inset: 0; pointer-events: none; }
.frost {
  position: absolute;
  color: var(--ice);
  opacity: 0;
  animation: frost-float 15s ease-in-out infinite;
  font-size: 1.2rem;
}
.fp-1 { top: 20%; left: 15%; animation-delay: 0s; font-size: 0.9rem; }
.fp-2 { top: 40%; left: 80%; animation-delay: 2.5s; font-size: 1.4rem; }
.fp-3 { top: 70%; left: 25%; animation-delay: 5s; font-size: 0.7rem; }
.fp-4 { top: 55%; left: 88%; animation-delay: 7s; font-size: 1rem; }
.fp-5 { top: 30%; left: 60%; animation-delay: 1.5s; font-size: 2rem; color: rgba(125,211,252,0.4); }
.fp-6 { top: 80%; left: 70%; animation-delay: 4s; font-size: 1.5rem; color: rgba(125,211,252,0.3); }
.fp-7 { top: 10%; left: 90%; animation-delay: 9s; font-size: 0.8rem; }
.fp-8 { top: 60%; left: 45%; animation-delay: 11s; font-size: 2.5rem; color: rgba(125,211,252,0.2); }

@keyframes frost-float {
  0% { opacity: 0; transform: translateY(20px) rotate(0deg); }
  25% { opacity: 0.6; }
  75% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-60px) rotate(30deg); }
}
@media (max-width: 640px) { .frost-particles { display: none; } }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) var(--px) 6rem;
}

/* Entry animations */
.animate-in { opacity: 0; transform: translateY(30px); }
.animate-in.done { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.25s; }
.delay-2 { transition-delay: 0.45s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1.75rem;
  border: 1px solid var(--ice-dim);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--ice-glow);
  width: fit-content;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ice);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin-bottom: 2rem;
}
.ht-line { display: block; }
.ht-sm {
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: var(--white-70);
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.ht-lg { font-size: clamp(4rem, 12vw, 10rem); }
.ht-accent {
  background: linear-gradient(135deg, var(--frost), var(--ice) 40%, var(--aurora-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--white-60, rgba(255,255,255,0.6));
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-sub em { color: var(--ice); font-style: italic; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-50);
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--white-12);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.scroll-hint span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-30);
  font-family: var(--font-body);
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ice));
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
@media (max-width: 640px) { .scroll-hint { display: none; } }

/* ── SECTION BASE ── */
.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  scroll-margin-top: var(--header-h);
}
/* Ice-glow separator line at top of each section */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(125, 211, 252, 0.10) 25%,
    rgba(125, 211, 252, 0.28) 50%,
    rgba(125, 211, 252, 0.10) 75%,
    transparent
  );
  z-index: 3;
  pointer-events: none;
}
/* Subtle radial glow halo at section top */
.section::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 180px;
  background: radial-gradient(ellipse at center, rgba(125, 211, 252, 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.section-label {
  margin-bottom: 1.25rem;
}
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ice);
  border: 1px solid rgba(125,211,252,0.20);
  padding: 0.38rem 1rem;
  border-radius: 100px;
  background: rgba(125,211,252,0.06);
  box-shadow: 0 0 12px rgba(125,211,252,0.06) inset;
}
.section-pill svg { width: 13px; height: 13px; }
.section-pill-yt {
  color: #ff8080;
  border-color: rgba(255,80,80,0.25);
  background: rgba(255,0,0,0.10);
  box-shadow: 0 0 12px rgba(255,0,0,0.06) inset;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ice);
  text-transform: none;
  font-weight: 400;
}

/* ── LISTEN SECTION (Spotify Green Aura) ── */
.section-listen {
  background: radial-gradient(circle at 12% 25%, rgba(29, 185, 84, 0.05) 0%, transparent 60%), linear-gradient(180deg, var(--bg) 0%, #060c14 100%);
  position: relative;
  min-height: 70dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.section-listen .container {
  position: relative;
  z-index: 2;
}
.listen-video-bg { display: none; }
.listen-overlay  { display: none; }

.listen-embed {
  box-shadow: 0 10px 40px rgba(29, 185, 84, 0.04), 0 0 0 1px rgba(29, 185, 84, 0.08);
  border-radius: 18px;
}

/* ── WATCH SECTION (YouTube Red Aura) ── */
.section-watch {
  background: radial-gradient(circle at 88% 75%, rgba(255, 0, 0, 0.05) 0%, transparent 60%), linear-gradient(180deg, #060c14 0%, #0d0812 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.watch-float-card {
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255, 0, 0, 0.03);
}

/* ── RELEASES SECTION background override ── */
.section-releases {
  background: linear-gradient(180deg, #0d0812 0%, var(--bg) 100%);
}

/* ── STORE SECTION (Sapphire Blue Aura) ── */
.section-store {
  background: radial-gradient(circle at 15% 80%, rgba(125, 211, 252, 0.06) 0%, transparent 65%), linear-gradient(180deg, var(--bg) 0%, #080c18 100%);
}

.store-float-card {
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 35px rgba(125, 211, 252, 0.03);
}

/* ── VINTERS SECTION (Purple/Indigo Aura) ── */
.section-vinters {
  background: radial-gradient(circle at 85% 25%, rgba(99, 102, 241, 0.07) 0%, rgba(139, 92, 246, 0.03) 50%, transparent 80%), linear-gradient(180deg, #080c18 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.vinters-float-card {
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 35px rgba(99, 102, 241, 0.04);
}

.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) { .listen-grid { grid-template-columns: 1fr; } }

.embed-wrap {
  border: 1px solid var(--ice-dim);
  border-radius: 18px;
  padding: 4px;
  background: var(--ice-glow);
  margin-bottom: 1rem;
}

.open-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-50);
  transition: color 0.25s ease;
}
.open-platform-link:hover { color: var(--sp-green); }
.open-platform-link svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
.open-platform-link:hover svg { transform: translate(2px, -2px); }

.listen-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-70);
  margin-bottom: 2rem;
  max-width: 480px;
}

.tracks-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 0.75rem;
}
.track-list { display: flex; flex-direction: column; margin-bottom: 2rem; }
.track-item {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--white-06);
  transition: background 0.2s ease;
}
.track-item:first-child { border-top: 1px solid var(--white-06); }
.track-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--white-30);
  font-weight: 600;
}
.track-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}
.track-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--white-40, rgba(255,255,255,0.4));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  font-style: italic;
}
@media (max-width: 480px) { .track-sub { display: none; } }



/* ═══════════════════════════════════════════════════════
   SHARED: PHOTO-STAGE (overlay pattern)
   Full-width photo + absolute floating card on top of it
   Used by Watch, Store, Vinters sections
══════════════════════════════════════════════════════════ */
.section-photo-stage {
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
}

/* The photo/video wrapper */
.section-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(125, 211, 252, 0.07);
}

.section-photo-wrap--tall {
  aspect-ratio: unset;
  min-height: 640px;
}

.section-photo-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) contrast(1.05) saturate(0.85) sepia(0.04);
  transition: filter 0.4s ease;
}

/* Shared floating card base */
.section-float-card {
  position: absolute;
  background: #0d1420;
  border-radius: 18px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(125, 211, 252, 0.10);
  padding: 2rem;
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* Upper-right variant: Watch card */
.section-float-card--top-right {
  top: 4%;
  bottom: 4%;
  right: 2%;
  width: 42%;
  max-width: 460px;
  overflow-y: auto;
  scrollbar-width: none;
}
.section-float-card--top-right::-webkit-scrollbar { display: none; }

/* Upper-left variant: Store */
.section-float-card--top-left {
  top: 4%;
  bottom: 4%;
  left: 2%;
  width: 56%;
  max-width: 600px;
  overflow-y: auto;
  scrollbar-width: none;
}
.section-float-card--top-left::-webkit-scrollbar { display: none; }

/* Vinters card: wider + centered text */
.vinters-float-card.section-float-card--top-right {
  width: 55%;
  max-width: 560px;
  text-align: center;
}

/* Watch card header block */
.watch-header {
  margin-bottom: 0;
}

/* ── Watch: bottom unified bar ── */
.watch-below-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.watch-below-ctas .yt-card {
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.10);
  background: transparent;
  justify-content: center;
  padding: 0.9rem 1rem;
  transition: background 0.2s ease;
}
.watch-below-ctas .yt-card:last-child {
  border-right: none;
}
.watch-below-ctas .yt-card:hover {
  background: rgba(255, 0, 0, 0.08);
}

/* Store header block (above photo) */
.store-header-block {
  margin-bottom: 0;
}

/* ── Mobile: stack vertically, photo always first ── */
@media (max-width: 780px) {
  /* Prevent hero video background from being hidden on small screens */
  .hero-video-bg {
    opacity: 0.55 !important;
    object-position: 66% 10% !important; /* Vertically shifted down (10%) and horizontally shifted (66%) to match desktop effect */
  }
  .hero-gradient-horizontal {
    opacity: 0.40 !important; /* Darkened horizontal overlay to match dark aesthetic */
  }
  .hero-overlay {
    opacity: 0.70 !important; /* Darkened vertical overlay to blend into background */
  }

  /* Target cropping focus of content videos on mobile */
  .watch-video-element {
    object-position: 12% center !important; /* Focus on left (popcorn girl) */
  }
  .store-video-element {
    object-position: 90% center !important; /* Focus on right (microphone/singing) */
  }
  .vinters-video-element {
    object-position: 15% center !important; /* Focus on left (heart shape) */
  }

  .section-photo-stage {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Photo always on top */
  .section-photo-wrap {
    order: -1;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
  }

  .section-photo-wrap--tall {
    order: -1;
    min-height: 360px;
    aspect-ratio: 3 / 4;
  }

  /* Card stacks below — NO overlap, just close gap */
  .section-float-card {
    position: static !important;
    order: 1;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0.75rem 0 0;
    border-radius: 16px;
    overflow-y: visible;
    padding: 1.5rem !important;
  }

  .vinters-float-card.section-float-card--top-right {
    width: 100% !important;
    text-align: center;
  }

  /* Watch bottom bar: single column on mobile */
  .watch-below-ctas {
    grid-template-columns: 1fr;
  }
  .watch-below-ctas .yt-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .watch-below-ctas .yt-card:last-child {
    border-bottom: none;
  }
}

/* Legacy collage classes (no longer used in HTML but kept for safety) */
.watch-collage-stage {

  position: relative;
  width: 100%;
  height: 680px;
}

.watch-collage-media {
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  border: 1px solid var(--white-12);
  z-index: 1;
}

.watch-collage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-collage-card {
  position: absolute;
  right: 0;
  top: 12%;
  width: 48%;
  background: #0d1420;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(125, 211, 252, 0.02);
  border: 1px solid rgba(125, 211, 252, 0.08);
  padding: 2.5rem;
  z-index: 2;
}

.watch-card-header {
  margin-bottom: 2rem;
}

.watch-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-70);
  margin-top: 0.5rem;
}

/* ─── Track grid ─── */
.video-playlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  width: 100%;
  margin-top: 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}

/* ─── Each track card ─── */
.playlist-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: none;
  border-right:  1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  border-radius: 0;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}
/* Remove right border col 2 */
.playlist-item:nth-child(2n)  { border-right: none; }
/* Remove bottom border row 2 */
.playlist-item:nth-child(n+3) { border-bottom: none; }

/* Hover: frost shimmer */
.playlist-item:hover {
  background: rgba(125, 211, 252, 0.04);
}
.playlist-item:hover .pi-number {
  color: rgba(125, 211, 252, 0.7);
}
.playlist-item:hover .pi-title {
  color: var(--white);
}

/* Active: red-tinted card */
.playlist-item.active {
  background: linear-gradient(135deg, rgba(220,38,38,0.14) 0%, rgba(220,38,38,0.06) 100%);
}
.playlist-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--yt-red);
  border-radius: 0 2px 2px 0;
}
.playlist-item.active .pi-number { color: var(--yt-red); }
.playlist-item.active .pi-title  { color: var(--white); }
.playlist-item.active .pi-subtitle { color: rgba(255,255,255,0.55); }

/* ─── Waveform bars ─── */
.pi-play-icon {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
  flex-shrink: 0;
}

.pi-bar {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.18);
  height: 6px;
  transition: background 0.25s ease;
}

/* Bars animate ONLY on active */
.playlist-item.active .pi-bar {
  background: var(--yt-red);
  animation: waveform 1.1s ease-in-out infinite;
}
.playlist-item.active .pi-bar:nth-child(2) { animation-delay: 0.18s; }
.playlist-item.active .pi-bar:nth-child(3) { animation-delay: 0.36s; }

@keyframes waveform {
  0%,100% { height: 5px;  opacity: 0.5; }
  50%      { height: 16px; opacity: 1;   }
}

/* On hover (not active) bars light up */
.playlist-item:hover:not(.active) .pi-bar {
  background: rgba(125, 211, 252, 0.5);
  height: 10px;
}

/* ─── Track number ─── */
.pi-number {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  min-width: 2ch;
  transition: color 0.25s ease;
}

/* ─── Meta block ─── */
.pi-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.pi-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pi-subtitle {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.pi-genre {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.55);
  background: rgba(125, 211, 252, 0.07);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 3px;
  padding: 0.15rem 0.45rem;
  margin-top: 0.1rem;
  width: fit-content;
}

.playlist-item.active .pi-genre {
  color: rgba(255,100,100,0.80);
  background: rgba(255,0,0,0.08);
  border-color: rgba(255,0,0,0.20);
}

.video-playing-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* Featured video */
.featured-video { margin-bottom: 0; }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #05080f;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
}
.video-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-30);
}
.video-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff6b6b;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}
.video-channel-link:hover { color: var(--yt-red); }
.video-channel-link svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
.video-channel-link:hover svg { transform: translate(2px, -2px); }

@media (max-width: 780px) {
  .watch-collage-stage, .vinters-collage-stage, .store-collage-stage {
    display: flex;
    flex-direction: column;
    height: auto !important;
  }
  
  .watch-collage-media, .vinters-collage-media, .store-collage-media {
    position: relative !important;
    width: 100% !important;
    height: 320px !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    z-index: 1;
  }

  .watch-collage-card, .vinters-collage-card, .store-collage-card {
    position: relative !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-top: -3rem !important; /* Mobile collage overlap */
    z-index: 2;
    padding: 1.5rem !important;
  }
}

/* YT Cards */
.yt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 560px) { .yt-cards { grid-template-columns: 1fr; } }

.yt-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--white-06);
  border-radius: 12px;
  background: var(--white-06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.yt-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--yt-red), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.yt-card:hover { border-color: rgba(255,0,0,0.3); background: var(--yt-red-dim); }
.yt-card:hover::before { transform: scaleY(1); }

.yt-card-subscribe { border-color: rgba(255,255,255,0.1); }
.yt-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yt-red-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.yt-card-icon svg { width: 20px; height: 20px; color: #ff6b6b; }
.yt-card-subscribe .yt-card-icon { background: var(--white-06); }
.yt-card-subscribe .yt-card-icon svg { color: var(--white-70); }
.yt-card-text { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.yt-card-text strong { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; color: var(--white); }
.yt-card-text span { font-family: var(--font-body); font-size: 0.7rem; color: var(--white-50); }
.yt-card-arrow { width: 16px; height: 16px; color: var(--white-30); transition: transform 0.25s ease, color 0.25s ease; flex-shrink: 0; }
.yt-card:hover .yt-card-arrow { transform: translate(3px, -3px); color: var(--white); }

.watch-cta { text-align: center; }

/* ── COVERFLOW CAROUSEL ── */

.coverflow-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
  min-height: 420px;
}

/* Navigation arrows */
.coverflow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--white-12);
  background: rgba(5, 8, 15, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.coverflow-nav:hover {
  background: rgba(125, 211, 252, 0.15);
  border-color: var(--ice);
  transform: translateY(-50%) scale(1.1);
}
.coverflow-nav svg { width: 20px; height: 20px; }
.coverflow-prev { left: 0; }
.coverflow-next { right: 0; }

/* Stage — holds all cards in 3D space */
.coverflow-stage {
  position: relative;
  width: 100%;
  height: 400px;
  perspective: 1200px;
  overflow: hidden;
}

/* Individual card */
.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--white-06);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transform-origin: center center;
  transition: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity, filter;
}

/* Cover art — square */
.cf-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-3);
}

/* Shine sweep */
.cf-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0.04) 50%, transparent 55%);
  transform: translateX(-100%);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  z-index: 3;
}
.cf-card.cf-active:hover .cf-shine {
  transform: translateX(100%);
}

/* Bottom gradient */
.cf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(5, 8, 15, 0.65) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Song info */
.cf-info {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cf-badge {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.8;
}

.cf-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.cf-sub {
  font-family: var(--font-body);
  font-size: 0.67rem;
  color: var(--white-50);
  font-style: italic;
}

/* Active (center) card */
.cf-card.cf-active {
  z-index: 5;
  filter: brightness(1);
  border-color: var(--ice-dim);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(125, 211, 252, 0.08);
}

/* Side cards — darker, smaller */
.cf-card:not(.cf-active) {
  filter: brightness(0.4);
  pointer-events: none;
}

/* Counter dots */
.coverflow-counter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.cf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white-12);
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}
.cf-dot.active {
  background: var(--ice);
  width: 20px;
  border-radius: 3px;
}

/* Mobile */
@media (max-width: 700px) {
  .coverflow-wrap { min-height: 360px; }
  .coverflow-stage { height: 350px; }
  .cf-card { width: 220px; }
  .coverflow-nav { width: 40px; height: 40px; }
  .coverflow-nav svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .coverflow-wrap { min-height: 320px; }
  .coverflow-stage { height: 310px; }
  .cf-card { width: 190px; }
}

.releases-cta { display: flex; justify-content: center; }

/* ── VINTERS SECTION (legacy classes, unused but kept) ── */
.section-vinters {
  /* already defined in listen/watch block above */
}


.vinters-collage-stage {
  position: relative;
  width: 100%;
  height: 620px;
}

.vinters-collage-media {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  border: 1px solid var(--white-12);
  z-index: 1;
}

.vinters-collage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

.vinters-collage-card {
  position: absolute;
  right: 0;
  top: 10%;
  width: 55%;
  background: #0d1420;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(125, 211, 252, 0.02);
  border: 1px solid rgba(125, 211, 252, 0.08);
  padding: 3rem;
  z-index: 2;
  text-align: center;
}
/* ─── Vinters card internal: mobile-first tightening ─── */
.vinters-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 0.6rem;
}
.vinters-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.vinters-desc {
  font-family: var(--font-serif);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  font-style: italic;
  color: var(--white-70);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.vinters-primary-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--white-12);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--white-70);
  transition: all 0.25s ease;
  background: var(--white-06);
}
.social-link:hover {
  color: var(--white);
}
#social-instagram:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.4);
  background: rgba(225, 48, 108, 0.08);
}
#social-tiktok:hover {
  color: #00f2fe;
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(0, 242, 254, 0.08);
}
#social-facebook:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.4);
  background: rgba(24, 119, 242, 0.08);
}
.social-icon { display: flex; align-items: center; }
.social-icon svg { width: 16px; height: 16px; }
.social-handle {
  font-size: 0.6rem;
  color: var(--white-30);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: #000000;
  border-top: 1px solid var(--white-06);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer-snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--white-06);
  margin-bottom: 1.5rem;
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .logo-text { font-size: 1.1rem; margin-bottom: 0.75rem; display: block; }
.footer-logo-img {
  height: clamp(35px, 5vw, 50px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--white-50);
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--white-50);
  transition: color 0.25s ease;
  letter-spacing: 0.05em;
}
.footer-link:hover { color: var(--white); }
.footer-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-platform {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--white-12);
  border-radius: 50%;
  color: var(--white-50);
  transition: all 0.25s ease;
}
.footer-platform svg { width: 16px; height: 16px; }
#footer-yt:hover {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.4);
  background: rgba(255, 0, 0, 0.08);
}
#footer-spotify:hover {
  color: #1db954;
  border-color: rgba(29, 185, 84, 0.4);
  background: rgba(29, 185, 84, 0.08);
}
#footer-ig:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.4);
  background: rgba(225, 48, 108, 0.08);
}
#footer-tiktok:hover {
  color: #00f2fe;
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(0, 242, 254, 0.08);
}
#footer-fb:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.4);
  background: rgba(24, 119, 242, 0.08);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--white-30);
}
.footer-contact-link {
  color: var(--ice);
  opacity: 0.75;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(125, 211, 252, 0.05);
  border: 1px solid rgba(125, 211, 252, 0.15);
}
.footer-contact-link:hover {
  opacity: 1;
  background: rgba(125, 211, 252, 0.12);
  border-color: var(--ice);
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.2);
  color: #ffffff;
}
.footer-tag { color: var(--ice); opacity: 0.6; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--white-30); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--ice); }

/* ── SELECTION ── */
::selection { background: var(--ice-dim); color: var(--white); }

/* ── FOCUS ── */
:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

/* ── VIDEO BACKGROUND SUPPORT ── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 80% 10%; /* Shifted down vertically (10%), aligned right horizontally (80%) for desktop */
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(5, 8, 15, 0.45) 0%, rgba(5, 8, 15, 0.7) 60%, var(--bg) 100%);
  pointer-events: none;
}

.hero-fog-wrap {
  display: none;
}
.hero-fog-1, .hero-fog-2 {
  position: absolute;
  bottom: -15%; left: -50%;
  width: 200%; height: 60%;
  background: radial-gradient(circle at 30% 90%, rgba(186, 230, 253, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 75% 85%, rgba(186, 230, 253, 0.14) 0%, transparent 65%),
              linear-gradient(to top, rgba(3, 5, 10, 0.95) 0%, transparent 80%);
  filter: blur(40px);
  opacity: 0.85;
}
.hero-fog-1 {
  animation: drift-fog-1 45s ease-in-out infinite alternate;
}
.hero-fog-2 {
  animation: drift-fog-2 30s ease-in-out infinite alternate-reverse;
  height: 70%;
  opacity: 0.6;
}
@keyframes drift-fog-1 {
  0% { transform: translate(0, 0) scaleY(1); }
  100% { transform: translate(25%, 5%) scaleY(1.15); }
}
@keyframes drift-fog-2 {
  0% { transform: translate(0, 0) scaleY(1.1); }
  100% { transform: translate(-25%, -5%) scaleY(0.9); }
}

.snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}



.card-video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.release-card:hover .card-video-bg {
  opacity: 0.85;
  transform: scale(1.05);
}

/* ── STORE SECTION ── */


.store-collage-stage {
  position: relative;
  width: 100%;
  height: 720px;
}

.store-collage-media {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  border: 1px solid var(--white-12);
  z-index: 1;
}

.store-collage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-collage-card {
  position: absolute;
  left: 0;
  top: 8%;
  width: 55%;
  background: #0d1420;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(125, 211, 252, 0.02);
  border: 1px solid rgba(125, 211, 252, 0.08);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 2;
}

.store-header {
  margin-bottom: 2.5rem;
}

.store-intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 480px;
}

.store-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0;
  flex: 1;
  min-height: 0;
}

.store-item-price-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.store-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: rgba(10, 16, 32, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--white-12);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.store-card:hover {
  background: rgba(15, 23, 42, 0.75);
  border-color: var(--ice);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.store-visual {
  width: 140px;
  min-height: 120px;
  background: rgba(5, 8, 15, 0.35);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .store-card {
    flex-direction: column;
  }
  .store-visual {
    width: 100%;
    height: 120px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Vinyl CD Render */
.cd-vinyl-render {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.62);
}

.cd-sleeve {
  position: absolute;
  width: 140px; height: 140px;
  background: url('cd-main-front.jpg') center/cover no-repeat;
  border: 1.5px solid var(--ice-dim);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
  transform: translateX(-15px);
}
.cd-sleeve::before {
  content: '';
}

.cd-disc {
  position: absolute;
  width: 130px; height: 130px;
  background: radial-gradient(circle, #05080f 0%, #1e293b 25%, #0f172a 35%, #020617 70%, #475569 90%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 1;
  transition: transform 0.6s var(--ease);
  transform: translateX(15px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-disc::before {
  content: '';
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 4px solid var(--ice-dim);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.store-card:hover .cd-sleeve {
  transform: translateX(-35px) rotate(-5deg);
}
.store-card:hover .cd-disc {
  transform: translateX(35px) rotate(90deg);
}

/* Digital Folder Render */
.digital-folder-render {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.62);
}

.digital-sleeve {
  position: absolute;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, #182848, #0e1726);
  border: 1.5px solid var(--white-12);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
  transform: translateY(10px);
}
.digital-sleeve::before {
  content: '💾';
  font-size: 2.2rem;
  color: var(--white);
  opacity: 0.3;
}

.digital-disc {
  position: absolute;
  width: 110px; height: 110px;
  background: radial-gradient(circle, #0284c7 0%, #0369a1 40%, #0c4a6e 80%);
  border: 1px solid rgba(125,211,252,0.3);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 1;
  transition: transform 0.6s var(--ease);
  transform: translateY(-25px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.digital-disc::before {
  content: '❄';
  font-size: 1.8rem;
  color: var(--ice);
  animation: spin-frost 12s linear infinite;
}

.store-card:hover .digital-sleeve {
  transform: translateY(25px) scale(0.95);
}
.store-card:hover .digital-disc {
  transform: translateY(-35px) scale(1.05);
}

.store-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-height: 0;
}

.store-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
}

.store-item-title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.store-item-desc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--white-50);
}

.store-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0.2rem 0;
}

.store-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.75rem;
  padding: 0.55rem 1rem;
}

/* Store float card: flex column so grid fills constrained height */
.store-float-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.store-float-card .store-grid {
  flex: 1;
  min-height: 0;
  align-items: stretch;
}

/* ═══════════════════════════════════════════════
   ── SONG LYRICS & ARCHIVE SECTION ──
   ═══════════════════════════════════════════════ */
.section-lyrics {
  position: relative;
  background: linear-gradient(180deg, var(--bg-1) 0%, rgba(8, 14, 28, 0.95) 50%, var(--bg-1) 100%);
  padding: 6rem 0;
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  overflow: hidden;
}

.section-lyrics::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.lyrics-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.lyrics-subheading {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white-60);
  max-width: 520px;
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* Search bar */
.lyrics-search-wrap {
  position: relative;
  min-width: 280px;
  max-width: 360px;
  width: 100%;
}

.lyrics-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--white-40);
  pointer-events: none;
  transition: color 0.3s ease;
}

.lyrics-search-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  background: rgba(10, 16, 32, 0.75);
  border: 1px solid var(--white-12);
  border-radius: 100px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  outline: none;
}

.lyrics-search-input:focus {
  border-color: var(--ice);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 25px rgba(125, 211, 252, 0.15);
}

.lyrics-search-wrap:focus-within .lyrics-search-icon {
  color: var(--ice);
}

/* Lyrics Grid (Shows 4 tracks per page) */
.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  min-height: 380px;
}

@media (max-width: 960px) {
  .lyrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .lyrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (max-width: 380px) {
  .lyrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Lyrics Pagination Bar */
.lyrics-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
  background: rgba(10, 16, 32, 0.65);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .lyrics-pagination {
    border-radius: 20px;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
  }
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.lp-btn:hover:not(:disabled) {
  background: rgba(125, 211, 252, 0.15);
  border-color: var(--ice);
  color: var(--ice);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(125, 211, 252, 0.2);
}

.lp-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.lp-btn svg {
  width: 16px;
  height: 16px;
}

.lp-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.lp-indicator {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-70);
}

.lp-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-20);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lp-dot:hover {
  background: var(--white-60);
  transform: scale(1.2);
}

.lp-dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--ice);
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.6);
}

/* Lyric Card */
.lyric-card {
  position: relative;
  background: rgba(10, 16, 32, 0.65);
  border: 1px solid var(--white-08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: lyricCardFade 0.4s cubic-bezier(0.2, 0.9, 0.3, 1) backwards;
}

@keyframes lyricCardFade {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lyric-card:hover {
  transform: translateY(-6px);
  border-color: var(--ice);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(125, 211, 252, 0.12);
}

.lc-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
}

.lc-cover-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(5, 8, 15, 0.85) 100%);
  pointer-events: none;
}

.lc-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(5, 8, 15, 0.75);
  border: 1px solid var(--white-12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice);
  z-index: 2;
}

.lc-play-cue {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5, 8, 15, 0.75);
  border: 1px solid var(--white-12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.lyric-card:hover .lc-play-cue {
  opacity: 1;
  transform: scale(1);
  background: rgba(125, 211, 252, 0.25);
  border-color: var(--ice);
  color: var(--ice);
}

.lc-play-cue svg {
  width: 14px;
  height: 14px;
}

.lc-body {
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.35rem;
}

.lc-num {
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  color: var(--ice);
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.lc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.25s ease;
}

.lyric-card:hover .lc-title {
  color: var(--ice);
}

.lc-action {
  margin-top: auto;
  padding-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--white-06);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.lc-action-arrow {
  color: var(--ice);
  transition: transform 0.25s ease;
}

.lyric-card:hover .lc-action-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
   ── LYRICS MODAL VIEWER ──
   ═══════════════════════════════════════════════ */
.lyrics-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lyrics-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lyrics-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

.lyrics-modal-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 86vh;
  max-height: 86vh;
  background: rgba(10, 16, 30, 0.95);
  border: 1px solid var(--white-12);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(125, 211, 252, 0.1);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  z-index: 10;
}

.lyrics-modal-overlay.open .lyrics-modal-container {
  transform: scale(1) translateY(0);
}

/* Modal close button */
.lyrics-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--white-12);
  background: rgba(15, 23, 42, 0.85);
  color: var(--white-70);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 20;
}

.lyrics-modal-close:hover {
  background: rgba(125, 211, 252, 0.2);
  border-color: var(--ice);
  color: var(--white);
  transform: scale(1.08);
}

.lyrics-modal-close svg {
  width: 18px;
  height: 18px;
}

/* Ambient blur behind header */
.lm-cover-blur {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(0.25);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

/* Modal Header */
.lm-header {
  position: relative;
  padding: 2rem 2rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid var(--white-08);
  flex-shrink: 0;
  z-index: 2;
}

.lm-cover-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--white-12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.lm-header-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 2.5rem;
}

.lm-badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
}

.lm-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.lm-album {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--white-50);
}

/* European Language Toggle Bar with Country Flags */
.lm-lang-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  background: rgba(5, 8, 15, 0.7);
  border-bottom: 1px solid var(--white-08);
  flex-shrink: 0;
  z-index: 2;
  flex-wrap: wrap;
}

@media (max-width: 580px) {
  .lm-lang-bar {
    justify-content: center;
    padding: 0.75rem 1rem;
    gap: 0.65rem;
  }
}

.lm-lang-pills {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.35rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--white-12);
  border-radius: 100px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.lm-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--white-60);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.lm-lang-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.lm-lang-btn.active {
  background: rgba(125, 211, 252, 0.18);
  border-color: var(--ice);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(125, 211, 252, 0.25);
}

.lm-flag {
  font-size: 0.95rem;
  line-height: 1;
  display: inline-block;
}

/* Google Translate Native Selector Styling */
.lm-gtranslate {
  display: inline-flex;
  align-items: center;
}

.goog-te-gadget {
  font-size: 0px !important;
  color: transparent !important;
  line-height: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  background-color: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid var(--white-12) !important;
  color: var(--white-80) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 100px !important;
  outline: none !important;
  cursor: pointer !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.25s ease !important;
  margin: 0 !important;
}

.goog-te-gadget .goog-te-combo:hover,
.goog-te-gadget .goog-te-combo:focus {
  border-color: var(--ice) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(125, 211, 252, 0.25) !important;
}

.goog-te-gadget .goog-te-combo option {
  background: #0b1120 !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
}

/* Hide top Google Translate banner if present */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate:first-child,
.goog-te-balloon-frame {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Modal Content / Lyrics body */
.lm-content {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 2rem 2.5rem;
  z-index: 2;
}

.lm-content::-webkit-scrollbar {
  width: 6px;
}
.lm-content::-webkit-scrollbar-track {
  background: rgba(5, 8, 15, 0.3);
}
.lm-content::-webkit-scrollbar-thumb {
  background: rgba(125, 211, 252, 0.3);
  border-radius: 10px;
}

.lm-lyrics-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--white-80);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding-bottom: 3rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lm-lyrics-body.switching {
  opacity: 0.3;
  transform: translateY(6px) scale(0.99);
  filter: blur(4px);
}

/* Stanza and Line Diagramming Preservation */
.lm-stanza {
  margin-bottom: 2rem;
  display: block;
}

.lm-stanza:last-child {
  margin-bottom: 0;
}

.lm-line {
  display: block;
  min-height: 1.9em;
  line-height: 1.9;
  margin: 0;
  padding: 0;
}

.lm-line:empty::before {
  content: '\00a0';
}

.lm-lyrics-empty {
  color: var(--white-40);
  font-style: italic;
  padding: 3rem 1rem;
}

/* Modal Footer */
.lm-footer {
  position: relative;
  padding: 1.25rem 2rem 1.75rem;
  border-top: 1px solid var(--white-08);
  background: rgba(6, 10, 20, 0.95);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
  flex-wrap: wrap;
}

.lm-yt-btn {
  flex: 1;
  min-width: 175px;
  max-width: 260px;
  padding: 0.9rem 1.25rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #e50914 0%, #b80000 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  cursor: pointer;
}

.lm-yt-btn:hover {
  background: linear-gradient(135deg, #ff1e27 0%, #cc0000 100%);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.lm-spotify-btn {
  flex: 1;
  min-width: 175px;
  max-width: 260px;
  padding: 0.9rem 1.25rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #1db954 0%, #179b44 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  cursor: pointer;
}

.lm-spotify-btn:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 10px 25px rgba(29, 185, 84, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

