/* ═══════════════════════════════════════════════════════════
   SAYMAWN — Multi-Page Component Styles
   Song cards, album detail, song page, music filter, page hero
   ═══════════════════════════════════════════════════════════ */

/* Page Hero */
.page-hero {
  padding: calc(var(--header-h) + var(--space-section)) 0 var(--space-xl);
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--white), var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}
.page-hero__subtitle {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  letter-spacing: var(--tracking-wide);
}

/* Music Filter */
.music-filter {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}
.music-filter__btn {
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.music-filter__btn:hover {
  border-color: var(--purple-light);
  color: var(--white);
}
.music-filter__btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
}

/* Song Grid */
.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-section);
}
.song-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-md);
}

/* Song Card */
.song-card {
  position: relative;
}
.song-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.song-card__art-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: var(--space-sm);
}
.song-card__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease);
}
.song-card:hover .song-card__art {
  transform: scale(1.05);
}
.song-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 15, 0.6);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius-lg);
}
.song-card:hover .song-card__play {
  opacity: 1;
}
.song-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 2px;
}
.song-card__artist {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin: 0 0 2px;
}
.song-card__album {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin: 0;
}
.song-card__actions {
  display: flex; align-items: center; gap: 8px; margin-top: var(--space-sm);
}
.song-card__dl {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(6,182,212,0.06); border: 1px solid rgba(6,182,212,0.1);
  color: rgba(6,182,212,0.5); text-decoration: none;
  transition: all 0.25s ease; position: relative;
}
.song-card__dl:hover { background: rgba(6,182,212,0.12); color: rgba(6,182,212,0.9); transform: scale(1.1); border-color: rgba(6,182,212,0.3); }
.song-card__dl::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;
}
.song-card__dl:hover::after { opacity: 1; }

/* Album Detail */
.album-detail {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-section);
  align-items: start;
}
.album-detail__cover {
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}
.album-detail__cover img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.album-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: var(--space-sm) 0;
}
.album-detail__artist {
  font-size: var(--text-lg);
  color: var(--purple-light);
  margin: 0 0 var(--space-md);
}
.album-detail__year {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0 0 var(--space-md);
}
.album-detail__desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.album-detail__nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-section);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

/* Song Page */
.song-page {
  padding: calc(var(--header-h) + var(--space-lg)) 0 var(--space-section);
}
.song-page__layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-section);
  align-items: start;
}
.song-page__cover {
  position: relative;
}
.song-page__cover img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.song-page__play-btn {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(147,51,234,0.4);
  transition: transform var(--duration) var(--ease);
}
.song-page__play-btn:hover {
  transform: scale(1.1);
}
.song-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin: var(--space-sm) 0;
}
.song-page__artist {
  font-size: var(--text-lg);
  color: var(--purple-light);
  margin: 0 0 var(--space-lg);
}
.song-page__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.song-page__meta-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: 2px;
}
.song-page__meta-value {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
a.song-page__meta-value {
  text-decoration: none;
  color: var(--purple-light);
}
a.song-page__meta-value:hover {
  color: var(--pink);
}

/* Song Page Inline Player */
.song-page__player {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}
.song-page__player-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.song-page__player-progress {
  flex: 1;
}
.song-page__player-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-xs);
}
.song-page__player-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.song-page__player-times {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Lyrics */
.song-page__lyrics {
  margin-top: var(--space-section);
  padding: var(--space-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.song-page__lyrics h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0 0 var(--space-md);
}
.song-page__lyrics-placeholder {
  color: var(--text-muted);
  font-style: italic;
}

/* Related Songs */
.song-page__related {
  margin-top: var(--space-section);
}

/* Music CTA */
.music__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════════
   MANZOOMEH — Cosmic Album Page
   ═══════════════════════════════════════════════════════════ */

/* ── Background ── */
.page-album--manzoomeh {
  background: #050510;
  overflow-x: hidden;
}
/* ═══════════════════════════════════════════════════════════
   COSMIC BACKGROUND — Multi-layer Parallax Galaxy
   ═══════════════════════════════════════════════════════════ */
.mz-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* ── Star Layers (parallax depth) ── */
.mz-bg__stars {
  position: absolute; inset: -50px;
}
.mz-bg__stars--deep {
  background-image:
    radial-gradient(0.8px 0.8px at 8% 15%, rgba(255,255,255,0.25), transparent),
    radial-gradient(0.8px 0.8px at 22% 55%, rgba(255,255,255,0.2), transparent),
    radial-gradient(0.6px 0.6px at 35% 8%, rgba(200,200,255,0.2), transparent),
    radial-gradient(0.8px 0.8px at 48% 72%, rgba(255,255,255,0.18), transparent),
    radial-gradient(0.6px 0.6px at 62% 28%, rgba(180,200,255,0.2), transparent),
    radial-gradient(0.8px 0.8px at 78% 62%, rgba(255,255,255,0.15), transparent),
    radial-gradient(0.6px 0.6px at 88% 12%, rgba(200,180,255,0.18), transparent),
    radial-gradient(0.8px 0.8px at 15% 82%, rgba(255,255,255,0.2), transparent),
    radial-gradient(0.6px 0.6px at 55% 45%, rgba(255,255,255,0.15), transparent),
    radial-gradient(0.8px 0.8px at 92% 88%, rgba(200,200,255,0.18), transparent);
  animation: mzStarsDeepDrift 120s linear infinite;
}
.mz-bg__stars--mid {
  background-image:
    radial-gradient(1.2px 1.2px at 12% 25%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 28% 68%, rgba(147,51,234,0.35), transparent),
    radial-gradient(1.2px 1.2px at 42% 12%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 58% 78%, rgba(6,182,212,0.3), transparent),
    radial-gradient(1.2px 1.2px at 72% 35%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 85% 58%, rgba(236,72,153,0.25), transparent),
    radial-gradient(1.2px 1.2px at 18% 92%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 65% 48%, rgba(147,51,234,0.3), transparent),
    radial-gradient(1.2px 1.2px at 38% 42%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 78% 18%, rgba(6,182,212,0.25), transparent);
  animation: mzStarsMidDrift 80s linear infinite;
}
.mz-bg__stars--near {
  background-image:
    radial-gradient(1.8px 1.8px at 15% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 32% 72%, rgba(147,51,234,0.5), transparent),
    radial-gradient(1.5px 1.5px at 48% 18%, rgba(6,182,212,0.45), transparent),
    radial-gradient(2px 2px at 65% 55%, rgba(236,72,153,0.4), transparent),
    radial-gradient(1.8px 1.8px at 82% 38%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 25% 88%, rgba(147,51,234,0.4), transparent),
    radial-gradient(2px 2px at 55% 85%, rgba(6,182,212,0.35), transparent),
    radial-gradient(1.8px 1.8px at 88% 72%, rgba(255,255,255,0.45), transparent);
  animation: mzStarsNearDrift 50s linear infinite;
}
@keyframes mzStarsDeepDrift {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-8px) translateX(3px); }
}
@keyframes mzStarsMidDrift {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-15px) translateX(-5px); }
}
@keyframes mzStarsNearDrift {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-25px) translateX(8px); }
}

