/* ═══════════════════════════════════════════════════════════
   SAYMAWN — Digital Music Universe v4.0
   Premium Artist Experience — Final Prototype
   ═══════════════════════════════════════════════════════════ */


   
/* ── FONT FACE (local only, zero CDN) ─────────────────────── */
/* SAYMAWN brand font removed — .woff2 files are 0 bytes (empty). Falls back to system-ui. */
@font-face { font-family: 'BYekanPlus'; src: url('assets/fonts/BYekan+.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'BYekanPlus'; src: url('assets/fonts/BYekan+ Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --purple: #6B21A8;
  --purple-light: #9333EA;
  --purple-dark: #4C1D95;
  --pink: #EC4899;
  --pink-light: #F472B6;
  --blue: #06B6D4;
  --blue-light: #22D3EE;
  --cyan: #22D3EE;
  --neon: #A855F7;
  --neon-glow: rgba(168, 85, 247, 0.6);
  --pink-glow: rgba(236, 72, 153, 0.5);
  --blue-glow: rgba(6, 182, 212, 0.5);
  --gold: #F59E0B;
  --green: #10B981;

  --bg: #0A0A0F;
  --bg-alt: #0E0E14;
  --bg-card: rgba(16, 16, 24, 0.6);
  --bg-elevated: rgba(22, 22, 32, 0.7);
  --surface: rgba(30, 30, 42, 0.8);
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(147, 51, 234, 0.3);
  --text: #F4F4F5;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --white: #FFFFFF;

  --grad-primary: linear-gradient(135deg, var(--purple-light), var(--pink), var(--blue));
  --grad-glow: linear-gradient(135deg, var(--purple), var(--pink), var(--blue));
  --grad-subtle: linear-gradient(135deg, rgba(107,33,168,0.12), rgba(236,72,153,0.08), rgba(6,182,212,0.06));
  --grad-dark: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);

  --font: 'SAYMAWN', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-fa: 'BYekanPlus', 'Tahoma', 'Arial', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-hero: clamp(2.5rem, 7vw, 5rem);
  --line-height: 1.6;
  --letter: -0.02em;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(3rem, 5vw, 5rem);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 20px var(--neon-glow), 0 0 60px rgba(107,33,168,0.25);
  --shadow-glow-pink: 0 0 20px var(--pink-glow), 0 0 60px rgba(236,72,153,0.15);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 300ms;
  --duration-fast: 150ms;
  --duration-slow: 500ms;

  --container-max: 1280px;
  --header-h: 72px;
  --player-h: 80px;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  letter-spacing: var(--letter);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }
input, textarea { font-family: inherit; font-size: inherit; }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-xl); }

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: var(--space-md); padding: var(--space-sm) var(--space-md); background: var(--purple-light); color: var(--white); border-radius: var(--radius-sm); z-index: 10000; font-weight: 700; transition: top var(--duration) var(--ease); }
.skip-link:focus { top: var(--space-md); }
.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; }

/* ── PERSIAN/FARSI FONT (BYekan+) ─────────────────────────── */
[dir="rtl"],
[lang="fa"],
.hero__title-fa,
.lyrics-modal__content[dir="rtl"],
.mz-lyrics,
.sg-lyrics,
.da-lyrics,
.tn-lyrics,
.tbg-lyrics,
.sm-lyrics,
.nl-lyrics,
.mr-lyrics,
[class*="lyrics"],
p:lang(fa),
span:lang(fa),
h1:lang(fa), h2:lang(fa), h3:lang(fa), h4:lang(fa), h5:lang(fa), h6:lang(fa),
.song-card__title:lang(fa),
.album-detail__title:lang(fa),
.tw-track__name:lang(fa) {
  font-family: var(--font-fa);
}



/* ═══════════════════════════════════════════════════════════
   BACKGROUND LAYERS — Deep Space Cinema
   ═══════════════════════════════════════════════════════════ */
.bg-layers { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-layer { position: absolute; inset: 0; }
.bg-layer--connections { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

/* Deep space base */
.bg-layer--gradient {
  background:
    radial-gradient(ellipse at 25% 5%, rgba(107,33,168,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(236,72,153,0.04) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, rgba(6,182,212,0.03) 0%, transparent 50%),
    linear-gradient(180deg, #06060C 0%, #08081A 30%, #0A0A1E 60%, #060610 100%);
}

/* Galaxy arm — slow rotation */
.bg-layer--galaxy {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(107,33,168,0.018) 60deg,
      transparent 120deg,
      rgba(236,72,153,0.012) 180deg,
      transparent 240deg,
      rgba(6,182,212,0.008) 300deg,
      transparent 360deg);
  animation: galaxyRotate 120s linear infinite;
}
@keyframes galaxyRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Nebula orbs */
.bg-layer--orbs { filter: blur(120px); opacity: 0.25; }
.bg-orb { position: absolute; border-radius: 50%; animation: orbFloat 35s ease-in-out infinite; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(15px, -25px) scale(1.02); }
  50% { transform: translate(-10px, 15px) scale(0.98); }
  75% { transform: translate(20px, 10px) scale(1.01); }
}

/* Floating particles */
.bg-layer--particles { opacity: 0.35; }

/* Star layers */
.bg-layer--stars-static { opacity: 1; }
.bg-layer--stars-drift {
  animation: starDrift 60s linear infinite;
}
.bg-layer--stars-blink {
  animation: starBlink 4s ease-in-out infinite alternate;
}
.bg-layer--stars-blink-slow {
  animation: starBlinkSlow 7s ease-in-out infinite alternate;
}

@keyframes starDrift {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-15px) translateX(5px); }
}
@keyframes starBlink {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}
@keyframes starBlinkSlow {
  0% { opacity: 0.3; }
  40% { opacity: 0.65; }
  100% { opacity: 0.3; }
}

/* Wave overlay */
.bg-layer--wave {
  opacity: 0.012;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(147, 51, 234, 0.12) 2px,
    rgba(147, 51, 234, 0.12) 4px
  );
  animation: waveShift 50s linear infinite;
}
@keyframes waveShift { 0% { background-position: 0 0; } 100% { background-position: 200px 0; } }

