/* ============================================================
   RUSETAFARI — style.css
   Aesthetic: Warm amber / deep black / gold — vinyl collection
   Typography: Playfair Display (display) + DM Mono (labels/UI)
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --black:       #0c0b09;
  --black-mid:   #141210;
  --black-soft:  #1c1a16;
  --amber:       #c8922a;
  --amber-light: #e8b84b;
  --amber-dim:   #7a5418;
  --gold:        #d4a93a;
  --cream:       #f0e8d6;
  --cream-dim:   #b8a882;
  --white:       #faf7f0;
  --text-main:   #e8dfc8;
  --text-muted:  #8a7e68;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  --font-body:    'Cormorant Garamond', Georgia, serif;

  --radius:    2px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 64px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── GRAIN OVERLAY ──────────────────────────────────────────── */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}
.grain-overlay--light { opacity: 0.025; }

/* ── SECTION LABEL ──────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}
.section-label--light { color: var(--amber-light); }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav-mascot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--amber-dim);
}
.nav-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--amber-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(12, 11, 9, 0.97);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 2rem;
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
  transform: translateY(-110%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  display: block;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.5) brightness(0.35);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 11, 9, 0.88) 0%,
    rgba(12, 11, 9, 0.55) 50%,
    rgba(20, 15, 8, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-h) + 3rem) 4rem 4rem 5vw;
  max-width: 680px;
  animation: fadeUp 1s 0.2s both;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}
.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}
.hero-streaming {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--amber);
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--amber);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.stream-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.stream-btn:hover {
  background: transparent;
  color: var(--amber-light);
  border-color: var(--amber-light);
}

/* Hero photo */
.hero-photo-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(45%, 520px);
  z-index: 2;
  animation: fadeRight 1.2s 0.4s both;
}
.hero-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 60%, transparent 100%),
              linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 30%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 60%, transparent 100%),
              linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 30%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  mix-blend-mode: luminosity;
  opacity: 0.9;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 5vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  animation: fadeUp 1s 1s both;
}
.scroll-cue-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber-dim), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about {
  position: relative;
  background: var(--black-soft);
  overflow: hidden;
  padding: 8rem 0;
}
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber-dim), transparent);
}
.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber-dim), transparent);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.about-mascot-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-producer-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200, 146, 42, 0.18);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(200, 146, 42, 0.07);
  aspect-ratio: 3 / 4;
}
.about-producer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.75) brightness(0.88);
  transition: filter var(--transition);
}
.about-producer-wrap:hover .about-producer {
  filter: saturate(0.95) brightness(1);
}
.about-mascot-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 320px;
}
.about-mascot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--amber-dim);
  box-shadow: 0 0 60px rgba(200, 146, 42, 0.12), 0 0 120px rgba(200, 146, 42, 0.06);
  filter: saturate(0.85);
}
.about-vinyl-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 260px;
  margin-left: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 146, 42, 0.2);
}
.about-vinyl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.7);
  transition: filter var(--transition);
}
.about-vinyl-wrap:hover .about-vinyl-img { filter: saturate(1) brightness(0.9); }

.about-text-col { padding: 1rem 0; }
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.about-heading em {
  font-weight: 400;
  color: var(--amber-light);
  display: block;
}
.about-body {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dim);
  border: 1px solid var(--amber-dim);
  padding: 0.35rem 0.75rem;
  transition: color var(--transition), border-color var(--transition);
}
.tag:hover { color: var(--amber-light); border-color: var(--amber-light); }

