:root {
  color-scheme: dark;
  --bg: #000;
  --text: #fff;
  --muted: #b8b8b8;
  --line: #2a2a2a;
  --panel: #070707;
  --accent: #e50914;
  --accent-dark: #780007;
  --max: 440px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(140, 0, 8, 0.18), transparent 28%),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.08), transparent 24rem),
    #000;
  color: var(--text);
  font-family: Oswald, Impact, "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0;
}

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

.listen-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 18px max(20px, env(safe-area-inset-bottom));
}

.release-panel {
  width: min(100%, var(--max));
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.brand {
  margin: 0;
  font-size: clamp(2.85rem, 14vw, 4.8rem);
  font-weight: 700;
  line-height: 0.9;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.22), 0 0 38px rgba(229, 9, 20, 0.24);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.artwork {
  width: min(100%, 380px);
  aspect-ratio: 1;
  height: auto;
  margin: 4px 0 0;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.82), 0 0 0 1px rgba(229, 9, 20, 0.16);
}

.release-copy {
  display: grid;
  gap: 6px;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 12vw, 4.1rem);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.release-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 4.4vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-stack {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.cta {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, #fff, #d8d8d8);
  color: #000;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.cta:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(1px);
}

.cta-secondary {
  background: #0b0b0b;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.cta[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
}

@media (min-width: 760px) {
  .listen-page {
    padding: 38px 24px;
  }

  .release-panel {
    --max: 500px;
    gap: 16px;
  }

  .artwork {
    width: 410px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