/* Star field: static tiny stars */
.bg-layer--stars-static::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(0.6px 0.6px at 5% 8%, rgba(255,255,255,0.18) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 12% 22%, rgba(255,255,255,0.14) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 18% 45%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 25% 12%, rgba(255,255,255,0.12) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 32% 68%, rgba(255,255,255,0.16) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 38% 32%, rgba(255,255,255,0.13) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 45% 78%, rgba(255,255,255,0.17) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 52% 5%, rgba(255,255,255,0.11) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 58% 55%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 65% 88%, rgba(255,255,255,0.19) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 72% 18%, rgba(255,255,255,0.14) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 78% 42%, rgba(255,255,255,0.16) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 85% 72%, rgba(255,255,255,0.12) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 92% 28%, rgba(255,255,255,0.18) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 98% 62%, rgba(255,255,255,0.13) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 8% 92%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 15% 58%, rgba(255,255,255,0.11) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 22% 82%, rgba(255,255,255,0.17) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 35% 18%, rgba(255,255,255,0.13) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 42% 48%, rgba(255,255,255,0.16) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 48% 92%, rgba(255,255,255,0.12) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 55% 25%, rgba(255,255,255,0.18) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 62% 65%, rgba(255,255,255,0.14) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 68% 38%, rgba(255,255,255,0.16) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 75% 85%, rgba(255,255,255,0.11) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 82% 8%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 88% 52%, rgba(255,255,255,0.13) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 95% 78%, rgba(255,255,255,0.17) 0%, transparent 100%);
}

/* Star field: drifting medium stars */
.bg-layer--stars-drift::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.28) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 40%, rgba(255,255,255,0.24) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 62% 60%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 35%, rgba(255,255,255,0.26) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 75%, rgba(255,255,255,0.24) 0%, transparent 100%),
    radial-gradient(1px 1px at 18% 80%, rgba(255,255,255,0.28) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 85%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 10%, rgba(255,255,255,0.26) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 55%, rgba(255,255,255,0.2) 0%, transparent 100%);
}

/* Star field: blinking stars */
.bg-layer--stars-blink::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 15% 25%, rgba(200,180,255,0.35) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 50% 10%, rgba(255,200,230,0.3) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 80% 50%, rgba(180,220,255,0.32) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 25% 70%, rgba(220,180,255,0.28) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 65% 80%, rgba(255,180,210,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 8% 48%, rgba(180,160,255,0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 22%, rgba(255,170,210,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 42% 92%, rgba(170,220,255,0.3) 0%, transparent 100%);
}

/* Star field: slow blinking stars */
.bg-layer--stars-blink-slow::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.3px 1.3px at 20% 35%, rgba(200,180,255,0.3) 0%, transparent 100%),
    radial-gradient(1.3px 1.3px at 70% 65%, rgba(255,190,220,0.28) 0%, transparent 100%),
    radial-gradient(1.3px 1.3px at 40% 85%, rgba(180,210,255,0.3) 0%, transparent 100%);
}

/* Star field: bright glowing stars */
.bg-layer--stars-bright {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 45% 35%, rgba(200,180,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 78% 22%, rgba(180,220,255,0.55) 0%, transparent 100%),
    radial-gradient(3px 3px at 28% 68%, rgba(255,180,210,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 88% 75%, rgba(200,180,255,0.5) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 55% 82%, rgba(180,220,255,0.45) 0%, transparent 100%);
  animation: brightStarPulse 5s ease-in-out infinite alternate;
}
@keyframes brightStarPulse {
  0% { opacity: 0.5; }
  50% { opacity: 0.9; }
  100% { opacity: 0.5; }
}

/* Parallax star layers — different drift speeds for depth */
.bg-layer--stars-parallax-1 {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(0.8px 0.8px at 8% 12%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 22% 38%, rgba(255,255,255,0.18) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 38% 15%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 52% 62%, rgba(255,255,255,0.16) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 68% 28%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 82% 55%, rgba(255,255,255,0.18) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 95% 42%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 15% 85%, rgba(255,255,255,0.16) 0%, transparent 100%);
  animation: parallaxDrift1 90s linear infinite;
}
@keyframes parallaxDrift1 {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-25px) translateX(10px); }
}

.bg-layer--stars-parallax-2 {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(200,180,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 48%, rgba(255,190,220,0.13) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 18%, rgba(180,220,255,0.14) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 68%, rgba(200,180,255,0.12) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 78%, rgba(255,180,210,0.14) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 42%, rgba(180,220,255,0.13) 0%, transparent 100%);
  animation: parallaxDrift2 45s linear infinite;
}
@keyframes parallaxDrift2 {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-35px) translateX(-8px); }
}

/* ═══════════════════════════════════════════════════════════
   HEADER — Cosmic Navigation
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(8,8,20,0.4) 0%, rgba(8,8,20,0.15) 100%);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 5%,
    rgba(147,51,234,0.4) 20%,
    rgba(236,72,153,0.35) 40%,
    rgba(6,182,212,0.4) 60%,
    rgba(147,51,234,0.3) 80%,
    transparent 95%);
  opacity: 0.7;
  transition: opacity 0.45s ease;
}

/* Scrolled state */
.site-header.scrolled {
  height: 60px;
  background: linear-gradient(180deg, rgba(8,8,20,0.85) 0%, rgba(8,8,20,0.7) 100%);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  box-shadow:
    0 4px 40px rgba(0,0,0,0.4),
    0 0 80px rgba(107,33,168,0.06),
    inset 0 -1px 0 rgba(255,255,255,0.03);
}
.site-header.scrolled::after { opacity: 1; }