/* ── Nebula Clouds ── */
.mz-bg__nebula {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
}
.mz-bg__nebula--1 {
  top: -12%; left: -18%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(107,33,168,0.3), transparent 70%);
  animation: mzNebulaDrift1 30s ease-in-out infinite alternate;
}
.mz-bg__nebula--2 {
  bottom: -12%; right: -12%; width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
  animation: mzNebulaDrift2 25s ease-in-out infinite alternate;
}
.mz-bg__nebula--3 {
  top: 35%; left: 45%; width: 42vw; height: 42vw; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(236,72,153,0.12), transparent 70%);
  animation: mzNebulaDrift3 35s ease-in-out infinite alternate;
}
.mz-bg__nebula--4 {
  top: 15%; right: 10%; width: 30vw; height: 30vw;
  background: radial-gradient(circle, rgba(147,51,234,0.1), rgba(6,182,212,0.06), transparent 70%);
  animation: mzNebulaDrift4 28s ease-in-out infinite alternate;
}
@keyframes mzNebulaDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3vw, 2vh) scale(1.05); }
}
@keyframes mzNebulaDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2vw, -3vh) scale(1.08); }
}
@keyframes mzNebulaDrift3 {
  0% { transform: translateX(-50%) translate(0, 0) scale(1); }
  100% { transform: translateX(-50%) translate(2vw, 2vh) scale(1.06); }
}
@keyframes mzNebulaDrift4 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate(-1vw, 3vh) scale(1.1); opacity: 0.45; }
}

/* ── Milky Way Band ── */
.mz-bg__milkyway {
  position: absolute;
  top: 20%; left: -20%; right: -20%;
  height: 35vh;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(147,51,234,0.02) 15%,
    rgba(200,180,255,0.04) 25%,
    rgba(147,51,234,0.06) 35%,
    rgba(6,182,212,0.04) 45%,
    rgba(236,72,153,0.03) 55%,
    rgba(147,51,234,0.04) 65%,
    rgba(200,180,255,0.03) 75%,
    transparent 100%
  );
  filter: blur(40px);
  transform: rotate(-15deg);
  animation: mzMilkyWayDrift 100s linear infinite;
  opacity: 0.6;
}
@keyframes mzMilkyWayDrift {
  from { transform: rotate(-15deg) translateX(0); }
  to { transform: rotate(-15deg) translateX(3vw); }
}

