/* =========================================================
   EZ MUSIC VIBES — Design Tokens
   ========================================================= */
:root {
  --black:        #120814;
  --charcoal:      #1b0e20;
  --charcoal-2:    #26142c;
  --line:          #402641;

  --cream:         #fbe9f4;
  --cream-dim:     #dfb9d6;
  --cream-faint:   #a9829f;

  --gold:          #ff5fa8;
  --gold-bright:   #ffa0d8;
  --gold-deep:     #b23578;
  --gold-glow:     rgba(255, 95, 168, 0.35);

  --blood:         #d4680a;
  --blood-bright:  #ffb454;

  --font-display:  'Permanent Marker', cursive;
  --font-heading:  'Cinzel', serif;
  --font-body:     'Poppins', sans-serif;

  --container:     1180px;
  --gap-section:   7rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  position: relative;
  display: inline-block;
}

.section-title span { color: var(--gold-bright); }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head .rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.9rem auto 0;
}

.crown {
  width: 22px;
  height: 22px;
  margin: 0 auto 0.6rem;
  opacity: 0.85;
}

::selection { background: var(--gold-deep); color: var(--black); }

/* focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.btn:hover {
  color: var(--black);
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn:hover::before { opacity: 1; }

.btn svg { width: 12px; height: 12px; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--cream-faint);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 6px;
  transition: color 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.header-icons { display: flex; align-items: center; gap: 1.1rem; }
.header-icons a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.header-icons a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.header-icons svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 1px;
  background: var(--gold);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(178, 53, 120, 0.35), transparent 55%),
    linear-gradient(180deg, #1b0e20 0%, #120814 70%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  z-index: 0;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,8,6,0.95) 0%, rgba(10,8,6,0.55) 45%, rgba(10,8,6,0.85) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.hero-copy .crown-icon { width: 30px; height: 30px; margin-bottom: 0.6rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 8rem);
  line-height: 0.85;
  color: var(--gold-bright);
  background: linear-gradient(180deg, #ffd6ee 0%, #ff5fa8 55%, #b23578 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(201,162,75,0.35));
  transform: rotate(-2deg);
  margin-bottom: 0.5rem;
}
.hero-title-long {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 2rem;
}

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

.stream-links { display: flex; align-items: center; gap: 1.2rem; }
.stream-links a {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}
.stream-links a:hover { color: var(--gold-bright); }
.stream-links svg { width: 16px; height: 16px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.hero-badge .flag-icon {
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(240,230,210,0.15);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art-frame {
  width: min(360px, 90%);
  aspect-ratio: 1 / 1;
  transform: rotate(6deg);
  border: 1px solid var(--gold-deep);
  background:
    var(--cover-image, linear-gradient(155deg, #26142c, #120814 60%));
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 8px rgba(0,0,0,0.4);
  position: relative;
}

.hero-art-frame .frame-caption {
  position: absolute;
  left: 1.4rem; right: 1.4rem; bottom: 1.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--cream-faint);
  text-transform: uppercase;
  line-height: 1.5;
}
.hero-art-frame .frame-caption b { color: var(--blood-bright); font-style: italic; }

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-faint);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 26px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* =========================================================
   Section base
   ========================================================= */
section { padding: var(--gap-section) 0; position: relative; }
section + section { border-top: 1px solid var(--line); }
.section-tex {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(178,53,120,0.12), transparent 50%),
    var(--black);
}

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4 / 5;
  background: var(--portrait-image, linear-gradient(160deg, #26142c, #120814));
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  position: relative;
}
.about-photo::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 -60px 60px -20px rgba(0,0,0,0.7);
}

.about-eyebrow { margin-bottom: 0.6rem; }
.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.about-title span { color: var(--gold-bright); }
.about-text {
  color: var(--cream-dim);
  font-size: 1rem;
  max-width: 46ch;
  margin-bottom: 2rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 2.4rem;
}
.pillar {
  padding: 1.6rem 1rem 0;
  text-align: center;
  border-left: 1px solid var(--line);
}
.pillar:first-child { border-left: none; padding-left: 0; }
.pillar svg { width: 22px; height: 22px; color: var(--gold); margin-bottom: 0.7rem; }
.pillar h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--cream);
}
.pillar p { font-size: 0.78rem; color: var(--cream-faint); }

/* =========================================================
   Latest release
   ========================================================= */