/* Nebula background inside header */
.site-header__nebula {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 40% 120% at 15% 50%, rgba(107,33,168,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 100% at 85% 50%, rgba(6,182,212,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 120%, rgba(236,72,153,0.04) 0%, transparent 50%);
  animation: headerNebula 12s ease-in-out infinite alternate;
}
@keyframes headerNebula {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Sparse star field */
.site-header__stars {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(0.8px 0.8px at 10% 30%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 25% 65%, rgba(255,255,255,0.1) 0%, transparent 100%),
    radial-gradient(0.7px 0.7px at 45% 20%, rgba(200,180,255,0.12) 0%, transparent 100%),
    radial-gradient(0.5px 0.5px at 60% 75%, rgba(255,255,255,0.08) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 78% 40%, rgba(255,255,255,0.12) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 90% 60%, rgba(200,180,255,0.1) 0%, transparent 100%);
  animation: headerStars 8s ease-in-out infinite alternate;
}
@keyframes headerStars {
  0% { opacity: 0.5; }
  100% { opacity: 0.9; }
}

/* Desktop Nav */
.site-nav {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.site-nav__list {
  display: flex; align-items: center; gap: 6px;
}
.site-nav__link {
  position: relative;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-light), var(--pink), var(--blue-light));
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(147,51,234,0.4);
}
.site-nav__link:hover {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 20px rgba(147,51,234,0.3);
}
.site-nav__link:hover::after { width: 60%; }
.site-nav__link.active {
  color: var(--white);
}
.site-nav__link.active::after {
  width: 50%;
  background: linear-gradient(90deg, var(--purple-light), var(--pink));
}

/* Desktop Dropdown */
.site-nav__item--dropdown {
  position: relative;
}
.site-nav__link--has-sub::after { display: none; }
.site-nav__link--has-sub::before {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-light), var(--pink), var(--blue-light));
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(147,51,234,0.4);
}
.site-nav__item--dropdown:hover .site-nav__link--has-sub::before { width: 60%; }
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 160px;
  padding: 6px;
  background: rgba(10,10,22,0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(147,51,234,0.15);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 40px rgba(147,51,234,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 100;
}
.site-nav__dropdown::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.site-nav__item--dropdown:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.site-nav__dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.site-nav__dropdown-link:hover {
  color: var(--white);
  background: rgba(147,51,234,0.12);
  text-shadow: 0 0 16px rgba(147,51,234,0.25);
}

/* Burger */
.site-header__burger {
  display: none;
  position: relative; z-index: 1001;
  justify-self: end;
  width: 48px; height: 48px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.site-header__burger:hover {
  background: rgba(147,51,234,0.12);
  border-color: rgba(147,51,234,0.2);
}
.site-header__burger:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}
.site-header__burger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.site-header__burger span:nth-child(1) { margin-bottom: 6px; }
.site-header__burger span:nth-child(3) { margin-top: 6px; }
.site-header__burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--white);
}
.site-header__burger.open span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.site-header__burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--white);
}
.site-header__burger.open {
  background: rgba(147,51,234,0.15);
  border-color: rgba(147,51,234,0.3);
}

/* Overlay */
.site-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(6,6,16,0.85);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}
.site-overlay.active { opacity: 1; visibility: visible; }

/* Mobile Nav — Full-Screen Overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,6,18,0.97);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-xl);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(107,33,168,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 30% 80%, rgba(6,182,212,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(236,72,153,0.04) 0%, transparent 50%);
}
.mobile-nav::after {
  content: '';
  position: absolute; top: var(--header-h); left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147,51,234,0.25), rgba(6,182,212,0.15), transparent);
  z-index: 1;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav__close {
  position: absolute;
  top: calc(var(--header-h) + var(--space-md));
  right: var(--space-lg);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav__close:hover {
  background: rgba(147,51,234,0.12);
  border-color: rgba(147,51,234,0.2);
  color: var(--white);
}
.mobile-nav__close:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}
.mobile-nav__list {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  width: 100%; max-width: 320px;
}
.mobile-nav__link {
  display: block; width: 100%;
  padding: 14px 24px;
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
}
.mobile-nav__link:hover {
  color: var(--white);
  background: rgba(147,51,234,0.08);
  border-color: rgba(147,51,234,0.12);
}
.mobile-nav__link.active {
  color: var(--white);
  background: rgba(147,51,234,0.1);
  border-color: rgba(147,51,234,0.15);
  box-shadow: 0 0 24px rgba(147,51,234,0.08);
}
.mobile-nav__link.active::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--purple-light), var(--pink));
  box-shadow: 0 0 12px rgba(147,51,234,0.5);
}

/* Mobile Expandable — Albums */
.mobile-nav__item--expandable {
  width: 100%;
}
.mobile-nav__toggle {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 14px 24px;
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  font-weight: 500;
  font-family: inherit;
  color: rgba(255,255,255,0.55);
  background: none; border: 1px solid transparent;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.04em;
  gap: 8px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav__toggle:hover {
  color: var(--white);
  background: rgba(147,51,234,0.08);
  border-color: rgba(147,51,234,0.12);
}
.mobile-nav__toggle[aria-expanded="true"] {
  color: var(--white);
  background: rgba(147,51,234,0.1);
  border-color: rgba(147,51,234,0.15);
}
.mobile-nav__toggle:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}
.mobile-nav__toggle-chevron {
  display: inline-block;
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.mobile-nav__toggle[aria-expanded="true"] .mobile-nav__toggle-chevron {
  transform: rotate(-135deg) translateY(-2px);
}
.mobile-nav__sublist {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}
.mobile-nav__sublist.open {
  max-height: 140px;
  opacity: 1;
}
.mobile-nav__link--sub {
  padding: 12px 24px 12px 48px;
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  position: relative;
}
.mobile-nav__link--sub::before {
  content: '';
  position: absolute; left: 32px; top: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(147,51,234,0.4);
  transform: translateY(-50%);
  transition: background 0.3s ease;
}
.mobile-nav__link--sub:hover::before,
.mobile-nav__link--sub.active::before {
  background: var(--purple-light);
  box-shadow: 0 0 8px rgba(147,51,234,0.5);
}

/* Mobile Nav Divider */
.mobile-nav__divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147,51,234,0.3), rgba(6,182,212,0.2), transparent);
  margin: var(--space-lg) auto;
  position: relative; z-index: 1;
}

/* Mobile Nav Social Section */
.mobile-nav__social {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}
.mobile-nav__social-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.mobile-nav__social-links {
  display: flex; gap: var(--space-md);
}
.mobile-nav__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.45);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav__social-link:hover {
  border-color: rgba(147,51,234,0.3);
  background: rgba(147,51,234,0.1);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(147,51,234,0.2);
}
.mobile-nav__social-link:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}
.mobile-nav__social-link[data-platform="spotify"]:hover { border-color: rgba(29,185,84,0.5); color: #1DB954; }
.mobile-nav__social-link[data-platform="youtube"]:hover { border-color: rgba(255,0,0,0.5); color: #FF0000; }
.mobile-nav__social-link[data-platform="instagram"]:hover { border-color: rgba(225,48,108,0.5); color: #E1306C; }
.mobile-nav__social-link[data-platform="soundcloud"]:hover { border-color: rgba(255,85,0,0.5); color: #FF5500; }
.mobile-nav__social-link svg {
  width: 20px; height: 20px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .site-header__nebula { animation: none; }
  .site-header__stars { animation: none; }
  .site-header__logo { animation: none; }
  .hero__title { animation: none; background-position: 0% 0%; }
  .hero__title-fa { animation: none; background-position: 50% 50%; }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  padding: 12px 24px; font-size: var(--font-size-base); font-weight: 600;
  border-radius: var(--radius-full); transition: all var(--duration) var(--ease);
  white-space: nowrap; user-select: none; position: relative; overflow: hidden;
}
.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn--primary { background: var(--grad-primary); color: var(--white); box-shadow: var(--shadow-glow); }
.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity var(--duration);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--neon-glow), 0 0 80px rgba(107,33,168,0.35); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--text-secondary); border: 1px solid var(--border-light); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.15); }
.btn--outline { background: transparent; color: var(--purple-light); border: 1px solid var(--purple-light); }
.btn--outline:hover { background: var(--purple-light); color: var(--white); box-shadow: var(--shadow-glow); }
.btn--sm { padding: 6px 14px; font-size: var(--font-size-sm); }