/* ── Star Clusters ── */
.mz-bg__cluster {
  position: absolute; border-radius: 50%;
  filter: blur(15px);
}
.mz-bg__cluster--1 {
  top: 18%; left: 22%;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(147,51,234,0.2), rgba(147,51,234,0.05) 50%, transparent 70%);
  box-shadow: 0 0 60px rgba(147,51,234,0.1);
  animation: mzClusterPulse1 10s ease-in-out infinite alternate;
}
.mz-bg__cluster--2 {
  top: 55%; right: 15%;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(6,182,212,0.15), rgba(6,182,212,0.04) 50%, transparent 70%);
  box-shadow: 0 0 70px rgba(6,182,212,0.08);
  animation: mzClusterPulse2 12s ease-in-out infinite alternate;
}
.mz-bg__cluster--3 {
  bottom: 25%; left: 60%;
  width: 70px; height: 70px;
  background: radial-gradient(circle, rgba(236,72,153,0.15), rgba(236,72,153,0.04) 50%, transparent 70%);
  box-shadow: 0 0 50px rgba(236,72,153,0.08);
  animation: mzClusterPulse3 9s ease-in-out infinite alternate;
}
@keyframes mzClusterPulse1 {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.15); }
}
@keyframes mzClusterPulse2 {
  0% { opacity: 0.35; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.2); }
}
@keyframes mzClusterPulse3 {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.55; transform: scale(1.1); }
}

/* ── Distant Galaxy Objects ── */
.mz-bg__galaxy {
  position: absolute; border-radius: 50%;
}
.mz-bg__galaxy--1 {
  top: 12%; right: 25%;
  width: 20px; height: 8px;
  background: radial-gradient(ellipse, rgba(200,180,255,0.3), transparent 70%);
  filter: blur(2px);
  transform: rotate(35deg);
  animation: mzDistantGalaxy1 40s ease-in-out infinite alternate;
}
.mz-bg__galaxy--2 {
  bottom: 30%; left: 18%;
  width: 15px; height: 6px;
  background: radial-gradient(ellipse, rgba(147,51,234,0.25), transparent 70%);
  filter: blur(2px);
  transform: rotate(-20deg);
  animation: mzDistantGalaxy2 35s ease-in-out infinite alternate;
}
@keyframes mzDistantGalaxy1 {
  0% { opacity: 0.3; transform: rotate(35deg) scale(1); }
  100% { opacity: 0.5; transform: rotate(38deg) scale(1.2); }
}
@keyframes mzDistantGalaxy2 {
  0% { opacity: 0.25; transform: rotate(-20deg) scale(1); }
  100% { opacity: 0.4; transform: rotate(-18deg) scale(1.15); }
}

/* ── Cosmic Dust ── */
.mz-bg__dust {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(147,51,234,0.03), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(6,182,212,0.02), transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(236,72,153,0.02), transparent 45%);
  animation: mzDustDrift 60s ease-in-out infinite alternate;
}
@keyframes mzDustDrift {
  0% { opacity: 0.4; transform: translate(0, 0); }
  100% { opacity: 0.6; transform: translate(1vw, -1vh); }
}

/* ── Particles Canvas ── */
.mz-bg__particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* ── Hero ── */
.mz-hero {
  position: relative; z-index: 1;
  min-height: 100vh; min-height: 100svh;
  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);
  text-align: center;
  overflow: hidden;
}
/* ═══════════════════════════════════════════════════════════
   HERO UNIVERSE — Realistic Planetary Bodies
   Single light source from upper-left. NASA-style rendering.
   ═══════════════════════════════════════════════════════════ */
.mz-hero__universe {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}

