/* ============================================================
   MIDNIGHT FORGE RECORDS
   ============================================================ */

:root {
  --bg:        #0a0a0c;
  --bg-2:      #101014;
  --panel:     #16161b;
  --panel-2:   #1d1d24;
  --line:      #2a2a33;
  --line-hot:  #3a3a46;
  --text:      #e8e6e3;
  --text-dim:  #9a978f;
  --text-mute: #6b6862;
  --ember:     #ff6a1a;
  --ember-2:   #ff9d4d;
  --ember-dim: #7a3410;
  --steel:     #8fa3b8;
  --max:       1200px;
  --r:         4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
h1, h2, h3, .eyebrow, .nav a, .btn {
  font-family: "Oswald", "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 0.95; margin: 0; letter-spacing: 0.02em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.05; margin: 0 0 8px; }
h3 { font-size: 1rem; margin: 0; letter-spacing: 0.08em; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  color: var(--ember);
  margin: 0 0 12px;
}
.lede { color: var(--text-dim); max-width: 62ch; margin: 0; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark {
  width: 40px; height: 40px; flex: none; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,106,26,.28)); transition: .25s;
}
.brand:hover .brand-mark { filter: drop-shadow(0 0 14px rgba(255,106,26,.55)); }
.brand-text { display: flex; flex-direction: column; }
.brand b {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 1.05rem; font-weight: 700;
}
.brand span {
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--text-mute); text-transform: uppercase; margin-top: 4px;
}
.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  font-size: 0.76rem; letter-spacing: 0.16em; color: var(--text-dim);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: .18s;
}
.nav a:hover { color: var(--text); border-bottom-color: var(--ember); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ---------- hero ---------- */
.hero {
  position: relative; padding: 120px 0 90px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 90% at 50% 120%, rgba(255,106,26,0.16), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-top {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center; gap: 56px;
}
.hero-copy { flex: 1 1 auto; min-width: 0; }
.hero-logo {
  justify-self: center; width: clamp(200px, 22vw, 310px); height: auto;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,.6)) drop-shadow(0 0 34px rgba(255,106,26,.22));
  animation: heroGlow 5.5s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { filter: drop-shadow(0 14px 40px rgba(0,0,0,.6)) drop-shadow(0 0 30px rgba(255,106,26,.18)); }
  50%      { filter: drop-shadow(0 14px 40px rgba(0,0,0,.6)) drop-shadow(0 0 46px rgba(255,106,26,.4)); }
}
@media (prefers-reduced-motion: reduce) { .hero-logo { animation: none; } }
.hero h1 span { color: var(--ember); }
.hero .lede { margin-top: 22px; font-size: 1.06rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; font-size: 0.78rem; letter-spacing: 0.14em;
  border: 1px solid var(--line-hot); color: var(--text);
  background: var(--panel); border-radius: var(--r);
  cursor: pointer; transition: .18s;
}
.btn:hover { border-color: var(--ember); color: var(--ember-2); transform: translateY(-1px); }
.btn-hot {
  background: linear-gradient(180deg, var(--ember) 0%, #e2560f 100%);
  border-color: var(--ember); color: #fff;
}
.btn-hot:hover { color: #fff; filter: brightness(1.1); }

.stat-strip {
  display: flex; gap: 44px; flex-wrap: wrap; margin-top: 54px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.stat b {
  display: block; font-family: "Oswald", Impact, sans-serif;
  font-size: 2.1rem; line-height: 1; color: var(--ember);
}
.stat span {
  font-size: 0.66rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-mute);
}

/* ---------- sections ---------- */
section { padding: 84px 0; border-bottom: 1px solid var(--line); }
.sec-head { margin-bottom: 40px; }

/* ---------- roster ---------- */
.roster {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.artist-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: .2s; overflow: hidden;
}
.artist-card:hover { border-color: var(--line-hot); transform: translateY(-3px); }

.ac-art { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--panel-2); }
.ac-art img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.92) contrast(1.04); transition: .35s;
}
.artist-card:hover .ac-art img { transform: scale(1.045); filter: saturate(1.05) contrast(1.04); }
.ac-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,12,0) 45%, rgba(10,10,12,.55) 78%, var(--panel) 100%);
}
.ac-art-ph {
  height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 18px;
  background: repeating-linear-gradient(135deg, #17171d 0 8px, #131318 8px 16px);
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  letter-spacing: .1em; font-size: .82rem; color: var(--text-mute);
}
.ac-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  padding: 4px 9px; border-radius: 2px;
  background: rgba(10,10,12,.82); border: 1px solid rgba(29,185,84,.55);
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .56rem; letter-spacing: .18em; color: #1db954;
}
.ac-body {
  position: relative; padding: 22px 22px 22px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.ac-body::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--ember-dim); transition: .2s;
}
.artist-card:hover .ac-body::before { background: var(--ember); }
.ac-body .meta { margin-top: auto; }