/* Cosmic gradient-border button */
.btn--cosmic {
  background: rgba(14,14,22,0.5);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  position: relative;
  z-index: 1;
}
.btn--cosmic::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #06B6D4, #9333EA, #EC4899);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.btn--cosmic::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(147,51,234,0.2), rgba(236,72,153,0.2));
  filter: blur(12px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.btn--cosmic:hover {
  transform: translateY(-3px);
  color: var(--white);
}
.btn--cosmic:hover::after {
  opacity: 1;
}
.btn--cosmic:active {
  transform: translateY(0);
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 2px;
}
.btn--cosmic:hover .btn__arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE CTA BUTTONS — Redesign
   ═══════════════════════════════════════════════════════════ */
body.home .music__cta {
  margin-top: var(--space-2xl);
  text-align: center;
}
body.home .music__cta .btn {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  gap: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.home .music__cta .btn::before {
  padding: 1.5px;
}
body.home .music__cta .btn:hover {
  transform: translateY(-3px) scale(1.02);
}
body.home .music__cta .btn:active {
  transform: translateY(0) scale(0.98);
}
body.home .music__cta .btn__arrow {
  font-size: 1.1em;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body.home .music__cta .btn:hover .btn__arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  body.home .music__cta .btn {
    padding: 14px 32px;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  body.home .music__cta .btn {
    padding: 12px 26px;
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   GLASS CARD
   ═══════════════════════════════════════════════════════════ */
.glass-card {
  background: rgba(14, 14, 22, 0.5);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all var(--duration) var(--ease);
}
.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(107,33,168,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════════════════════════ */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; text-align: center;
  margin-bottom: var(--space-md);
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { text-align: center; color: var(--text-secondary); font-size: clamp(0.95rem, 2vw, 1.15rem); margin-bottom: var(--space-2xl); }
.section-subtitle::after {
  content: '';
  display: block; width: 40px; height: 2px;
  background: var(--grad-primary); margin: var(--space-md) auto 0; border-radius: 1px;
}

/* ═══════════════════════════════════════════════════════════
   HERO — Premium Artist Identity
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-2xl);
  z-index: 1;
}

/* Hero Overlay */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(107,33,168,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 60%, rgba(236,72,153,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(6,182,212,0.03) 0%, transparent 50%);
  z-index: 3;
}

/* Title Glow Aura */
.hero__aura {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(147,51,234,0.15) 0%,
    rgba(236,72,153,0.08) 30%,
    rgba(6,182,212,0.05) 50%,
    transparent 70%);
  filter: blur(60px);
  z-index: 2;
  animation: auraPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes auraPulse {
  0% { opacity: 0.6; transform: translate(-50%, -55%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -55%) scale(1.05); }
  100% { opacity: 0.6; transform: translate(-50%, -55%) scale(1); }
}

/* Hero Content */
.hero__content { position: relative; z-index: 4; text-align: center; max-width: 900px; width: 100%; }

/* Title Orb - cosmic sphere behind SAYMAWN text */
.hero__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 30vw, 320px);
  height: clamp(180px, 30vw, 320px);
  pointer-events: none;
  z-index: -1;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb-core {
  position: absolute; inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(6,182,212,0.12) 0%,
    rgba(147,51,234,0.08) 40%,
    rgba(236,72,153,0.04) 70%,
    transparent 100%);
  box-shadow:
    inset 0 0 40px rgba(147,51,234,0.06),
    inset 0 0 80px rgba(6,182,212,0.04);
  animation: orbPulse 8s ease-in-out infinite alternate;
}
.hero__orb-ring {
  position: absolute; inset: 5%;
  border-radius: 50%;
  border: 1px solid rgba(147,51,234,0.08);
  box-shadow:
    0 0 15px rgba(6,182,212,0.05),
    inset 0 0 15px rgba(236,72,153,0.03);
  animation: orbPulse 8s ease-in-out infinite alternate-reverse;
}
.hero__orb-glow {
  position: absolute; inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(147,51,234,0.06) 0%,
    rgba(6,182,212,0.04) 30%,
    transparent 65%);
  filter: blur(30px);
  animation: orbPulse 10s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}
@keyframes orbPulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0.85; transform: scale(1.06); }
}

/* SAYMAWN Title */
.hero__title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}
.hero__title-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110%; height: 140%;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(147,51,234,0.1), rgba(236,72,153,0.12)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: orbitBreathe 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes orbitBreathe {
  0% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.03); }
}
.hero__stardust {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  z-index: -1;
}
.hero__stardust span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 6px rgba(6,182,212,0.5), 0 0 12px rgba(147,51,234,0.3);
  animation: dustFloat 10s ease-in-out infinite;
}
.hero__stardust span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; animation-duration: 11s; }
.hero__stardust span:nth-child(2) { top: 25%; right: 10%; animation-delay: -2s; animation-duration: 9s; width: 2px; height: 2px; }
.hero__stardust span:nth-child(3) { bottom: 20%; left: 8%; animation-delay: -4s; animation-duration: 12s; }
.hero__stardust span:nth-child(4) { bottom: 10%; right: 18%; animation-delay: -1s; animation-duration: 10s; width: 2px; height: 2px; }
.hero__stardust span:nth-child(5) { top: 50%; left: -5%; animation-delay: -3s; animation-duration: 13s; }
.hero__stardust span:nth-child(6) { top: 40%; right: -3%; animation-delay: -5s; animation-duration: 9s; width: 2px; height: 2px; }
.hero__stardust span:nth-child(7) { top: 5%; left: 50%; animation-delay: -2.5s; animation-duration: 11s; }
.hero__stardust span:nth-child(8) { bottom: 5%; left: 45%; animation-delay: -4.5s; animation-duration: 10s; width: 2px; height: 2px; }
@keyframes dustFloat {
  0%, 100% { opacity: 0.2; transform: translateY(0) translateX(0); }
  25% { opacity: 0.7; transform: translateY(-8px) translateX(4px); }
  50% { opacity: 0.4; transform: translateY(-4px) translateX(-3px); }
  75% { opacity: 0.8; transform: translateY(-10px) translateX(2px); }
}
.hero__title {
  font-size: clamp(4rem, 12vw, 9rem); font-weight: 700;
  line-height: 0.9; letter-spacing: -0.03em;
  background: linear-gradient(
    135deg,
    #06B6D4 0%,
    #9333EA 25%,
    #EC4899 50%,
    #9333EA 75%,
    #06B6D4 100%
  );
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative; display: inline-block;
  filter: drop-shadow(0 0 20px rgba(147,51,234,0.3)) drop-shadow(0 0 40px rgba(6,182,212,0.15));
}
.hero__title::after {
  content: '';
  position: absolute; inset: -20%;
  background: radial-gradient(ellipse at center,
    rgba(6,182,212,0.15) 0%,
    rgba(147,51,234,0.2) 30%,
    rgba(236,72,153,0.12) 50%,
    transparent 70%);
  filter: blur(50px);
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}

