:root {
  --bg: #050505;
  --fg: #f1f1ec;
  --muted: #858580;
  --line: #292927;
  --accent: #b7ff00;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--fg); font-family: Arial, Helvetica, sans-serif; }
body { min-height: 100vh; }
a { color: inherit; text-decoration: none; }
.page { min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto auto; padding: 22px; }
.header, .footer, .meta { display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.wordmark { font-size: clamp(42px, 9vw, 124px); line-height: .82; font-weight: 800; letter-spacing: -.065em; }
.status { color: var(--accent); white-space: nowrap; }
.player { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 24px; padding: clamp(44px, 8vw, 100px) 0; }
.play { width: clamp(78px, 10vw, 120px); height: clamp(78px, 10vw, 120px); border-radius: 50%; border: 1px solid var(--fg); background: transparent; color: var(--fg); font-size: 26px; cursor: pointer; transition: .18s ease; }
.play:hover { background: var(--fg); color: var(--bg); }
.eyebrow { color: var(--muted); letter-spacing: .16em; font-size: 10px; margin-bottom: 12px; }
.title { font-size: clamp(27px, 5vw, 68px); letter-spacing: -.04em; line-height: .95; }
.subtitle { color: var(--muted); font-size: clamp(12px, 1.4vw, 18px); letter-spacing: .09em; margin-top: 10px; }
.timeline { display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; gap: 12px; margin-top: 34px; font-size: 10px; color: var(--muted); }
input[type="range"] { width: 100%; accent-color: var(--accent); cursor: pointer; }
.meta { padding: 18px 0 46px; color: var(--muted); }
.footer { border-top: 1px solid var(--line); padding-top: 16px; color: var(--muted); }
.footer a:hover { color: var(--fg); }
@media (max-width: 680px) {
  .page { padding: 16px; }
  .header { align-items: flex-start; gap: 16px; }
  .status { padding-top: 4px; font-size: 9px; }
  .player { grid-template-columns: 1fr; align-content: center; gap: 24px; padding: 48px 0; }
  .play { width: 76px; height: 76px; }
  .meta { gap: 12px; flex-wrap: wrap; padding-bottom: 36px; }
  .footer { gap: 12px; flex-wrap: wrap; }
}