/* ── Moon — Realistic rocky body ── */
.mz-hero__moon {
  position: absolute;
  top: 12%; right: 12%;
  width: clamp(60px, 10vw, 120px); height: clamp(60px, 10vw, 120px);
  border-radius: 50%;
  /* Base lunar surface — neutral grey with subtle warmth */
  background: radial-gradient(circle at 38% 36%,
    #c8c0b8 0%,
    #a8a098 25%,
    #8a827a 50%,
    #6a625a 75%,
    #4a423a 100%);
  /* Natural shadow from single light source (upper-left) */
  box-shadow:
    inset -14px -10px 28px rgba(0,0,0,0.6),
    inset -4px -2px 8px rgba(0,0,0,0.3);
  animation: mzMoonOrbit 25s ease-in-out infinite;
  overflow: hidden;
}
/* Crater field and surface detail */
.mz-hero__moon-surface {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    /* Major craters — dark depressions */
    radial-gradient(circle at 30% 45%, rgba(0,0,0,0.2) 0%, transparent 12%),
    radial-gradient(circle at 55% 30%, rgba(0,0,0,0.18) 0%, transparent 10%),
    radial-gradient(circle at 42% 68%, rgba(0,0,0,0.15) 0%, transparent 8%),
    radial-gradient(circle at 70% 55%, rgba(0,0,0,0.12) 0%, transparent 6%),
    radial-gradient(circle at 25% 72%, rgba(0,0,0,0.14) 0%, transparent 9%),
    /* Crater rims — bright edges catching light */
    radial-gradient(circle at 29% 44%, rgba(255,255,255,0.12) 0%, transparent 13%),
    radial-gradient(circle at 54% 29%, rgba(255,255,255,0.1) 0%, transparent 11%),
    radial-gradient(circle at 41% 67%, rgba(255,255,255,0.08) 0%, transparent 9%),
    /* Surface maria — darker plains */
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.08) 0%, transparent 40%),
    /* Highland brightness */
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.06) 0%, transparent 35%);
  animation: mzMoonRotate 80s linear infinite;
}
/* Terminator shadow — the day/night boundary */
.mz-hero__moon-shadow {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    linear-gradient(140deg,
      transparent 0%,
      transparent 30%,
      rgba(0,0,0,0.15) 45%,
      rgba(0,0,0,0.4) 60%,
      rgba(0,0,0,0.7) 75%,
      rgba(0,0,0,0.85) 100%);
}
@keyframes mzMoonOrbit {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-6px, -10px); }
  50% { transform: translate(-2px, -5px); }
  75% { transform: translate(4px, -8px); }
  100% { transform: translate(0, 0); }
}
@keyframes mzMoonRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Uranus — Ice giant with subtle banding ── */
.mz-hero__uranus {
  position: absolute;
  bottom: 18%; left: 8%;
  width: clamp(50px, 8vw, 90px); height: clamp(50px, 8vw, 90px);
  border-radius: 50%;
  /* Base ice giant color — muted cyan with depth */
  background: radial-gradient(circle at 42% 38%,
    #7ecfc8 0%,
    #5ab8b0 20%,
    #3a9a92 40%,
    #2a7a72 60%,
    #1a5a52 80%,
    #0a3a32 100%);
  /* Natural shadow — single light source */
  box-shadow:
    inset -12px -8px 24px rgba(0,0,0,0.55),
    inset -3px -2px 6px rgba(0,0,0,0.25);
  animation: mzUranusOrbit 30s ease-in-out infinite;
  overflow: visible;
}
/* Atmospheric banding — horizontal cloud belts */
.mz-hero__uranus-surface {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    /* Band 1 — upper temperate */
    linear-gradient(0deg,
      transparent 0%,
      rgba(255,255,255,0.03) 15%,
      rgba(0,0,0,0.04) 18%,
      transparent 22%),
    /* Band 2 — equatorial bright zone */
    linear-gradient(0deg,
      transparent 35%,
      rgba(255,255,255,0.05) 40%,
      rgba(255,255,255,0.06) 45%,
      rgba(0,0,0,0.03) 48%,
      transparent 52%),
    /* Band 3 — lower temperate */
    linear-gradient(0deg,
      transparent 60%,
      rgba(0,0,0,0.04) 65%,
      rgba(255,255,255,0.03) 68%,
      transparent 72%),
    /* Polar darkening */
    radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.15) 0%, transparent 30%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.12) 0%, transparent 25%);
  animation: mzUranusRotate 50s linear infinite;
}
/* ═══════════════════════════════════════════════════════════
   URANUS RING SYSTEM — Multi-band realistic rings
   Based on Voyager 2 and ground-based observations.
   ═══════════════════════════════════════════════════════════ */

/* Base ring style — shared properties */
.mz-hero__uranus-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
  /* Mask: hide inner area where planet sits */
  mask-image: radial-gradient(ellipse at 50% 50%,
    transparent 28%, black 30%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%,
    transparent 28%, black 30%, black 100%);
}

/* Epsilon ring — outermost bright ring (behind planet) */
.mz-hero__uranus-ring--epsilon {
  width: 185%; height: 38%;
  transform: translate(-50%, -50%) rotate(-22deg);
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%,
      transparent 46%,
      rgba(140,148,158,0.035) 47%,
      rgba(155,163,175,0.055) 48%,
      rgba(140,148,158,0.03) 49%,
      transparent 50%);
  animation: mzRingRotate 80s linear infinite;
}

/* Alpha ring — medium brightness (behind planet) */
.mz-hero__uranus-ring--alpha {
  width: 165%; height: 35%;
  transform: translate(-50%, -50%) rotate(-20deg);
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%,
      transparent 47.5%,
      rgba(145,153,165,0.04) 48.5%,
      rgba(160,168,180,0.06) 49%,
      rgba(145,153,165,0.035) 49.5%,
      transparent 50.5%);
  animation: mzRingRotate 75s linear infinite reverse;
}

/* Beta ring — faint (behind planet) */
.mz-hero__uranus-ring--beta {
  width: 150%; height: 32%;
  transform: translate(-50%, -50%) rotate(-18deg);
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%,
      transparent 48%,
      rgba(135,143,155,0.03) 49%,
      rgba(150,158,170,0.045) 49.5%,
      rgba(135,143,155,0.025) 50%,
      transparent 51%);
  animation: mzRingRotate 70s linear infinite;
}

/* Gamma ring — very faint inner ring (in front of planet) */
.mz-hero__uranus-ring--gamma {
  width: 135%; height: 28%;
  transform: translate(-50%, -50%) rotate(-16deg);
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 50%,
      transparent 48.5%,
      rgba(130,138,150,0.025) 49.5%,
      rgba(145,153,165,0.035) 50%,
      rgba(130,138,150,0.02) 50.5%,
      transparent 51.5%);
  animation: mzRingRotate 65s linear infinite reverse;
  /* No mask for front rings — they cross over the planet */
  mask-image: none;
  -webkit-mask-image: none;
}