.hero__subtitle {
  font-size: var(--font-size-lg); font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* Hero Persian Title — Animated Gradient */
.hero__title-fa {
  display: block;
  font-family: var(--font-fa);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  direction: rtl;
  margin-top: var(--space-sm);
  background: linear-gradient(
    90deg,
    #06B6D4 0%,
    #9333EA 25%,
    #EC4899 50%,
    #9333EA 75%,
    #06B6D4 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTitleGradient 10s linear infinite;
  filter: drop-shadow(0 0 16px rgba(147,51,234,0.25)) drop-shadow(0 0 32px rgba(6,182,212,0.12));
  position: relative;
}
@keyframes heroTitleGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Animated Waveform */
.hero__waveform {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; height: 40px;
  margin: var(--space-xl) auto var(--space-2xl);
  opacity: 0.6;
}
.hero__waveform .bar {
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, var(--purple-light), var(--pink));
  animation: waveBar 1.2s ease-in-out infinite;
}
.hero__waveform .bar:nth-child(1) { animation-delay: 0s; height: 8px; }
.hero__waveform .bar:nth-child(2) { animation-delay: 0.1s; height: 14px; }
.hero__waveform .bar:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.hero__waveform .bar:nth-child(4) { animation-delay: 0.3s; height: 28px; }
.hero__waveform .bar:nth-child(5) { animation-delay: 0.4s; height: 36px; }
.hero__waveform .bar:nth-child(6) { animation-delay: 0.3s; height: 28px; }
.hero__waveform .bar:nth-child(7) { animation-delay: 0.2s; height: 20px; }
.hero__waveform .bar:nth-child(8) { animation-delay: 0.1s; height: 14px; }
.hero__waveform .bar:nth-child(9) { animation-delay: 0s; height: 8px; }
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 0.8; }
}

/* Latest Release Mini Card */
.hero__release {
  display: inline-flex; align-items: center; gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg) var(--space-md) var(--space-md);
  background: rgba(14,14,22,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  margin-bottom: var(--space-2xl);
  transition: all 0.3s ease;
}
.hero__release:hover {
  border-color: rgba(147,51,234,0.3);
  box-shadow: 0 8px 40px rgba(107,33,168,0.15);
}
.hero__release-art {
  width: 56px; height: 56px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
}
.hero__release-info { text-align: left; }
.hero__release-label {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--pink);
  margin-bottom: 2px;
}
.hero__release-name {
  font-size: var(--font-size-base); font-weight: 600;
  color: var(--white); margin: 0;
}
.hero__release-actions { display: flex; gap: var(--space-sm); }
.hero__release-play {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary); border: none;
  border-radius: 50%; color: var(--white); cursor: pointer;
  transition: all 0.3s ease;
}
.hero__release-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(107,33,168,0.4);
}
.hero__release-play svg { width: 18px; height: 18px; margin-left: 2px; }
.hero__release-listen {
  display: flex; align-items: center;
  padding: 0 var(--space-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-sm); font-weight: 500;
  text-decoration: none; transition: all 0.3s ease;
  white-space: nowrap;
}
.hero__release-listen:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white); border-color: rgba(255,255,255,0.2);
}

/* Hero Scroll */
.hero__scroll-indicator {
  position: absolute; bottom: var(--space-2xl);
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-sm); z-index: 2;
}
.hero__scroll-text {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.3);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(147,51,234,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}



/* ═══════════════════════════════════════════════════════════
   LATEST RELEASE
   ═══════════════════════════════════════════════════════════ */
.release {
  position: relative; padding: var(--space-section) 0; z-index: 1; overflow: hidden;
}

.release__nebula {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(107,33,168,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 40%, rgba(6,182,212,0.06) 0%, transparent 50%);
}

.release__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl); align-items: center;
}

/* ── Artwork ── */
.release__visual { display: flex; justify-content: center; }

.release__artwork-wrap { position: relative; width: 100%; max-width: 460px; }

.release__artwork {
  position: relative; width: 100%; aspect-ratio: 1;
  border-radius: 20px; overflow: hidden; cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05);
}
.release__artwork:hover {
  transform: scale(1.02);
  box-shadow:
    0 12px 48px rgba(107,33,168,0.3),
    0 0 0 1px rgba(255,255,255,0.08);
}
.release__artwork:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 4px;
}

/* Playing state */
.release__artwork.is-playing {
  transform: scale(1.02);
  box-shadow:
    0 12px 48px rgba(107,33,168,0.35),
    0 0 60px rgba(107,33,168,0.15),
    0 0 0 1px rgba(255,255,255,0.08);
  animation: artPulse 3s ease-in-out infinite;
}
@keyframes artPulse {
  0%, 100% { box-shadow: 0 12px 48px rgba(107,33,168,0.35), 0 0 60px rgba(107,33,168,0.15), 0 0 0 1px rgba(255,255,255,0.08); }
  50% { box-shadow: 0 12px 48px rgba(107,33,168,0.45), 0 0 80px rgba(107,33,168,0.25), 0 0 0 1px rgba(255,255,255,0.1); }
}

.release__artwork img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 20px; display: block;
  transition: filter 0.4s var(--ease);
}