.artist-card .genre {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 10px;
}
.artist-card .name {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: 1.32rem; letter-spacing: 0.03em; line-height: 1.1; margin-bottom: 10px;
}
.artist-card .tag { font-size: 0.86rem; color: var(--text-dim); line-height: 1.5; }
.artist-card .meta {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute);
}
.badge-dsp { color: var(--steel); }
.badge-dsp::before { content: "\25CF "; color: #1db954; }

/* ---------- releases ---------- */
.release-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.release {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; transition: .2s;
  display: flex; flex-direction: column;
}
.release:hover { border-color: var(--line-hot); transform: translateY(-3px); }
.cover {
  aspect-ratio: 1; width: 100%; object-fit: cover;
  background: var(--panel-2); border-bottom: 1px solid var(--line);
}
.cover-ph {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px; border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 120%, rgba(255,106,26,0.2), transparent 65%),
    repeating-linear-gradient(135deg, #17171d 0 8px, #131318 8px 16px);
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.78rem; color: var(--text-mute); line-height: 1.35;
}
.release-body { padding: 15px 15px 16px; flex: 1; display: flex; flex-direction: column; }
.release .r-artist {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 6px;
}
.release .r-title {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: 0.98rem; line-height: 1.15; letter-spacing: 0.02em; margin-bottom: 12px;
}
.release .r-foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding-top: 12px; border-top: 1px solid var(--line);
}
.r-price { font-family: "Oswald", Impact, sans-serif; font-size: 1.02rem; color: var(--text); }
.r-format {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute);
}
.buy {
  display: block; text-align: center; padding: 11px;
  background: var(--panel-2); border-top: 1px solid var(--line);
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: 0.68rem; letter-spacing: 0.16em; color: var(--text-dim); transition: .18s;
}
.buy:hover { background: var(--ember); color: #fff; }

/* ---------- artist page ---------- */
.artist-hero {
  padding: 74px 0 54px; border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 100% at 20% 110%, rgba(255,106,26,0.15), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.back-link {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 26px;
}
.back-link:hover { color: var(--ember); }
.artist-hero h1 { font-size: clamp(2.2rem, 6vw, 4.4rem); }
.artist-hero .genre-line {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 14px;
}
.artist-bio { max-width: 66ch; color: var(--text-dim); margin-top: 22px; font-size: 1.02rem; }

.dsp-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.dsp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border: 1px solid var(--line-hot);
  border-radius: var(--r); background: var(--panel);
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: 0.7rem; letter-spacing: 0.14em; color: var(--text-dim); transition: .18s;
}
.dsp:hover { border-color: var(--ember); color: var(--ember-2); }
.dsp.pending { opacity: 0.4; cursor: not-allowed; }
.dsp .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.dsp-spotify .dot { background: #1db954; }
.dsp-apple   .dot { background: #fc3c44; }
.dsp-youtube .dot { background: #ff0000; }
.dsp-amazon  .dot { background: #00a8e1; }
.dsp-merch   .dot { background: var(--ember); }
.dsp-watch   .dot { background: var(--steel); }
.dsp-listen  .dot { background: var(--ember-2); }
.dsp-merch:hover { border-color: var(--ember); color: var(--ember-2); }

.notice {
  margin-top: 26px; padding: 13px 18px; border-radius: var(--r);
  border: 1px dashed var(--line-hot); background: rgba(255,106,26,0.05);
  font-size: 0.82rem; color: var(--text-mute);
}

/* ---------- watch ---------- */
.video-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.video-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; transition: .2s;
}
.video-card:hover { border-color: var(--line-hot); }
.video-card iframe { width: 100%; aspect-ratio: 9/16; border: 0; display: block; }
.video-card .v-body { padding: 14px 16px; }
.empty-state {
  padding: 54px 30px; text-align: center;
  border: 1px dashed var(--line-hot); border-radius: var(--r);
  color: var(--text-mute); background: var(--bg-2);
}

/* ---------- footer ---------- */
.site-foot { padding: 54px 0 64px; color: var(--text-mute); font-size: 0.84rem; }
.foot-grid {
  display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: 22px;
}
.foot-grid a { color: var(--text-dim); }
.foot-grid a:hover { color: var(--ember); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px 24px 18px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .hero { padding: 74px 0 60px; }
  section { padding: 56px 0; }
  .stat-strip { gap: 30px; }
  .hero-top { grid-template-columns: 1fr; gap: 30px; justify-items: start; }
  .hero-copy { order: 2; }
  .hero-logo { order: 1; justify-self: start; }
  .hero-logo { width: min(200px, 52vw); align-self: center; }
  .brand-mark { width: 32px; height: 32px; }
  .brand { gap: 9px; }
  .brand b { font-size: .8rem; letter-spacing: .1em; }
  .brand span { font-size: .5rem; letter-spacing: .22em; margin-top: 3px; }
  .nav { top: 60px; }
  .head-inner { height: 60px; }
}

/* ============================================================
   PLAYER
   ============================================================ */

body.mfr-on { padding-bottom: 88px; }

.mfr-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  transform: translateY(110%); transition: transform .28s ease;
  background: rgba(13,13,17,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-hot);
  box-shadow: 0 -14px 40px rgba(0,0,0,.55);
}
.mfr-bar.open { transform: translateY(0); }
.mfr-inner {
  max-width: var(--max); margin: 0 auto; padding: 12px 24px;
  display: grid; grid-template-columns: minmax(150px,1fr) auto minmax(180px,2fr) auto;
  gap: 22px; align-items: center;
}

.mfr-now { display: flex; align-items: center; gap: 12px; min-width: 0; }
.mfr-art {
  width: 46px; height: 46px; flex: none; object-fit: cover;
  border-radius: 3px; border: 1px solid var(--line); background: var(--panel-2);
}
.mfr-meta { min-width: 0; }
.mfr-title {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .88rem; letter-spacing: .04em; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mfr-artist {
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ember); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.mfr-controls { display: flex; align-items: center; gap: 6px; }
.mfr-btn {
  background: none; border: 1px solid transparent; color: var(--text-dim);
  font-size: .8rem; cursor: pointer; padding: 7px 9px; border-radius: 3px;
  line-height: 1; transition: .16s;
}
.mfr-btn:hover { color: var(--text); border-color: var(--line-hot); }
.mfr-play {
  background: var(--ember); color: #fff; font-size: .9rem;
  padding: 10px 15px; border-color: var(--ember);
}
.mfr-play:hover { color: #fff; filter: brightness(1.12); border-color: var(--ember); }
.mfr-shuf.on { color: var(--ember); border-color: var(--ember); }

.mfr-seek { display: flex; align-items: center; gap: 10px; min-width: 0; }
.mfr-time { font-size: .66rem; color: var(--text-mute); font-variant-numeric: tabular-nums; flex: none; }

.mfr-range, .mfr-vol {
  -webkit-appearance: none; appearance: none; height: 4px; border-radius: 2px;
  background: var(--line-hot); outline: none; cursor: pointer;
}
.mfr-range { flex: 1; min-width: 0; }
.mfr-vol   { width: 82px; flex: none; }
.mfr-range::-webkit-slider-thumb, .mfr-vol::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ember); border: 0; cursor: pointer;
}
.mfr-range::-moz-range-thumb, .mfr-vol::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ember); border: 0; cursor: pointer;
}

.mfr-right { display: flex; align-items: center; gap: 12px; }
.mfr-buy {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .62rem; letter-spacing: .16em; color: var(--text-dim);
  border: 1px solid var(--line-hot); border-radius: 3px; padding: 7px 13px; transition: .16s;
}
.mfr-buy:hover { border-color: var(--ember); color: var(--ember-2); }
.mfr-close { font-size: 1.15rem; }

/* ---------- track list ---------- */
.track-list { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.tl-row {
  display: grid; grid-template-columns: 30px 44px 1fr auto; gap: 13px;
  align-items: center; padding: 9px 16px;
  border-bottom: 1px solid var(--line); cursor: pointer; transition: .14s;
  background: var(--panel);
}
.tl-row:last-child { border-bottom: 0; }
.tl-row:hover { background: var(--panel-2); }
.tl-n { font-size: .72rem; color: var(--text-mute); font-variant-numeric: tabular-nums; }
.tl-cover {
  position: relative; width: 44px; height: 44px; flex: none;
  border-radius: 3px; overflow: hidden;
  border: 1px solid var(--line); background: var(--panel-2);
}
.tl-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: .18s; }
.tl-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: .68rem; color: #fff; opacity: 0; transition: .16s;
  background: rgba(10,10,12,.62);
}
.tl-row:hover .tl-play { opacity: 1; }
.tl-row:hover .tl-cover img { transform: scale(1.07); }
.tl-title {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .84rem; letter-spacing: .03em; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tl-artist, .tl-station {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute);
}
.tl-row.playing { background: linear-gradient(90deg, rgba(255,106,26,.14), transparent 70%); }
.tl-row.playing .tl-n { visibility: hidden; }
.tl-row.playing .tl-play { opacity: 1; color: var(--ember); background: rgba(10,10,12,.45); }
.tl-row.playing .tl-cover { border-color: var(--ember); }
.tl-row.playing .tl-title { color: var(--ember-2); }
.tl-row.playing:not(.paused) .tl-play::after { content: ""; }