/* Delta ring — innermost visible ring (in front of planet) */
.mz-hero__uranus-ring--delta {
  width: 122%; height: 25%;
  transform: translate(-50%, -50%) rotate(-14deg);
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 50%,
      transparent 49%,
      rgba(125,133,145,0.02) 49.8%,
      rgba(140,148,160,0.03) 50.2%,
      rgba(125,133,145,0.015) 50.6%,
      transparent 51.2%);
  animation: mzRingRotate 60s linear infinite;
  mask-image: none;
  -webkit-mask-image: none;
}
@keyframes mzUranusOrbit {
  0% { transform: translate(0, 0); }
  25% { transform: translate(5px, -7px); }
  50% { transform: translate(2px, -3px); }
  75% { transform: translate(-3px, -8px); }
  100% { transform: translate(0, 0); }
}
@keyframes mzUranusRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes mzRingRotate {
  from { transform: translate(-50%, -50%) rotate(-22deg); }
  to { transform: translate(-50%, -50%) rotate(338deg); }
}

/* ── Orbital Paths ── */
.mz-hero__orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.02);
  pointer-events: none;
}
.mz-hero__orbit--moon {
  top: 8%; right: 6%;
  width: clamp(120px, 18vw, 220px); height: clamp(120px, 18vw, 220px);
  animation: mzOrbitSpin1 50s linear infinite;
}
.mz-hero__orbit--uranus {
  bottom: 12%; left: 3%;
  width: clamp(100px, 15vw, 180px); height: clamp(100px, 15vw, 180px);
  animation: mzOrbitSpin2 60s linear infinite reverse;
}
@keyframes mzOrbitSpin1 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes mzOrbitSpin2 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Galaxy Glow — Subtle ambient light ── */
.mz-hero__galaxy {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60vw; height: 60vw; max-width: 600px; max-height: 600px;
  border-radius: 50%;
  /* Very subtle diffuse glow — like distant galactic core */
  background: radial-gradient(circle,
    rgba(147,51,234,0.04) 0%,
    rgba(6,182,212,0.025) 25%,
    rgba(236,72,153,0.02) 45%,
    rgba(147,51,234,0.015) 60%,
    transparent 75%);
  filter: blur(60px);
  animation: mzGalaxyPulse 20s ease-in-out infinite alternate;
}
@keyframes mzGalaxyPulse {
  0% { opacity: 0.4; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05) rotate(2deg); }
}

/* ── Distant Stars (hero) ── */
.mz-hero__distant-star {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 0 6px rgba(255,255,255,0.3);
}
.mz-hero__distant-star--1 {
  top: 25%; left: 18%;
  width: 2px; height: 2px;
  animation: mzStarTwinkle1 4s ease-in-out infinite alternate;
}
.mz-hero__distant-star--2 {
  top: 65%; right: 22%;
  width: 1.5px; height: 1.5px;
  background: rgba(147,51,234,0.7);
  box-shadow: 0 0 5px rgba(147,51,234,0.3);
  animation: mzStarTwinkle2 5s ease-in-out infinite alternate;
}
.mz-hero__distant-star--3 {
  bottom: 35%; left: 35%;
  width: 2px; height: 2px;
  background: rgba(6,182,212,0.6);
  box-shadow: 0 0 5px rgba(6,182,212,0.3);
  animation: mzStarTwinkle3 3.5s ease-in-out infinite alternate;
}
@keyframes mzStarTwinkle1 {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.5); }
}
@keyframes mzStarTwinkle2 {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.3); }
}
@keyframes mzStarTwinkle3 {
  0% { opacity: 0.35; transform: scale(1); }
  100% { opacity: 0.75; transform: scale(1.4); }
}

/* Hero content */
.mz-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: var(--space-xl);
}

/* Spinning CD Disc */
.mz-hero__artwork-wrap.mz-cd {
  position: relative;
  width: clamp(240px, 40vw, 340px);
  height: clamp(240px, 40vw, 340px);
}
.mz-cd__disc {
  position: relative; width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  animation: mzCdSpin 20s linear infinite;
  box-shadow:
    0 0 0 2px rgba(147,51,234,0.15),
    0 0 30px rgba(147,51,234,0.12),
    0 0 60px rgba(6,182,212,0.08),
    0 20px 50px rgba(0,0,0,0.5);
}
@keyframes mzCdSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.mz-cd__label {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
  display: block;
}
/* Metallic shine reflection */
.mz-cd__shine {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0.08) 50%,
    transparent 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
}
/* Center hole */
.mz-cd__hole {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14%; height: 14%;
  border-radius: 50%;
  background: #050510;
  border: 2px solid rgba(147,51,234,0.2);
  box-shadow:
    inset 0 0 8px rgba(0,0,0,0.6),
    0 0 6px rgba(147,51,234,0.15);
  z-index: 4;
}
/* Groove rings */
.mz-cd__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none; z-index: 2;
}
.mz-cd__ring--1 {
  inset: 20%;
  border-color: rgba(147,51,234,0.06);
}
.mz-cd__ring--2 {
  inset: 35%;
  border-color: rgba(6,182,212,0.05);
}
/* Outer glow */
.mz-cd__glow {
  position: absolute; inset: -25%; z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(147,51,234,0.15) 0%,
    rgba(6,182,212,0.08) 35%,
    rgba(236,72,153,0.06) 55%,
    transparent 70%);
  filter: blur(30px);
  animation: mzCdGlow 6s ease-in-out infinite alternate;
}
@keyframes mzCdGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.06); }
}

