:root {
  --bg: #15100c;
  --bg-2: #1c1511;
  --surface: #221a14;
  --surface-2: #2c221a;
  --line: rgba(243, 233, 216, 0.12);
  --line-strong: rgba(243, 233, 216, 0.24);
  --text: #f3e9d8;
  --muted: #bba88f;
  --accent: #e3a64a;
  --accent-soft: rgba(227, 166, 74, 0.14);
  --accent-ink: #1a120a;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 18px;
  --player-h: 168px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { font-size: 18px; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  background:
    radial-gradient(1000px 560px at 80% 0%, rgba(227, 166, 74, 0.12), transparent 62%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  padding-bottom: calc(var(--player-h) + env(safe-area-inset-bottom));
  overflow-x: clip;
}

button { font: inherit; color: inherit; cursor: pointer; }
button:focus-visible, input:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- Hero ---------- */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}
.band {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.band-sub {
  display: block;
  margin-top: 0.12em;
  font-size: 0.56em;
  color: var(--muted);
}
.band-sub em { color: var(--accent); font-style: italic; }
.play-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 30px 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(227, 166, 74, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.play-all:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(227, 166, 74, 0.32); }
.play-all svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- Record ---------- */
.record-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px;
}
.record {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 30%, rgba(255,255,255,0.06) 30.5% 31%, transparent 31.5% 62%, rgba(255,255,255,0.06) 62.5% 63%, transparent 63.5%),
    repeating-radial-gradient(circle at center, #302b27 0 1px, #161413 1px 3px);
  box-shadow:
    0 0 0 3px #3a342f,
    0 0 0 5px #0c0a09,
    0 28px 60px rgba(0, 0, 0, 0.6),
    0 0 110px rgba(227, 166, 74, 0.18);
  display: grid;
  place-items: center;
  animation: spin 3.6s linear infinite;
  animation-play-state: paused;
}
.record::after { /* light catching the grooves */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 20deg,
    transparent 0 8%, rgba(255, 240, 215, 0.2) 13%, transparent 20% 55%,
    rgba(255, 240, 215, 0.14) 61%, transparent 68%);
}
.record-label {
  position: relative;
  z-index: 1;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #0b0b0b 0 4%, transparent 4.5%),
    radial-gradient(circle, transparent 0 62%, rgba(0,0,0,0.12) 62.5% 64%, transparent 64.5%),
    var(--accent);
  color: var(--accent-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
.record-label span { font-family: var(--serif); font-size: clamp(1.4rem, 3.2vw, 2.1rem); transform: translateY(-0.55em); }
.record-label small { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; max-width: 80%; transform: translateY(0.9em); }
body.is-playing .record { animation-play-state: running; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Tonearm: swings onto the record while playing */
.tonearm {
  position: absolute;
  top: 2%;
  right: 4%;
  width: 22%;
  height: 58%;
  pointer-events: none;
  transform-origin: 70% 8%;
  transform: rotate(-14deg);
  transition: transform 0.9s cubic-bezier(.4,.1,.2,1);
  z-index: 2;
}
.tonearm::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d9d2c6, #6e6760 70%);
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}
.tonearm i {
  position: absolute;
  top: 17px;
  right: calc(16% + 13px);
  width: 8px;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, #8c857d, #e8e2d8 45%, #8c857d);
  transform-origin: top center;
  transform: rotate(12deg);
  box-shadow: 0 6px 12px rgba(0,0,0,0.45);
}
.tonearm i::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: -7px;
  width: 22px;
  height: 30px;
  border-radius: 4px;
  background: linear-gradient(#3a3531, #1e1b19);
  border-top: 3px solid #cfc8bd;
}
body.is-playing .tonearm { transform: rotate(8deg); }

/* ---------- Song grid ---------- */
main { max-width: 1180px; margin: 0 auto; padding: 0 24px 40px; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-bottom: 22px;
}
.section-head h2 { font-family: var(--serif); font-weight: 400; font-size: 2rem; margin: 0; }
.tip { margin: 0; color: var(--muted); font-size: 0.95rem; max-width: 52ch; }
.tip strong { color: var(--text); font-weight: 600; }

.songs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.song {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.song:hover { transform: translateY(-2px); }
.song.is-current {
  border-color: rgba(227, 166, 74, 0.55);
  background: linear-gradient(180deg, rgba(227,166,74,0.08), transparent 70%), var(--surface);
}

.song-head { display: flex; align-items: flex-start; gap: 16px; flex: 1; }
.song-play {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(227, 166, 74, 0.28);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.song-play:hover { transform: scale(1.05); background: #eeb45c; box-shadow: 0 10px 26px rgba(227, 166, 74, 0.36); }
.song-play .i-play { margin-left: 3px; }
.song-play.is-soon { background: var(--surface-2); color: var(--muted); box-shadow: none; opacity: 0.5; cursor: default; }
.song-play.is-soon:hover { transform: none; }
.soon-note { margin: 0; min-height: 44px; display: flex; align-items: center; color: var(--muted); font-size: 0.95rem; font-style: italic; }
.lv-play[hidden] { display: none; }
.song-play svg { width: 30px; height: 30px; fill: currentColor; }
.song-play .i-pause { display: none; }
.song.is-current .song-play { box-shadow: 0 0 0 5px rgba(227, 166, 74, 0.22), 0 8px 22px rgba(227, 166, 74, 0.3); }
.song.is-current.is-playing .song-play .i-play { display: none; }
.song.is-current.is-playing .song-play .i-pause { display: block; }

.song-meta { min-width: 0; padding-top: 2px; }
.song-num { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; color: var(--accent); }
.song-title { margin: 2px 0 0; font-family: var(--serif); font-weight: 400; font-size: 1.7rem; line-height: 1.15; }
.song-note { margin: 4px 0 0; color: var(--muted); font-size: 0.95rem; }
.now-badge {
  display: none;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.song.is-current.is-playing .now-badge { display: inline-flex; align-items: center; gap: 6px; }
.eq { display: inline-flex; gap: 2px; align-items: flex-end; height: 12px; }
.eq i { width: 3px; background: var(--accent); animation: eq 0.9s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: -0.3s; }
.eq i:nth-child(3) { animation-delay: -0.6s; }
@keyframes eq { 0%, 100% { height: 3px; } 50% { height: 12px; } }

/* Version switcher + chips */
.song-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.stepper {
  display: inline-flex;
  align-items: center;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
}
.step {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
}
.step:hover { background: var(--surface-2); color: var(--accent); }
.step svg { width: 18px; height: 18px; }
.step-label {
  min-width: 68px;
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.step-label small { font-weight: 500; font-size: 0.72rem; color: var(--muted); }
.step-star { color: var(--accent); font-size: 0.9em; }

.song-controls { flex-direction: column; align-items: stretch; gap: 6px; }
.controls-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.step:disabled { opacity: 0.3; cursor: default; background: transparent; color: var(--text); }
.step-label { flex-direction: column; align-items: center; gap: 5px; line-height: 1; }
.dots { display: inline-flex; gap: 4px; }
.dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }
.dots i.on { background: var(--accent); }

.version-tools { display: flex; align-items: center; gap: 4px; min-height: 36px; }
.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 10px;
  margin-left: -10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.tool-btn:hover { background: var(--surface-2); color: var(--text); }
.tool-btn svg { width: 16px; height: 16px; }
.tool-right { margin-left: auto; margin-right: -10px; }
.tool-note { font-size: 0.85rem; color: var(--muted); margin-right: 4px; }
.tool-note + .tool-btn { margin-left: 0; color: var(--accent); }

.chip {
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chip:hover { border-color: var(--line-strong); }
.fav-btn .star { color: var(--accent); font-size: 1.1em; }
.fav-btn.is-fav { background: var(--accent-soft); border-color: rgba(227, 166, 74, 0.45); color: var(--accent); }
.lyrics-btn {
  margin: 8px 0 0 -10px;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}
.lyrics-btn:hover { background: var(--accent-soft); }

/* ---------- Lyrics panel ---------- */
.lyrics-dialog {
  width: min(640px, calc(100% - 32px));
  max-height: min(80vh, 760px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.lyrics-dialog[open] { display: flex; flex-direction: column; }
.lyrics-dialog::backdrop { background: rgba(8, 6, 4, 0.72); backdrop-filter: blur(3px); }
.lyrics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.lyrics-head h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 1.8rem; line-height: 1.15; }
.lyrics-close {
  flex: none;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  font-weight: 600;
  font-size: 1rem;
}
.lyrics-close:hover { border-color: var(--accent); }
.lyrics-body { overflow-y: auto; padding: 24px; }
.lyrics-body p {
  margin: 0 0 1.1em;
  font-size: 1.2rem;
  line-height: 1.7;
}
.lyrics-body p:last-child { margin-bottom: 0; }
.lyr-label {
  margin: 1.6em 0 0.5em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.lyr-label:first-child { margin-top: 0; }
.lyr-spoken { font-style: italic; color: var(--muted); }

.dlg-eyebrow { margin: 0 0 4px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.lyrics-body .arch-help { margin: 0 0 16px; line-height: 1.5; color: var(--muted); font-size: 0.95rem; }
.arch-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.arch-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-2);
}
.arch-label { font-weight: 700; font-size: 1.05rem; margin-right: auto; }
.arch-list .chip svg { width: 14px; height: 14px; fill: currentColor; }
.arch-empty { color: var(--muted); justify-content: center; }

/* ---------- Lyrics page (full screen) ---------- */
html.lv-open { overflow: hidden; }
.lyrics-view {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  background:
    radial-gradient(900px 480px at 50% -8%, rgba(227, 166, 74, 0.16), transparent 62%),
    radial-gradient(600px 600px at 100% 100%, rgba(227, 166, 74, 0.05), transparent 60%),
    var(--bg);
}
.lyrics-view[open] { display: flex; flex-direction: column; animation: lv-in 0.35s ease both; }
.lyrics-view::backdrop { background: var(--bg); }
@keyframes lv-in { from { opacity: 0; transform: translateY(14px); } }

.lv-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  padding-top: max(14px, env(safe-area-inset-top));
}
.lv-play, .lv-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
}
.lv-play { border: 0; background: var(--accent); color: var(--accent-ink); padding-left: 16px; }
.lv-play:hover { background: #eeb45c; }
.lv-play svg { width: 22px; height: 22px; fill: currentColor; }
.lv-play .i-pause { display: none; }
.lyrics-view.is-playing .lv-play .i-play { display: none; }
.lyrics-view.is-playing .lv-play .i-pause { display: block; }
.lv-close { border: 1px solid var(--line-strong); background: rgba(34, 26, 20, 0.7); }
.lv-close:hover { border-color: var(--accent); }

.lv-scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.lv-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 24px 120px;
  text-align: center;
}
.lv-eyebrow {
  margin: 0 0 18px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.lv-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.lv-desc {
  max-width: 34ch;
  margin: 18px auto 0;
  font-family: "EB Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--muted);
}
.lv-desc:empty { display: none; }

.lv-ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 36px 0 44px; }
.lv-ornament span { width: 56px; height: 1px; background: linear-gradient(to var(--dir, right), transparent, rgba(227,166,74,0.6)); }
.lv-ornament span:last-child { --dir: left; }
.lv-ornament i, .lv-end i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #0b0b0b 0 12%, var(--accent) 13% 34%, transparent 35%),
    repeating-radial-gradient(circle, #2c2724 0 1px, #141211 1px 2.5px);
  box-shadow: 0 0 0 1px rgba(227,166,74,0.35);
}

.lv-lyrics {
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 2.8vw, 1.5rem);
  line-height: 1.62;
  color: #f6ecdc;
}
.lyr-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 2.6em 0 1em;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.lyr-label::before, .lyr-label::after { content: ""; width: 28px; height: 1px; background: rgba(227, 166, 74, 0.45); }
.lv-lyrics > .lyr-label:first-child { margin-top: 0; }
.lyr-stanza { margin: 0 0 1.2em; }
.lyr-stanza.is-chorus { color: #f3d9ae; }
.lyr-stanza.is-spoken { font-style: italic; color: var(--muted); }
.lv-end { display: flex; justify-content: center; margin-top: 56px; opacity: 0.8; }

@media (max-width: 760px) {
  .lv-bar { padding: 10px 14px; padding-top: max(10px, env(safe-area-inset-top)); }
  .lv-page { padding: 16px 20px 96px; }
  .lv-ornament { margin: 28px 0 34px; }
}
@media (prefers-reduced-motion: reduce) { .lyrics-view[open] { animation: none; } }

/* ---------- Player ---------- */
.player {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10;
  background: rgba(21, 16, 12, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  padding-bottom: env(safe-area-inset-bottom);
}
.player-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "info controls" "progress progress";
  gap: 10px 24px;
  align-items: center;
}
.p-info { grid-area: info; min-width: 0; }
.p-title { font-family: var(--serif); font-size: 1.35rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-version { color: var(--accent); font-size: 0.9rem; font-weight: 600; }
.p-controls { grid-area: controls; display: flex; align-items: center; gap: 8px; }
.p-btn {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 60px;
  min-height: 56px;
  padding: 4px 6px;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
}
.p-btn:hover { background: var(--surface-2); }
.p-btn svg { width: 26px; height: 26px; fill: currentColor; }
.p-main {
  width: 64px; height: 64px; min-width: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  justify-content: center;
}
.p-main:hover { background: #eeb45c; }
.p-main svg { width: 30px; height: 30px; }
.p-main .i-pause { display: none; }
body.is-playing .p-main .i-play { display: none; }
body.is-playing .p-main .i-pause { display: block; }

.p-progress { grid-area: progress; display: flex; align-items: center; gap: 12px; }
.p-time { font-variant-numeric: tabular-nums; font-size: 0.85rem; color: var(--muted); min-width: 3.2em; }
.p-time:last-child { text-align: right; }
#seek {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 28px;
  background: transparent;
  --pct: 0%;
}
#seek::-webkit-slider-runnable-track {
  height: 8px; border-radius: 999px;
  background: linear-gradient(to right, var(--accent) var(--pct), var(--surface-2) var(--pct));
}
#seek::-moz-range-track { height: 8px; border-radius: 999px; background: var(--surface-2); }
#seek::-moz-range-progress { height: 8px; border-radius: 999px; background: var(--accent); }
#seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; margin-top: -7px;
  border-radius: 50%; background: var(--text); border: 0;
}
#seek::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--text); border: 0; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--player-h) + 16px + env(safe-area-inset-bottom));
  transform: translate(-50%, 12px);
  max-width: calc(100% - 32px);
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.has-action.show { pointer-events: auto; }
.toast-action {
  margin-left: 10px;
  padding: 6px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--bg);
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Small screens ---------- */
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding: 24px 16px 36px; gap: 16px; }
  .record-wrap { order: -1; padding: 12px 0; }
  .record { width: min(260px, 72vw); }
  .record-label small { font-size: 0.42rem; }
  .band { margin-bottom: 26px; }
  .play-all { width: 100%; justify-content: center; }
  main { padding: 0 16px 32px; }
  .songs { grid-template-columns: 1fr; gap: 16px; }
  .song { padding: 18px 16px; }
  .song-head { gap: 14px; }
  .song-title { font-size: 1.45rem; }
  .player-inner { padding: 12px 16px 14px; gap: 6px 12px; }
  .p-title { font-size: 1.1rem; }
  .p-btn span { display: none; }
  .p-btn { min-width: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .record, .eq i { animation: none !important; }
  .tonearm { transition: none; }
}