/* ---------- listen section ---------- */
.listen-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }

@media (max-width: 900px) {
  .mfr-inner { grid-template-columns: 1fr auto; gap: 12px 16px; padding: 10px 18px; }
  .mfr-seek  { grid-column: 1 / -1; order: 3; }
  .mfr-right { order: 2; }
  .mfr-vol   { display: none; }
  body.mfr-on { padding-bottom: 132px; }
  .tl-row { grid-template-columns: 24px 40px 1fr; }
  .tl-cover { width: 40px; height: 40px; }
  .tl-station, .tl-artist { display: none; }
}

/* ---------- station chips ---------- */
.station-chips { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .66rem; letter-spacing: .14em;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: var(--panel); border: 1px solid var(--line);
  color: var(--text-dim); transition: .16s;
}
.chip:hover { border-color: var(--line-hot); color: var(--text); }
.chip b { color: var(--text-mute); font-weight: 400; margin-left: 4px; }
.chip.on { background: rgba(255,106,26,.12); border-color: var(--ember); color: var(--ember-2); }
.chip.on b { color: var(--ember); }

/* ---------- store preview button ---------- */
.pv-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 9px 12px; cursor: pointer;
  background: var(--bg-2); border: 0; border-top: 1px solid var(--line);
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .64rem; letter-spacing: .16em; color: var(--text-mute);
  transition: .16s;
}
.pv-btn:hover { color: var(--ember-2); background: var(--panel-2); }
.pv-icon { font-size: .58rem; line-height: 1; }
.pv-btn.playing { color: var(--ember); background: rgba(255,106,26,.1); }
.pv-btn.playing .pv-icon { color: var(--ember); }
.pv-btn.loading { color: var(--text-mute); }
.pv-btn.error { color: #b5544a; cursor: default; }

/* ---------- streaming availability ---------- */
.streaming {
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
}
.streaming .eyebrow { margin-bottom: 16px; }
.dsp-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.dsp-logo {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--text-dim); transition: color .18s, opacity .18s; opacity: .82;
}
.dsp-logo:hover { opacity: 1; }
.dsp-logo svg { width: 26px; height: 26px; flex: none; }
.dsp-logo span {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .72rem; letter-spacing: .12em; white-space: nowrap;
}
.dsp-logo.spotify:hover { color: #1db954; }
.dsp-logo.apple:hover   { color: #fc3c44; }
.dsp-logo.youtube:hover { color: #ff0000; }
.dsp-logo.amazon:hover  { color: #00a8e1; }
@media (max-width: 760px) { .dsp-logos { gap: 20px; } .dsp-logo span { font-size: .66rem; } }

/* ---------- album-led radio ---------- */
.album-grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.album-card { position: relative; cursor: pointer; }
.album-art {
  position: relative; aspect-ratio: 1; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel-2);
  box-shadow: 0 10px 30px rgba(0,0,0,.45); transition: .2s;
}
.album-art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: .3s; }
.album-card:hover .album-art { border-color: var(--ember); box-shadow: 0 14px 40px rgba(0,0,0,.6); }
.album-card:hover .album-art img { transform: scale(1.03); }
.album-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(8,8,10,.42); opacity: 0; transition: .2s;
}
.album-card:hover .album-play, .album-card.playing .album-play { opacity: 1; }
.album-play span {
  width: 62px; height: 62px; border-radius: 50%; background: var(--ember);
  color: #fff; display: grid; place-items: center; font-size: 1.4rem;
  box-shadow: 0 6px 22px rgba(0,0,0,.5);
}
.album-body { padding: 13px 2px 0; }
.album-title {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .95rem; letter-spacing: .05em; color: var(--text); line-height: 1.25;
}
.album-artist {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ember); margin-top: 5px;
}
.album-meta {
  display: flex; align-items: center; gap: 12px; margin-top: 8px;
  font-size: .7rem; color: var(--text-mute);
}
.album-meta a { color: var(--text-dim); border-bottom: 1px solid var(--line-hot); }
.album-meta a:hover { color: var(--ember-2); border-color: var(--ember); }
.album-card.playing .album-title { color: var(--ember-2); }

/* ---------- streaming availability ---------- */
.streaming { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.streaming .eyebrow { margin-bottom: 14px; }
.dsp-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-dim); transition: color .18s;
}
.dsp-logo:hover { color: #1db954; }
.dsp-logo svg { width: 28px; height: 28px; flex: none; }
.dsp-logo span {
  font-family: "Oswald", Impact, sans-serif; text-transform: uppercase;
  font-size: .74rem; letter-spacing: .12em;
}

/* ---------- hero tagline ---------- */
.hero-tagline {
  margin: 16px 0 0;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(.82rem, 1.5vw, 1.02rem);
  letter-spacing: .2em;
  color: var(--ember-2);
}
@media (max-width: 760px) { .hero-tagline { letter-spacing: .14em; } }