.release-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 3.5rem;
  align-items: center;
}
.release-art {
  aspect-ratio: 1/1;
  background: var(--cover-image, linear-gradient(155deg, #26142c, #120814));
  background-size: cover; background-position: center;
  border: 1px solid var(--gold-deep);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.release-label {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold-bright);
  margin-bottom: 1rem;
  transform: rotate(-1.5deg);
}
.release-lines { color: var(--cream-dim); margin-bottom: 1.6rem; max-width: 52ch; }
.release-lines em { color: var(--blood-bright); font-style: italic; }
.release-lines p { margin-bottom: 0.3rem; }
.release-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* =========================================================
   Grid cards (music / videos)
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.card-grid.videos { grid-template-columns: repeat(3, 1fr); }

.media-card {
  position: relative;
  display: block;
}
.media-card .thumb {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.card-grid.videos .thumb { aspect-ratio: 16/10; }

.media-card .thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.75));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.media-card:hover .thumb::after { opacity: 1; }
.media-card:hover .thumb { border-color: var(--gold); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.85);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-bright);
  background: rgba(10,8,6,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.media-card:hover .play-btn { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.play-btn svg { width: 14px; height: 14px; color: var(--gold-bright); margin-left: 2px; }

.media-caption { padding-top: 0.9rem; text-align: center; }
.media-caption h4 {
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.media-caption p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.grid-footer { text-align: center; margin-top: 2.6rem; }

/* =========================================================
   Connect
   ========================================================= */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.connect-grid-wide { max-width: 780px; row-gap: 1.6rem; }
.connect-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1.8rem 1rem;
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.connect-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.connect-item .icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-deep), var(--gold));
  display: flex; align-items: center; justify-content: center;
}
.connect-item .icon-circle svg { width: 20px; height: 20px; color: var(--black); }
.connect-item span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  padding: 4.5rem 0 2rem;
  text-align: center;
  position: relative;
}
.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: var(--gold-bright);
  margin-bottom: 2rem;
  word-break: break-word;
}
.footer-quote {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  text-transform: uppercase;
  max-width: 40ch;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}
.footer-quote em { color: var(--blood-bright); font-style: italic; }
.footer-copy {
  font-size: 0.68rem;
  color: var(--cream-faint);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .about-grid, .release-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 340px; margin: 0 auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.videos { grid-template-columns: 1fr; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-art { order: -1; margin-bottom: 1rem; }
  .hero-title { transform: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; }
  .pillar:nth-child(3) { border-left: none; }
}

@media (max-width: 760px) {
  .nav-links, .header-icons { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    background: var(--charcoal);
    padding: 1.6rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .connect-grid { grid-template-columns: repeat(2, 1fr); }
  :root { --gap-section: 4.5rem; }
}

/* =========================================================
   Story / Bio section
   ========================================================= */
.story-wrap { max-width: 760px; }

.story-tagline {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--gold-bright);
  letter-spacing: 0.03em;
  font-style: italic;
  margin-bottom: 2.4rem;
}

.story-body p {
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}
.story-body p:last-child { margin-bottom: 0; }

/* =========================================================
   Section note (used by Albums / Song List)
   ========================================================= */
.section-note {
  text-align: center;
  color: var(--cream-faint);
  font-size: 0.85rem;
  max-width: 50ch;
  margin: -2.2rem auto 3rem;
}

/* =========================================================
   Albums grid
   ========================================================= */
.album-card { display: block; }

.album-cover {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 0.3s ease;
  overflow: hidden;
}
.album-card:hover .album-cover { border-color: var(--gold); }

.album-cover.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(178,53,120,0.3), transparent 60%),
    linear-gradient(155deg, #26142c, #120814 70%);
}
.album-cover.placeholder .placeholder-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.15;
  background: linear-gradient(180deg, #ffd6ee 0%, #ff5fa8 55%, #b23578 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-1.5deg);
}

.album-caption { padding-top: 0.9rem; text-align: center; }
.album-caption h4 {
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: var(--cream);
}

/* =========================================================
   Song list
   ========================================================= */
.song-list {
  columns: 3;
  column-gap: 2.6rem;
  max-width: 1180px;
  margin: 0 auto;
}

.song-row {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
  color: var(--cream-dim);
  font-size: 0.84rem;
  transition: color 0.25s ease;
}
.song-row:hover { color: var(--gold-bright); }

@media (max-width: 980px) {
  .song-list { columns: 2; }
}
@media (max-width: 600px) {
  .song-list { columns: 1; }
}

/* =========================================================
   Mini Player
   ========================================================= */
.mini-player {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: min(420px, calc(100% - 2rem));
  background: rgba(15, 12, 9, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-deep);
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
  padding: 0.7rem 0.9rem;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.mini-player.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.mini-player-art {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.mini-player-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.mini-player-title {
  font-size: 0.82rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-player-sub {
  font-size: 0.66rem;
  color: var(--cream-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-player-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.player-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: transparent;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.player-btn:hover { border-color: var(--gold); background: rgba(201,162,75,0.1); }
.player-btn svg { width: 15px; height: 15px; }
#playPauseBtn svg { width: 14px; height: 14px; }

.player-close {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold-deep);
  color: var(--cream-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.player-close:hover { color: var(--gold-bright); border-color: var(--gold); }
.player-close svg { width: 11px; height: 11px; }

.mini-player-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--line);
}
.mini-player-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transition: width 0.2s linear;
}

.player-sound-cue {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(10,8,6,0.92);
  border: none;
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.player-sound-cue svg { width: 16px; height: 16px; }
.player-sound-cue.hidden { display: none; }

@media (max-width: 480px) {
  .mini-player { bottom: 0.8rem; padding: 0.6rem 0.75rem; gap: 0.6rem; }
  .mini-player-sub { display: none; }
}

/* =========================================================
   Pay The Artist
   ========================================================= */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 640px;
  margin: 0 auto;
}

.pay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2.2rem 1.4rem;
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pay-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.pay-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-deep), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-icon svg { width: 22px; height: 22px; color: var(--black); }

.pay-card h4 {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.pay-card p {
  font-size: 0.74rem;
  color: var(--cream-faint);
  letter-spacing: 0.03em;
}

@media (max-width: 560px) {
  .pay-grid { grid-template-columns: 1fr; max-width: 320px; }
}