/* Play/Pause Button */
.release__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; z-index: 5;
  border-radius: 50%;
  background: rgba(14,14,22,0.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.release__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(147,51,234,0.7);
  border-color: rgba(147,51,234,0.5);
  box-shadow: 0 4px 32px rgba(147,51,234,0.4);
}
.release__play:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
}
.release__play svg { width: 24px; height: 24px; }

/* Glow behind artwork */
.release__artwork-glow {
  position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(ellipse,
    rgba(107,33,168,0.2) 0%,
    rgba(6,182,212,0.08) 40%,
    transparent 70%);
  filter: blur(40px);
  opacity: 0; transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.release__artwork.is-playing .release__artwork-glow {
  opacity: 1;
  animation: glowBreath 4s ease-in-out infinite alternate;
}
@keyframes glowBreath {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* ── Equalizer (inside artwork) ── */
.release__eq {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 48px; z-index: 3;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px; padding: 0 20px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.release__artwork.is-playing .release__eq { opacity: 1; }

.release__eq span {
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(147,51,234,0.8));
  height: 6px;
  animation: eqBar 0.8s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.release__artwork.is-playing .release__eq span { animation-play-state: running; }

.release__eq span:nth-child(1) { animation-duration: 0.7s; }
.release__eq span:nth-child(2) { animation-duration: 0.5s; animation-delay: 0.1s; }
.release__eq span:nth-child(3) { animation-duration: 0.6s; animation-delay: 0.2s; }
.release__eq span:nth-child(4) { animation-duration: 0.45s; animation-delay: 0.05s; }
.release__eq span:nth-child(5) { animation-duration: 0.65s; animation-delay: 0.15s; }

@keyframes eqBar {
  0% { height: 4px; }
  100% { height: 28px; }
}

/* ── Info ── */
.release__info { padding: var(--space-xl) 0; }

.release__label {
  display: inline-block; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--blue-light); margin-bottom: var(--space-md);
  position: relative; padding-left: 20px;
}
.release__label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 12px; height: 2px; background: var(--blue-light);
  transform: translateY(-50%);
}

.release__title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: var(--space-xs); line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.release__artist-name {
  font-size: var(--font-size-lg); color: var(--purple-light);
  margin-bottom: var(--space-xl); font-weight: 500;
}

.release__actions { margin-bottom: 0; }
.release__streaming { display: flex; gap: var(--space-sm); }

.release__stream-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; padding: 0;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text-secondary); transition: all var(--duration) var(--ease);
}
.release__stream-btn[data-platform="spotify"]:hover { border-color: #1DB954; color: #1DB954; background: rgba(29,185,84,0.1); }
.release__stream-btn[data-platform="youtube"]:hover { border-color: #FF0000; color: #FF0000; background: rgba(255,0,0,0.1); }
.release__stream-btn[data-platform="soundcloud"]:hover { border-color: #FF5500; color: #FF5500; background: rgba(255,85,0,0.1); }
.release__stream-btn:hover { transform: translateY(-2px); }

/* Divider */
.release__divider {
  margin-top: var(--space-section);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), rgba(236,72,153,0.2), rgba(6,182,212,0.3), transparent);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .release__artwork { animation: none !important; transition: none; }
  .release__artwork.is-playing { animation: none !important; }
  .release__artwork-glow { animation: none !important; }
  .release__eq span { animation: none !important; height: 6px; opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════
   MUSIC / TRACKLIST
   ═══════════════════════════════════════════════════════════ */
.music { padding: var(--space-section) 0; z-index: 1; position: relative; overflow: hidden; }
.tracklist { display: flex; flex-direction: column; gap: 6px; }
.tl__item {
  display: grid; grid-template-columns: 32px 48px 1fr auto 48px;
  gap: var(--space-sm); align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: rgba(14,14,22,0.4); border: 1px solid var(--border);
  border-radius: var(--radius-md); cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
}
.tl__item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  opacity: 0;
  background: linear-gradient(135deg, rgba(107,33,168,0.08), rgba(6,182,212,0.05));
  transition: opacity var(--duration);
  z-index: -1;
}
.tl__item:hover {
  background: transparent;
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(107,33,168,0.08), 0 0 60px rgba(6,182,212,0.04);
}
.tl__item:hover::before { opacity: 1; }
.tl__item.playing {
  background: linear-gradient(135deg, rgba(107,33,168,0.12), rgba(6,182,212,0.06));
  border-color: var(--border-glow);
  box-shadow: 0 0 20px rgba(107,33,168,0.1);
}
.tl__art {
  width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; background: var(--surface);
  transition: all var(--duration) var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.tl__item:hover .tl__art {
  box-shadow: 0 4px 20px rgba(107,33,168,0.3), 0 0 40px rgba(107,33,168,0.15);
  transform: scale(1.05);
}
.tl__info { min-width: 0; }
.tl__title { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl__album { font-size: var(--font-size-sm); color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl__dur { font-size: var(--font-size-sm); color: var(--text-muted); font-variant-numeric: tabular-nums; }
.tl__controls {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 3px 4px;
}
.tl__play-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(107,33,168,0.15); border: 1px solid rgba(107,33,168,0.25);
  color: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease; flex-shrink: 0;
}
.tl__play-btn:hover { background: rgba(107,33,168,0.3); color: #fff; transform: scale(1.08); border-color: rgba(107,33,168,0.5); }
.tl__play-btn svg { width: 14px; height: 14px; }
.tl__lyrics-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(236,72,153,0.1); border: 1px solid rgba(236,72,153,0.2);
  color: rgba(236,72,153,0.7); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease; flex-shrink: 0;
}
.tl__lyrics-btn:hover { background: rgba(236,72,153,0.2); color: #fff; transform: scale(1.08); border-color: rgba(236,72,153,0.4); }
.tl__lyrics-btn svg { width: 12px; height: 12px; }
.tl__dl-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2);
  color: rgba(6,182,212,0.7); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease; flex-shrink: 0; text-decoration: none; position: relative;
}
.tl__dl-btn:hover { background: rgba(6,182,212,0.2); color: #fff; transform: scale(1.08); border-color: rgba(6,182,212,0.4); }
.tl__dl-btn svg { width: 12px; height: 12px; }
.tl__dl-btn::after {
  content: 'Download'; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  padding: 6px 10px; background: rgba(10,8,15,0.95); border: 1px solid rgba(6,182,212,0.2); border-radius: 6px;
  font-size: 0.7rem; color: rgba(255,245,235,0.8); white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.2s ease; z-index: 10;
}
.tl__dl-btn:hover::after { opacity: 1; }
.tl__item.playing .tl__play-btn { background: rgba(107,33,168,0.3); color: #fff; border-color: rgba(107,33,168,0.5); }
@media (max-width: 640px) {
  .tl__item { grid-template-columns: 28px 40px 1fr auto; }
  .tl__dl-btn { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — Artist Bio
   ═══════════════════════════════════════════════════════════ */
.about { padding: var(--space-section) 0; z-index: 1; position: relative; overflow: hidden; }
.about__profile {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about__portrait { position: relative; display: flex; justify-content: center; }
.about__portrait-frame { padding: var(--space-sm); border-radius: var(--radius-lg); overflow: hidden; }
.about__portrait-frame img { width: 100%; max-width: 400px; aspect-ratio: 1/1; object-fit: cover; border-radius: calc(var(--radius-lg) - 4px); }
.about__portrait-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120%; height: 120%;
  background: radial-gradient(ellipse, rgba(107,33,168,0.25) 0%, transparent 60%);
  filter: blur(40px); z-index: -1;
}
.about__content { width: 100%; text-align: center; }
.about__text { margin-bottom: var(--space-lg); }
.about__text p { color: var(--text-secondary); margin-bottom: var(--space-md); line-height: 1.8; }
.about__quote {
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--purple-light);
  background: rgba(107,33,168,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: var(--space-lg);
}
.about__quote p { font-size: var(--font-size-lg); font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   SOCIAL — Streaming Platforms
   ═══════════════════════════════════════════════════════════ */
.social { padding: var(--space-section) 0; z-index: 1; position: relative; overflow: hidden; background: linear-gradient(180deg, transparent, rgba(107,33,168,0.03), transparent); }
.social__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}
.social__card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  min-height: 160px;
  background: rgba(14,14,22,0.4);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.social__card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 50%, rgba(107,33,168,0.15), transparent 70%);
  transition: opacity var(--duration);
}
.social__card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(107,33,168,0.12), 0 0 80px rgba(107,33,168,0.06);
}
.social__card:hover::before { opacity: 1; }
.social__card-icon { color: var(--text-secondary); transition: color var(--duration), transform var(--duration); }
.social__card:hover .social__card-icon { color: var(--white); transform: scale(1.1); }
.social__card-name { font-weight: 600; font-size: var(--font-size-sm); }
.social__card-action {
  font-size: var(--font-size-xs); text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-muted); transition: color var(--duration);
}
.social__card:hover .social__card-action { color: var(--purple-light); }

/* Platform-specific hover colors */
.social__card[data-platform="spotify"]:hover { border-color: #1DB954; }
.social__card[data-platform="spotify"]:hover .social__card-icon { color: #1DB954; }
.social__card[data-platform="apple"]:hover { border-color: #FC3C44; }
.social__card[data-platform="apple"]:hover .social__card-icon { color: #FC3C44; }
.social__card[data-platform="youtube"]:hover { border-color: #FF0000; }
.social__card[data-platform="youtube"]:hover .social__card-icon { color: #FF0000; }
.social__card[data-platform="instagram"]:hover { border-color: #E1306C; }
.social__card[data-platform="instagram"]:hover .social__card-icon { color: #E1306C; }
.social__card[data-platform="soundcloud"]:hover { border-color: #FF5500; }
.social__card[data-platform="soundcloud"]:hover .social__card-icon { color: #FF5500; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  position: relative; z-index: 1;
  padding: var(--space-xl) 0 calc(var(--space-lg) + 80px);
  border-top: 1px solid rgba(139,92,246,0.2);
  background: linear-gradient(180deg, transparent, rgba(10,10,15,0.6));
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), rgba(236,72,153,0.4), rgba(6,182,212,0.5), transparent);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.site-footer__brand { }
.site-footer__logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--font-size-xl);
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.site-footer__tagline {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer__social {
  display: flex;
  gap: var(--space-sm);
}
.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text-secondary);
  transition: all var(--duration) var(--ease);
}
.site-footer__social-link:hover {
  border-color: rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.1);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139,92,246,0.2);
}
.site-footer__social-link:hover:nth-child(1) { border-color: rgba(29,185,84,0.5); background: rgba(29,185,84,0.1); color: #1DB954; }
.site-footer__social-link:hover:nth-child(2) { border-color: rgba(255,0,0,0.5); background: rgba(255,0,0,0.1); color: #FF0000; }
.site-footer__social-link:hover:nth-child(3) { border-color: rgba(225,48,108,0.5); background: rgba(225,48,108,0.1); color: #E1306C; }
.site-footer__social-link:hover:nth-child(4) { border-color: rgba(255,85,0,0.5); background: rgba(255,85,0,0.1); color: #FF5500; }
.site-footer__social-link:hover:nth-child(5) { border-color: rgba(0,136,204,0.5); background: rgba(0,136,204,0.1); color: #0088CC; }
.site-footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.site-footer__copy {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  margin-bottom: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.site-footer__nav a {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--duration) var(--ease);
}
.site-footer__nav a:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   OLD PLAYER BAR v3 — REMOVED
   Replaced by Cosmic Control Rail V2.
   See: assets/css/player-v2.css
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   MUSIC VIDEO SECTION
   ═══════════════════════════════════════════════════════════ */
.video-section {
  padding: var(--space-section) 0;
  z-index: 1; position: relative;
  background: linear-gradient(180deg, transparent, rgba(107,33,168,0.02), transparent);
}
.video-section__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-lg);
}

/* ── Video Player ── */
.video-section__player {
  position: relative;
}
.video-section__thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.video-section__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.video-section__thumb:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}
.video-section__play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.video-section__thumb:hover .video-section__play-overlay {
  opacity: 1;
}
.video-section__play-btn {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(107,33,168,0.85);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  padding-left: 4px;
}
.video-section__play-btn:hover {
  background: rgba(147,51,234,0.95);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(147,51,234,0.4), 0 0 80px rgba(147,51,234,0.2);
}
.video-section__glow {
  position: absolute; inset: -20%; z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147,51,234,0.08), rgba(6,182,212,0.04), transparent 65%);
  filter: blur(40px);
  opacity: 0; transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.video-section__thumb:hover .video-section__glow {
  opacity: 1;
}
.video-section__thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,16,0.1) 0%,
    rgba(5,5,16,0.05) 30%,
    rgba(5,5,16,0.2) 60%,
    rgba(5,5,16,0.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.video-section__thumb-title {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  display: flex; flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.video-section__thumb-title-main {
  font-size: 1.6rem; font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 40px rgba(107,33,168,0.3);
  letter-spacing: 0.02em;
}
.video-section__thumb-title-sub {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Gallery ── */
.video-section__gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.video-section__gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}
.video-section__gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.video-section__gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}
.video-section__gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.video-section__gallery-item:hover::after {
  opacity: 1;
}
.video-section__gallery-item:hover {
  box-shadow: 0 0 25px rgba(147,51,234,0.15), 0 0 50px rgba(6,182,212,0.08);
}

/* ═══════════════════════════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════════════════════════ */
.video-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.video-modal.active {
  opacity: 1; visibility: visible;
}
.video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,5,16,0.92);
  backdrop-filter: blur(12px);
}
.video-modal__container {
  position: relative;
  width: 100%; max-width: 900px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0a0a12;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 120px rgba(107,33,168,0.08);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease);
}
.video-modal.active .video-modal__container {
  transform: scale(1) translateY(0);
}
.video-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,15,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.video-modal__close:hover {
  color: var(--white);
  border-color: var(--purple-light);
  background: rgba(107,33,168,0.3);
}
.video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal__player video {
  width: 100%; height: 100%;
  display: block;
  outline: none;
}

/* ═══════════════════════════════════════════════════════════
   IMAGE LIGHTBOX MODAL
   ═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.active {
  opacity: 1; visibility: visible;
}
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,5,16,0.94);
  backdrop-filter: blur(16px);
}
.lightbox__container {
  position: relative;
  width: 100%; max-width: 80vw;
  max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.88);
  transition: transform 0.45s var(--ease);
}
.lightbox.active .lightbox__container {
  transform: scale(1);
}
.lightbox__close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,15,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox__close:hover {
  color: var(--white);
  border-color: var(--purple-light);
  background: rgba(107,33,168,0.3);
}
.lightbox__content {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 120px rgba(107,33,168,0.1);
}
.lightbox__content img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__content::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   LYRICS MODAL
   ═══════════════════════════════════════════════════════════ */
.lyrics-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lyrics-modal.active { opacity: 1; visibility: visible; }
.lyrics-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,3,10,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.lyrics-modal__container {
  position: relative; z-index: 1;
  width: 90%; max-width: 600px; max-height: 85vh;
  display: flex; flex-direction: column;
  background: linear-gradient(145deg, rgba(20,15,30,0.95) 0%, rgba(12,10,18,0.98) 100%);
  border: 1px solid rgba(147,51,234,0.15);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 60px rgba(147,51,234,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.lyrics-modal.active .lyrics-modal__container { transform: translateY(0) scale(1); }
.lyrics-modal__header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 24px 0; flex-shrink: 0;
}
.lyrics-modal__meta { min-width: 0; flex: 1; padding-right: 16px; }
.lyrics-modal__title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin: 0 0 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lyrics-modal__artist {
  font-size: 0.8rem; color: rgba(255,200,160,0.5);
}
.lyrics-modal__close {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: all 0.25s ease;
}
.lyrics-modal__close:hover {
  background: rgba(255,255,255,0.1); color: var(--white);
  border-color: rgba(255,255,255,0.15);
}
.lyrics-modal__body {
  flex: 1; overflow-y: auto; padding: 20px 24px 24px;
  scrollbar-width: thin; scrollbar-color: rgba(147,51,234,0.3) transparent;
}
.lyrics-modal__body::-webkit-scrollbar { width: 6px; }
.lyrics-modal__body::-webkit-scrollbar-track { background: transparent; }
.lyrics-modal__body::-webkit-scrollbar-thumb { background: rgba(147,51,234,0.3); border-radius: 3px; }
.lyrics-modal__content {
  color: rgba(255,245,235,0.8); font-size: 0.95rem; line-height: 2;
  font-family: var(--font-fa);
  text-align: center;
}
.lyrics-modal__content p {
  margin: 0 0 1em;
}
.lyrics-modal__content p:last-child { margin-bottom: 0; }
.lyrics-modal__content[dir="rtl"] {
  font-family: var(--font-fa);
  line-height: 2;
  font-size: 1rem;
}
.lyrics-label-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(236,72,153,0.06); border: 1px solid rgba(236,72,153,0.1);
  color: rgba(236,72,153,0.5); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease; flex-shrink: 0; position: relative;
  text-decoration: none;
}
.lyrics-label-btn:hover {
  background: rgba(236,72,153,0.12); color: rgba(236,72,153,0.9);
  transform: scale(1.1); border-color: rgba(236,72,153,0.3);
}
.lyrics-label-btn::after {
  content: 'Lyrics'; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  padding: 6px 10px; background: rgba(10,8,15,0.95); border: 1px solid rgba(236,72,153,0.2); border-radius: 6px;
  font-size: 0.7rem; color: rgba(255,245,235,0.8); white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.2s ease; z-index: 10;
}
.lyrics-label-btn:hover::after { opacity: 1; }

/* ── Mobile Lyrics Modal ── */
@media (max-width: 640px) {
  .lyrics-modal__container {
    width: calc(100% - 16px); max-height: calc(100vh - 32px);
    border-radius: 16px;
  }
  .lyrics-modal__header { padding: 20px 20px 0; }
  .lyrics-modal__body { padding: 16px 20px 20px; }
  .lyrics-modal__title { font-size: 1rem; }
  .lyrics-modal__content { font-size: 0.9rem; line-height: 1.75; }
  .lyrics-modal__content[dir="rtl"] { font-size: 0.95rem; line-height: 1.9; }
  .lyrics-label-btn { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL LYRICS TEXT — B Yekan font, centered, readable
   Applies to ALL inline lyrics sections across every song page.
   ═══════════════════════════════════════════════════════════ */
.sh-lyrics__text,
.nh-lyrics__text,
.bf-lyrics__text,
.mn-lyrics__text,
.sm-lyrics__text,
.mz-lyrics__text,
.nb-lyrics__text,
.nd-lyrics__text,
.tn-lyrics__text,
.st-lyrics__text,
.da-lyrics__text,
.mr-lyrics__text,
.sg-lyrics__text,
.mm-lyrics__text,
.nl-lyrics__text,
.mb-lyrics__text,
.tbg-lyrics__text,
.gz-lyrics__text {
  font-family: var(--font-fa);
  text-align: center;
  line-height: 2;
}

/* === Layout Shift Prevention === */