/* Badge */
.mz-hero__badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(6,182,212,0.8);
  padding: 6px 16px;
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 100px;
  background: rgba(6,182,212,0.05);
}

/* Title */
.mz-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #06B6D4 0%, #9333EA 50%, #EC4899 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(147,51,234,0.3));
  margin: 0;
}

/* Artist */
.mz-hero__artist {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin: 0;
}

/* Description */
.mz-hero__desc {
  max-width: 500px;
  font-size: 0.9rem; line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* Meta */
.mz-hero__meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}
.mz-hero__meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
.mz-hero__meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* Scroll indicator */
.mz-hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: mzScrollBounce 3s ease-in-out infinite;
}
@keyframes mzScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.7; }
}

/* ── Full Tracklist ── */
.mz-tracks {
  position: relative; z-index: 1;
  padding: 60px 20px 40px;
}
.mz-tracks__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700; text-align: center;
  margin-bottom: 32px;
  color: rgba(255,245,235,0.9);
}
.mz-tracks__list {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 6px;
}

/* Track row — matches 20 Salegi tw-track design */
.mz-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,220,180,0.06);
  background: rgba(255,220,180,0.02);
  cursor: pointer;
  transition: all 0.25s ease;
}
.mz-track:hover {
  background: rgba(255,220,180,0.06);
  border-color: rgba(255,220,180,0.12);
}
.mz-track.playing {
  background: rgba(255,200,140,0.08);
  border-color: rgba(255,200,140,0.2);
}
.mz-track__left {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 0;
}
.mz-track__num {
  font-size: 0.8rem;
  color: rgba(255,200,160,0.3);
  min-width: 24px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.mz-track__art {
  width: 46px; height: 46px;
  border-radius: 6px; object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.mz-track__info {
  min-width: 0; flex: 1;
}
.mz-track__name {
  display: block;
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255,245,235,0.9);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mz-track__name--link {
  color: rgba(255,245,235,0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mz-track__name--link:hover {
  color: rgba(255,200,140,0.9);
}
.mz-track__meta {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,200,160,0.35);
  margin-top: 2px;
}
.mz-track__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mz-track__play {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,200,140,0.08);
  border: 1px solid rgba(255,200,140,0.12);
  color: rgba(255,200,160,0.6);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  cursor: pointer;
}
.mz-track__play:hover {
  background: rgba(255,200,140,0.15);
  color: rgba(255,245,235,0.9);
  transform: scale(1.1);
}
.mz-track__play svg { width: 18px; height: 18px; }
.mz-track__lyrics {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(147,51,234,0.06);
  border: 1px solid rgba(147,51,234,0.1);
  color: rgba(147,51,234,0.5);
  cursor: pointer; flex-shrink: 0;
  transition: all 0.25s ease;
  font-size: 0; line-height: 0;
}
.mz-track__lyrics:hover {
  background: rgba(147,51,234,0.12);
  border-color: rgba(147,51,234,0.25);
  color: rgba(147,51,234,0.8);
  transform: scale(1.1);
}
.mz-track__lyrics svg { width: 16px; height: 16px; }
.mz-track__dl {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(147,51,234,0.06);
  border: 1px solid rgba(147,51,234,0.1);
  color: rgba(147,51,234,0.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.mz-track__dl:hover {
  background: rgba(236,72,153,0.1);
  border-color: rgba(236,72,153,0.2);
  color: rgba(236,72,153,0.8);
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(147,51,234,0.15), 0 0 24px rgba(236,72,153,0.1);
}
.mz-track__dl::after {
  content: 'Download Song';
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  background: rgba(10,8,8,0.95);
  border: 1px solid rgba(147,51,234,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;
}
.mz-track__dl:hover::after { opacity: 1; }
.mz-track__dl svg { width: 16px; height: 16px; }

/* ── Nav Section ── */
.mz-nav-section {
  position: relative; z-index: 1;
  padding: 20px 20px 120px;
}
.mz-nav {
  display: flex; justify-content: space-between;
  max-width: 700px; margin: 0 auto;
}
.mz-nav__link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,200,160,0.45);
  border: 1px solid rgba(255,200,160,0.08);
  background: rgba(255,200,160,0.02);
  transition: all 0.25s ease;
  text-decoration: none;
}
.mz-nav__link:hover {
  color: rgba(255,245,235,0.9);
  border-color: rgba(255,200,160,0.15);
  background: rgba(255,200,160,0.04);
}

/* ═══════════════════════════════════════════════════════════
   20 SALEGI — Nostalgic Album Page
   ═══════════════════════════════════════════════════════════ */

/* ── Background ── */
.page-album--20salegi {
  background: #0A0808;
  overflow-x: hidden;
}
.tw-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
.tw-bg__grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: twGrain 0.5s steps(1) infinite;
}
@keyframes twGrain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-5%, 5%); }
  40% { transform: translate(3%, -3%); }
  60% { transform: translate(-3%, 2%); }
  80% { transform: translate(5%, -5%); }
  100% { transform: translate(0, 0); }
}
.tw-bg__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10,8,8,0.6) 100%);
}
.tw-bg__leak {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.tw-bg__leak--1 {
  top: -5%; right: -5%; width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(200,140,80,0.06), transparent 70%);
  animation: twLeak1 15s ease-in-out infinite alternate;
}
.tw-bg__leak--2 {
  bottom: -8%; left: -5%; width: 35vw; height: 35vw;
  background: radial-gradient(circle, rgba(180,100,120,0.05), transparent 70%);
  animation: twLeak2 18s ease-in-out infinite alternate;
}
@keyframes twLeak1 {
  0% { opacity: 0.4; transform: translate(0, 0); }
  100% { opacity: 0.7; transform: translate(-20px, 15px); }
}
@keyframes twLeak2 {
  0% { opacity: 0.3; transform: translate(0, 0); }
  100% { opacity: 0.6; transform: translate(15px, -10px); }
}
.tw-bg__dust {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* ── Hero ── */
.tw-hero {
  position: relative; z-index: 1;
  min-height: 100vh; min-height: 100svh;
  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);
  text-align: center;
  overflow: hidden;
}