/* ── MUSIC ──────────────────────────────────────────────────── */
.music {
  background: var(--black-mid);
  padding: 8rem 0;
}
.music-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.music-header {
  margin-bottom: 4rem;
}
.music-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Releases grid */
.releases {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

/* Featured release spans full width */
.release--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  background: var(--black-soft);
  border: 1px solid rgba(200, 146, 42, 0.12);
  margin-bottom: 2px;
}
.release {
  background: var(--black-soft);
  border: 1px solid rgba(200, 146, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.release:hover { border-color: rgba(200, 146, 42, 0.3); }
.release--featured:hover { border-color: rgba(200, 146, 42, 0.3); }

/* Release cover */
.release-cover-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.release--featured .release-cover-wrap {
  aspect-ratio: auto;
  height: 100%;
  min-height: 380px;
}
.release-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: saturate(0.75) brightness(0.85);
}
.release:hover .release-cover,
.release--featured:hover .release-cover {
  transform: scale(1.04);
  filter: saturate(0.95) brightness(0.95);
}
.release-cover-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 169, 58, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Release info */
.release-info {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.release--featured .release-info { padding: 3rem 3.5rem; }
.release-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.release-genre {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.release-year {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.release-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.release--featured .release-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.release-feat {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--amber-light);
  margin-bottom: 1rem;
}
.release-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-weight: 300;
  max-width: 480px;
}
.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.release-link {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dim);
  border: 1px solid var(--amber-dim);
  padding: 0.4rem 0.85rem;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.release-link:hover {
  color: var(--black);
  background: var(--amber);
  border-color: var(--amber);
}

/* ── CONNECT ────────────────────────────────────────────────── */
.connect {
  position: relative;
  padding: 10rem 5vw;
  overflow: hidden;
  text-align: center;
}
.connect-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.connect-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.2);
}
.connect-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(12,11,9,0.55) 0%, rgba(12,11,9,0.92) 100%);
}
.connect-inner {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin: 0 auto;
}
.connect-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.connect-email {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-light);
  border-bottom: 1px solid var(--amber-dim);
  padding-bottom: 2px;
  margin-bottom: 3.5rem;
  transition: color var(--transition), border-color var(--transition);
}
.connect-email:hover {
  color: var(--white);
  border-color: var(--white);
}
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.social-link:hover { color: var(--amber-light); }
.social-link svg {
  width: 22px;
  height: 22px;
}
.social-link span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(200, 146, 42, 0.1);
  padding: 2rem 5vw;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-mascot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--amber-dim);
  opacity: 0.7;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.6;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 56px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
  .release--featured {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-content {
    padding: calc(var(--nav-h) + 2rem) 5vw 2rem;
    max-width: 100%;
  }
  .hero-photo-wrap { display: none; }
  .scroll-cue { display: none; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-mascot-col {
    align-items: center;
  }
  .about-producer-wrap { max-width: 280px; }
  .about-mascot-wrap { max-width: 220px; }
  .about-vinyl-wrap { max-width: 180px; margin: 0 auto; }
  .about-tags { justify-content: center; }

  .releases {
    grid-template-columns: 1fr;
  }
  .release--featured {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .release--featured .release-cover-wrap {
    height: 280px;
    min-height: unset;
  }
  .release--featured .release-info {
    padding: 2rem 1.75rem;
  }
  .release-info { padding: 1.5rem; }

  .connect { padding: 7rem 5vw; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-streaming { flex-direction: column; align-items: flex-start; }
  .stream-btn { width: 100%; justify-content: center; }
  .releases { gap: 1px; }
  .release--featured .release-cover-wrap { height: 220px; }
}

/* ── MINI PLAYER ────────────────────────────────────────────── */
.mini-player {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  left: auto;
  top: auto;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(14, 12, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 146, 42, 0.22);
  border-radius: 48px;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,146,42,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
  max-width: 260px;
  pointer-events: all;
  transform: none;
}
.mini-player:hover {
  border-color: rgba(200, 146, 42, 0.45);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), 0 0 24px rgba(200,146,42,0.1);
}

/* Play/pause button */
.mini-player__btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--amber);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform 0.15s ease;
}
.mini-player__btn:hover {
  background: var(--amber-light);
  transform: scale(1.06);
}
.mini-player__btn:active { transform: scale(0.96); }
.mini-player__btn svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

/* Pulsing ring when playing */
.mini-player__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--amber);
  opacity: 0;
  pointer-events: none;
}
.mini-player.playing .mini-player__ring {
  animation: playerRing 2.4s ease-out infinite;
}
@keyframes playerRing {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Track info */
.mini-player__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.mini-player__title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-player__label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Animated waveform bars — visible only when playing */
.mini-player__waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
  flex-shrink: 0;
}
.mini-player__waveform span {
  display: block;
  width: 2px;
  background: var(--amber-dim);
  border-radius: 2px;
  height: 4px;
  transition: background 0.3s;
}
.mini-player.playing .mini-player__waveform span {
  background: var(--amber);
  animation: waveBar 1.1s ease-in-out infinite;
}
.mini-player.playing .mini-player__waveform span:nth-child(1) { animation-duration: 0.9s;  animation-delay: 0s; }
.mini-player.playing .mini-player__waveform span:nth-child(2) { animation-duration: 1.2s;  animation-delay: 0.15s; }
.mini-player.playing .mini-player__waveform span:nth-child(3) { animation-duration: 0.85s; animation-delay: 0.05s; }
.mini-player.playing .mini-player__waveform span:nth-child(4) { animation-duration: 1.1s;  animation-delay: 0.2s; }
.mini-player.playing .mini-player__waveform span:nth-child(5) { animation-duration: 0.95s; animation-delay: 0.1s; }
@keyframes waveBar {
  0%, 100% { height: 4px;  }
  50%       { height: 18px; }
}

/* Mobile: slightly smaller */
@media (max-width: 480px) {
  .mini-player {
    bottom: 1rem;
    right: 1rem;
    left: auto;
    padding: 0.45rem 0.85rem 0.45rem 0.45rem;
    gap: 0.65rem;
  }
  .mini-player__btn { width: 36px; height: 36px; }
  .mini-player__btn svg { width: 15px; height: 15px; }
  .mini-player__title { font-size: 0.58rem; }
  .mini-player__label { font-size: 0.5rem; }
}