/* Floating polaroid memories */
.tw-hero__memories {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.tw-memory {
  position: absolute;
  width: clamp(70px, 10vw, 110px);
  opacity: 0.12;
}
.tw-memory__inner {
  background: rgba(255,250,240,0.9);
  padding: 6px 6px 20px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: rotate(var(--rot, -5deg));
}
.tw-memory__photo {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(180,140,100,0.3), rgba(120,100,80,0.2));
  border-radius: 1px;
}
.tw-memory__tape {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(var(--tape-rot, 2deg));
  width: 30px; height: 12px;
  background: rgba(200,190,170,0.5);
  border-radius: 1px;
}
.tw-memory--1 { top: 12%; left: 8%; --rot: -8deg; --tape-rot: 3deg; animation: twFloatMem 20s ease-in-out infinite; }
.tw-memory--2 { top: 20%; right: 10%; --rot: 6deg; --tape-rot: -2deg; animation: twFloatMem 24s ease-in-out infinite reverse; }
.tw-memory--3 { bottom: 15%; left: 15%; --rot: -3deg; --tape-rot: 5deg; animation: twFloatMem 22s ease-in-out infinite; animation-delay: -5s; }
@keyframes twFloatMem {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(2deg); }
  66% { transform: translateY(6px) rotate(-1deg); }
}

/* Hero content */
.tw-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: var(--space-xl);
}

/* Artwork */
.tw-hero__artwork-wrap {
  position: relative;
  width: clamp(240px, 40vw, 340px);
  height: clamp(240px, 40vw, 340px);
}
.tw-hero__frame {
  position: absolute; inset: -8px;
  border: 2px solid rgba(200,170,130,0.15);
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(200,140,80,0.06);
}
.tw-hero__artwork {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 3px;
  position: relative; z-index: 2;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5), 0 0 60px rgba(200,140,80,0.08);
  filter: saturate(0.9) contrast(1.02);
}
.tw-hero__artwork-light {
  position: absolute; top: -10%; right: -10%; z-index: 3;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(255,230,180,0.08), transparent 70%);
  filter: blur(20px);
  animation: twLightLeak 10s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes twLightLeak {
  0% { opacity: 0.3; transform: translate(0, 0); }
  100% { opacity: 0.6; transform: translate(-10px, 8px); }
}

/* Badge */
.tw-hero__badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200,170,130,0.7);
  padding: 6px 16px;
  border: 1px solid rgba(200,170,130,0.2);
  border-radius: 100px;
  background: rgba(200,170,130,0.04);
}

/* Title */
.tw-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700; letter-spacing: 0.04em;
  background: linear-gradient(135deg, #C8AA82 0%, #E8C9A0 40%, #B48E6A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(200,140,80,0.2));
  margin: 0;
}
.tw-hero__subtitle-fa {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(200,170,130,0.35);
  margin: -4px 0 0;
  direction: rtl;
}

/* Artist */
.tw-hero__artist {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin: 0;
}

/* Description */
.tw-hero__desc {
  max-width: 480px;
  font-size: 0.9rem; line-height: 1.7;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* Meta */
.tw-hero__meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}
.tw-hero__meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.tw-hero__meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

/* Scroll */
.tw-hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: twScrollFade 3s ease-in-out infinite;
}
@keyframes twScrollFade {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.6; transform: translateX(-50%) translateY(5px); }
}

/* ── Timeline Section ── */
.tw-timeline {
  position: relative; z-index: 1;
  padding: var(--space-section) var(--space-xl);
}
.tw-timeline__header {
  text-align: center; margin-bottom: var(--space-2xl);
}
.tw-timeline__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700; color: var(--white);
  margin: 0 0 var(--space-sm);
}
.tw-timeline__subtitle {
  font-size: 0.85rem; color: rgba(255,255,255,0.3);
  margin: 0;
}

/* Timeline track */
.tw-timeline__track {
  position: relative;
  max-width: 800px; margin: 0 auto;
}
.tw-timeline__line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,170,130,0.2) 10%, rgba(200,170,130,0.2) 90%, transparent);
  transform: translateX(-50%);
}
.tw-timeline__items {
  position: relative;
  display: flex; flex-direction: column; gap: 40px;
}

/* Timeline item */
.tw-timeline__item {
  position: relative;
  display: flex;
  width: 50%;
}
.tw-timeline__item--left {
  align-self: flex-start;
  padding-right: 40px;
  justify-content: flex-end;
}
.tw-timeline__item--right {
  align-self: flex-end;
  margin-left: 50%;
  padding-left: 40px;
  justify-content: flex-start;
}

/* Timeline dot */
.tw-timeline__dot {
  position: absolute;
  top: 20px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(200,170,130,0.4);
  border: 2px solid rgba(200,170,130,0.2);
  box-shadow: 0 0 12px rgba(200,140,80,0.15);
  z-index: 2;
}
.tw-timeline__item--left .tw-timeline__dot { right: -5px; }
.tw-timeline__item--right .tw-timeline__dot { left: -5px; }

/* Timeline card */
.tw-timeline__card {
  background: rgba(18,14,12,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,170,130,0.08);
  border-radius: 10px;
  padding: 18px 20px;
  max-width: 280px;
  transition: all 0.35s ease;
}
.tw-timeline__card:hover {
  border-color: rgba(200,170,130,0.18);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(200,140,80,0.06);
  transform: translateY(-3px);
}
.tw-timeline__card-year {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  color: rgba(200,170,130,0.5);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.tw-timeline__card-title {
  display: block;
  font-size: 0.95rem; font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.tw-timeline__card-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
  margin-bottom: 10px;
}
.tw-timeline__card-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.tw-timeline__card-duration {
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
}
.tw-timeline__card-play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(200,170,130,0.15);
  background: rgba(200,170,130,0.06);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tw-timeline__card-play:hover {
  background: rgba(200,170,130,0.15);
  border-color: rgba(200,170,130,0.3);
  color: var(--white);
  box-shadow: 0 0 12px rgba(200,140,80,0.12);
}

/* ── Full Tracklist ── */
.tw-tracks {
  position: relative; z-index: 1;
  padding: var(--space-section) 0;
}
.tw-tracks__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700; color: var(--white);
  text-align: center;
  margin: 0 0 var(--space-xl);
}
.tw-tracks__list {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}

/* Track row */
.tw-track {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(18,14,12,0.4);
  border: 1px solid rgba(200,170,130,0.06);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.tw-track:hover {
  background: rgba(18,14,12,0.6);
  border-color: rgba(200,170,130,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.tw-track__left {
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
}
.tw-track__num {
  font-size: 0.75rem; font-weight: 600;
  color: rgba(200,170,130,0.4);
  min-width: 20px;
}
.tw-track__art {
  width: 44px; height: 44px;
  border-radius: 6px; object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  filter: saturate(0.85);
  flex-shrink: 0;
}
.tw-track__info { min-width: 0; }
.tw-track__name {
  display: block;
  font-size: 0.9rem; font-weight: 600;
  color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tw-track__meta {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.tw-track__actions {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.tw-track__play {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(200,170,130,0.08);
  background: rgba(200,170,130,0.04);
  color: rgba(255,255,255,0.45);
  cursor: pointer; flex-shrink: 0;
  transition: all 0.3s ease;
}
.tw-track__play:hover {
  background: rgba(200,170,130,0.12);
  border-color: rgba(200,170,130,0.25);
  color: var(--white);
  box-shadow: 0 0 12px rgba(200,140,80,0.1);
}
.tw-track__dl {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.1);
  background: rgba(6,182,212,0.04);
  color: rgba(6,182,212,0.5);
  cursor: pointer; flex-shrink: 0; text-decoration: none;
  transition: all 0.3s ease; position: relative;
}
.tw-track__dl:hover {
  background: rgba(6,182,212,0.12);
  border-color: rgba(6,182,212,0.3);
  color: rgba(6,182,212,0.9);
  transform: scale(1.1);
}
.tw-track__dl::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;
}
.tw-track__dl:hover::after { opacity: 1; }

/* ── Nav Section ── */
.tw-nav-section {
  position: relative; z-index: 1;
  padding: var(--space-xl) 0 var(--space-section);
}
.tw-nav {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 700px; margin: 0 auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.tw-nav__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.tw-nav__link:hover {
  color: var(--white);
  border-color: rgba(200,170,130,0.25);
  background: rgba(200,170,130,0.05);
}

/* === Layout Shift Prevention === */
.album-detail__cover img {
  aspect-ratio: 1 / 1;
}

.song-card__art {
  aspect-ratio: 1 / 1;
}
