:root {
  color-scheme: dark;
  --ink: #08090d;
  --wine: #210711;
  --wine-soft: rgba(78, 18, 35, 0.82);
  --cream: #fff9bf;
  --paper: #fff9ef;
  --coral: #ee7658;
  --blue: #78d7ff;
  --line: rgba(255, 249, 191, 0.3);
  --shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.48);
  --font-sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  min-height: 100dvh;
  background: var(--ink);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(33, 7, 17, 0.96), rgba(8, 9, 13, 0.74) 52%, rgba(3, 6, 10, 0.96)),
    var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 13, 0.94);
  color: var(--paper);
  transform: translateY(-220%);
}

.skip-link:focus {
  transform: translateY(0);
}

.mouthfull-ad-page,
.mouthfull-ad-skip-link {
  display: none;
}

html.is-mouthfull-ad-view .mouthfull-page,
html.is-mouthfull-ad-view .release-skip-link,
html.is-mouthfull-ad-view .site-footer {
  display: none;
}

html.is-mouthfull-ad-view .mouthfull-ad-page,
html.is-mouthfull-ad-view .mouthfull-ad-skip-link {
  display: block;
}

.mouthfull-page {
  min-height: 100vh;
  min-height: 100dvh;
}

.release-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  padding:
    max(1rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  isolation: isolate;
}

.release-backdrop,
.release-layout {
  grid-area: 1 / 1;
}

.release-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  place-items: center;
  opacity: 0.9;
}

.release-backdrop picture {
  display: block;
  width: min(100%, calc(100vh - 2rem));
  width: min(100%, calc(100dvh - 2rem));
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  aspect-ratio: 1;
}

.release-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.08) saturate(1.1) contrast(1.02);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.release-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.release-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.76), rgba(33, 7, 17, 0.46) 34%, rgba(33, 7, 17, 0.08) 66%, rgba(8, 9, 13, 0.24)),
    linear-gradient(180deg, rgba(8, 9, 13, 0.02), rgba(8, 9, 13, 0.34));
}

.release-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
  justify-self: center;
  align-items: center;
  width: min(100%, 100vmin);
  margin: 0 auto clamp(2.1rem, 7.5vh, 4.25rem);
}

.release-info {
  display: grid;
  justify-self: center;
  justify-items: start;
  gap: clamp(1.35rem, 3vw, 2rem);
  width: min(92vmin, 54rem, 100%);
  min-width: 0;
}

.release-copy {
  justify-self: center;
  width: 100%;
  max-width: 36rem;
  text-align: left;
  text-shadow: 0 0.45rem 1.6rem rgba(0, 0, 0, 0.76);
}

.release-kicker,
.release-artist {
  font-weight: 850;
  line-height: 1.2;
}

.release-kicker {
  margin: 0 0 0.4rem;
  color: var(--coral);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  text-transform: uppercase;
}

.release-artist {
  margin: 0 0 0.7rem;
  color: var(--cream);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.release-copy h1 {
  max-width: 9ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(4rem, 11vw, 8.25rem);
  line-height: 0.82;
}

.release-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: clamp(0.52rem, 1.4vw, 0.85rem);
  min-width: 0;
}

.release-share-button {
  display: grid;
  flex: 0 0 auto;
  width: clamp(2.45rem, 5vw, 3.1rem);
  height: clamp(2.45rem, 5vw, 3.1rem);
  padding: 0;
  border: 1px solid rgba(255, 249, 191, 0.42);
  border-radius: 50%;
  margin-bottom: clamp(0.12rem, 0.7vw, 0.35rem);
  background: rgba(8, 9, 13, 0.52);
  box-shadow:
    inset 0 0 1.2rem rgba(255, 249, 191, 0.045),
    0 0.7rem 1.8rem rgba(0, 0, 0, 0.22);
  color: var(--cream);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.release-share-button:not(.is-share-used) {
  border-color: rgba(255, 249, 191, 0.64);
}

.release-share-button svg {
  width: 1.35rem;
  height: 1.35rem;
}

.release-share-button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.72;
}

.release-share-button:hover,
.release-share-button:focus-visible {
  outline: none;
  border-color: rgba(255, 249, 191, 0.84);
  background: var(--wine-soft);
  box-shadow:
    0 0.8rem 2.4rem rgba(0, 0, 0, 0.3),
    0 0 1.25rem rgba(120, 215, 255, 0.2);
  color: var(--paper);
  transform: translateY(-1px);
}

.release-share-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.release-share-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.release-date {
  display: grid;
  gap: 0.28rem;
  margin: clamp(1rem, 2vw, 1.4rem) 0 0;
}

.release-date span {
  color: var(--coral);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.release-date time {
  color: var(--cream);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 850;
  line-height: 1;
}

.release-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  width: 100%;
}

.release-action-block {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.62rem;
  min-height: 7.2rem;
  min-width: 0;
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 13, 0.52);
  box-shadow:
    0 0.7rem 2rem rgba(0, 0, 0, 0.2),
    inset 0 0 1.4rem rgba(255, 249, 191, 0.035);
  backdrop-filter: blur(8px);
  text-align: center;
}

.release-action-block h2 {
  margin: 0;
  color: var(--coral);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, 3.1rem);
  justify-content: center;
  gap: 0.62rem;
  width: fit-content;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  min-height: 3.1rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.48);
  box-shadow: inset 0 0 1.2rem rgba(255, 249, 191, 0.04);
  color: var(--paper);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.social-link-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.social-link:hover,
.social-link:focus-visible {
  outline: none;
  border-color: rgba(255, 249, 191, 0.76);
  background: var(--wine-soft);
  box-shadow:
    0 0.8rem 2.4rem rgba(0, 0, 0, 0.28),
    0 0 1.2rem rgba(120, 215, 255, 0.18);
  transform: translateY(-1px);
}

.brand-logo {
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.preview-player {
  display: grid;
  grid-template-columns: 2.55rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.58rem;
  width: min(100%, 13.6rem);
  min-width: 0;
}

.voice-note-play {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid rgba(255, 249, 191, 0.4);
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  cursor: pointer;
  place-items: center;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.voice-note-play:hover,
.voice-note-play:focus-visible {
  outline: none;
  box-shadow:
    0 0.7rem 1.4rem rgba(0, 0, 0, 0.24),
    0 0 1.1rem rgba(120, 215, 255, 0.24);
  transform: translateY(-1px);
}

.voice-note-play svg {
  width: 1.22rem;
  height: 1.22rem;
  fill: currentColor;
}

.voice-pause-icon,
.preview-block.is-playing .voice-play-icon {
  display: none;
}

.preview-block.is-playing .voice-pause-icon {
  display: block;
}

.voice-waveform {
  display: flex;
  align-items: center;
  gap: 0.13rem;
  min-width: 0;
  height: 2.1rem;
  overflow: hidden;
}

.voice-waveform span {
  flex: 1 1 0.16rem;
  max-width: 0.32rem;
  height: var(--bar-height);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 249, 191, 0.98), rgba(238, 118, 88, 0.68));
}

.preview-block.is-playing .voice-waveform span {
  animation: waveform-listen 1.05s ease-in-out infinite;
}

.preview-block.is-playing .voice-waveform span:nth-child(3n + 1) {
  animation-delay: 0.16s;
}

.preview-block.is-playing .voice-waveform span:nth-child(3n + 2) {
  animation-delay: 0.32s;
}

.voice-note-duration {
  color: rgba(255, 249, 239, 0.58);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  line-height: 1;
}

.voice-note-audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.listen-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3.1rem, 3.1rem));
  justify-content: center;
  gap: 0.42rem;
  width: min(100%, 14.1rem);
}

.listen-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  min-height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(255, 249, 191, 0.34);
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.44);
  box-shadow: inset 0 0 1.2rem rgba(255, 249, 191, 0.04);
  color: var(--cream);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.listen-link[hidden] {
  display: none;
}

.listen-link:hover,
.listen-link:focus-visible {
  outline: none;
  border-color: rgba(255, 249, 191, 0.76);
  background: var(--wine-soft);
  box-shadow:
    0 0.8rem 2.4rem rgba(0, 0, 0, 0.28),
    0 0 1.2rem rgba(120, 215, 255, 0.18);
  transform: translateY(-1px);
}

.listen-logo {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.36rem;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.listen-logo[src$="spotify-primary-green.png"] {
  border-radius: 50%;
}

.mouthfull-ad-page {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.12), rgba(33, 7, 17, 0.8) 58%, rgba(8, 9, 13, 0.96)),
    var(--ink);
  color: var(--paper);
}

.mouthfull-ad-hero {
  display: grid;
  align-items: start;
  min-height: 100vh;
  min-height: 100svh;
  padding:
    max(0.85rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1.15rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.08), rgba(8, 9, 13, 0.34) 48%, rgba(8, 9, 13, 0.82)),
    var(--ink);
}

.mouthfull-ad-shell {
  display: grid;
  justify-items: center;
  gap: clamp(0.72rem, 2.2vh, 1.05rem);
  width: min(100%, 28rem);
  margin: 0 auto;
  text-align: center;
}

.mouthfull-ad-cover {
  display: block;
  width: min(72vw, 17.5rem);
  aspect-ratio: 1;
  filter: drop-shadow(0 1.1rem 2.8rem rgba(0, 0, 0, 0.5));
}

.mouthfull-ad-cover img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 249, 191, 0.26);
  border-radius: 8px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.mouthfull-ad-cta {
  display: grid;
  justify-items: center;
  gap: 0.62rem;
  width: 100%;
}

.mouthfull-ad-spotify-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 23rem);
  min-height: 3.35rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 249, 191, 0.72);
  border-radius: 8px;
  background: var(--cream);
  box-shadow:
    0 0.95rem 2.2rem rgba(0, 0, 0, 0.34),
    0 0 1.45rem rgba(120, 215, 255, 0.15);
  color: var(--wine);
  font-size: clamp(1rem, 4.3vw, 1.18rem);
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mouthfull-ad-spotify-button:hover,
.mouthfull-ad-spotify-button:focus-visible {
  outline: none;
  box-shadow:
    0 1.05rem 2.5rem rgba(0, 0, 0, 0.38),
    0 0 1.7rem rgba(120, 215, 255, 0.24);
  transform: translateY(-1px);
}

.mouthfull-ad-apple-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: min(100%, 23rem);
  min-height: 3.18rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid rgba(255, 249, 191, 0.36);
  border-radius: 8px;
  background: rgba(8, 9, 13, 0.5);
  box-shadow: inset 0 0 1.4rem rgba(255, 249, 191, 0.045);
  color: var(--paper);
  font-size: clamp(0.96rem, 4vw, 1.1rem);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

html.is-mouthfull-spotify-apple-view .mouthfull-ad-apple-button {
  display: inline-flex;
}

.mouthfull-ad-apple-button:hover,
.mouthfull-ad-apple-button:focus-visible {
  outline: none;
  border-color: rgba(255, 249, 191, 0.76);
  background: var(--wine-soft);
  box-shadow:
    0 0.8rem 2rem rgba(0, 0, 0, 0.26),
    0 0 1.2rem rgba(120, 215, 255, 0.18);
  transform: translateY(-1px);
}

.mouthfull-ad-other-platforms {
  width: 100%;
  color: rgba(255, 249, 239, 0.72);
}

.mouthfull-ad-other-platforms summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  color: rgba(255, 249, 191, 0.74);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.1;
  list-style: none;
}

.mouthfull-ad-other-platforms summary::-webkit-details-marker {
  display: none;
}

.mouthfull-ad-other-platforms summary:hover,
.mouthfull-ad-other-platforms summary:focus-visible {
  outline: none;
  color: var(--cream);
  background: rgba(8, 9, 13, 0.32);
}

.mouthfull-ad-platform-links {
  display: grid;
  grid-template-columns: repeat(4, 2.85rem);
  justify-content: center;
  gap: 0.46rem;
  width: min(100%, 14rem);
  margin: 0.4rem auto 0;
}

.mouthfull-ad-platform-links .listen-link {
  width: 2.85rem;
  min-height: 2.85rem;
}

.mouthfull-ad-platform-links .listen-logo {
  width: 1.62rem;
  height: 1.62rem;
}

html.is-mouthfull-spotify-apple-view [data-mouthfull-ad-platform-apple] {
  display: none;
}

.mouthfull-ad-section {
  display: grid;
  justify-items: center;
  gap: 0.72rem;
  width: 100%;
  padding-top: 0.92rem;
  border-top: 1px solid rgba(255, 249, 191, 0.18);
}

.mouthfull-ad-section h2 {
  margin: 0;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.mouthfull-ad-preview .preview-player {
  width: min(100%, 18rem);
  padding: 0.6rem 0.72rem;
  border: 1px solid rgba(255, 249, 191, 0.24);
  border-radius: 8px;
  background: rgba(8, 9, 13, 0.42);
  box-shadow:
    0 0.7rem 2rem rgba(0, 0, 0, 0.2),
    inset 0 0 1.4rem rgba(255, 249, 191, 0.035);
}

.mouthfull-ad-details dl {
  display: grid;
  gap: 0.46rem;
  width: min(100%, 22rem);
  margin: 0;
}

.mouthfull-ad-details dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.mouthfull-ad-details dt,
.mouthfull-ad-details dd {
  margin: 0;
  line-height: 1.2;
}

.mouthfull-ad-details dt {
  color: rgba(255, 249, 239, 0.54);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mouthfull-ad-details dd {
  color: rgba(255, 249, 239, 0.88);
  font-size: 0.98rem;
  font-weight: 850;
  text-align: right;
}

.mouthfull-ad-lyrics-button {
  appearance: none;
  min-height: 2.55rem;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(255, 249, 191, 0.34);
  border-radius: 8px;
  background: rgba(33, 7, 17, 0.74);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.mouthfull-ad-lyrics-button[hidden] {
  display: none;
}

.mouthfull-ad-lyrics-button:hover,
.mouthfull-ad-lyrics-button:focus-visible {
  outline: none;
  border-color: rgba(255, 249, 191, 0.76);
  box-shadow:
    0 0.7rem 1.6rem rgba(0, 0, 0, 0.26),
    0 0 1.2rem rgba(120, 215, 255, 0.18);
}

.mouthfull-ad-follow {
  padding-bottom: 0.15rem;
}

@media (max-width: 34rem) and (max-height: 43rem) {
  .mouthfull-ad-hero {
    padding-top: max(0.62rem, env(safe-area-inset-top));
  }

  .mouthfull-ad-shell {
    gap: 0.58rem;
  }

  .mouthfull-ad-cover {
    width: min(58vw, 12.8rem);
  }

  .mouthfull-ad-spotify-button,
  .mouthfull-ad-apple-button {
    min-height: 3.05rem;
  }
}

@media (min-width: 58rem) {
  .mouthfull-ad-hero {
    align-items: center;
    padding:
      max(1.5rem, env(safe-area-inset-top))
      max(1.4rem, env(safe-area-inset-right))
      max(1.5rem, env(safe-area-inset-bottom))
      max(1.4rem, env(safe-area-inset-left));
    background:
      linear-gradient(90deg, rgba(33, 7, 17, 0.9), rgba(8, 9, 13, 0.58) 50%, rgba(8, 9, 13, 0.94)),
      var(--ink);
  }

  .mouthfull-ad-shell {
    width: min(100%, 33rem);
    gap: 1.05rem;
  }

  .mouthfull-ad-cover {
    width: min(38vw, 20.5rem);
  }

}

.release-rewards {
  display: grid;
  gap: 0.5rem;
  width: 100%;
}

.release-rewards[hidden] {
  display: none;
}

.release-reward {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.25rem, 1vw, 0.48rem);
  width: 100%;
  min-width: 0;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(78, 18, 35, 0.94);
  border-radius: 8px;
  background: rgba(8, 9, 13, 0.58);
  box-shadow:
    0 0.7rem 2rem rgba(0, 0, 0, 0.2),
    inset 0 0 1.4rem rgba(238, 118, 88, 0.07);
  backdrop-filter: blur(8px);
}

.release-reward[hidden] {
  display: none;
}

.release-reward p {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--coral);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 850;
  line-height: 1.2;
}

.release-reward-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  flex-wrap: wrap;
  gap: clamp(0.15rem, 0.8vw, 0.35rem);
  min-width: 0;
}

.release-reward-button {
  appearance: none;
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 5.8rem;
  height: 5.25rem;
  padding: 0.7rem;
  border: 0;
  background: transparent;
  color: #8a1730;
  cursor: pointer;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 0.92;
  text-align: center;
  transition:
    filter 180ms ease,
    transform 180ms ease;
  filter: drop-shadow(0 0.55rem 1rem rgba(0, 0, 0, 0.28));
}

.release-reward-button-lyrics {
  color: #075468;
}

.release-reward-heart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.release-reward-button span {
  position: relative;
  z-index: 1;
  max-width: 3.8rem;
  transform: translateY(-0.18rem) rotate(-5deg);
}

.release-reward-button:hover,
.release-reward-button:focus-visible {
  outline: none;
  filter:
    drop-shadow(0 0.72rem 1.15rem rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 0.75rem rgba(120, 215, 255, 0.2));
  transform: translateY(-1px);
}

.wallpaper-viewer {
  position: fixed;
  inset: 0;
  z-index: 42;
  display: grid;
  align-items: center;
  justify-items: center;
  padding:
    max(1.2rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1.2rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 38%, rgba(238, 118, 88, 0.18), transparent 34%),
    rgba(8, 9, 13, 0.95);
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wallpaper-viewer[hidden] {
  display: none;
}

.wallpaper-viewer.is-visible {
  opacity: 1;
  transform: scale(1);
}

.has-wallpaper-viewer-open {
  overflow: hidden;
}

.wallpaper-viewer-stage {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  width: min(90vw, 25rem);
  max-height: calc(100dvh - 2.4rem);
}

.wallpaper-viewer-image {
  display: block;
  width: min(100%, 23rem);
  max-height: calc(100dvh - 7.5rem);
  border: 1px solid rgba(255, 249, 191, 0.32);
  border-radius: 8px;
  object-fit: contain;
  box-shadow:
    0 1.6rem 4.2rem rgba(0, 0, 0, 0.62),
    0 0 4rem rgba(238, 118, 88, 0.14);
  -webkit-user-drag: none;
  user-select: none;
}

.image-viewer-close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 1;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid rgba(255, 249, 191, 0.34);
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.68);
  color: var(--paper);
  cursor: pointer;
  place-items: center;
}

.image-viewer-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.image-viewer-close path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.25;
}

.image-viewer-close:hover,
.image-viewer-close:focus-visible {
  outline: none;
  border-color: rgba(255, 249, 191, 0.76);
  box-shadow:
    0 0.7rem 1.5rem rgba(0, 0, 0, 0.32),
    0 0 1.4rem rgba(120, 215, 255, 0.2);
}

.wallpaper-save-button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 23rem);
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 249, 191, 0.34);
  border-radius: 8px;
  background: rgba(33, 7, 17, 0.84);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.wallpaper-save-button svg {
  width: 1.2rem;
  height: 1.2rem;
}

.wallpaper-save-button path {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.wallpaper-save-button:hover,
.wallpaper-save-button:focus-visible {
  outline: none;
  border-color: rgba(255, 249, 191, 0.76);
  box-shadow:
    0 0.9rem 2rem rgba(0, 0, 0, 0.28),
    0 0 1.4rem rgba(120, 215, 255, 0.2);
}

.wallpaper-save-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.lyrics-viewer {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  align-items: center;
  justify-items: center;
  padding:
    max(1.2rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1.2rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 34%, rgba(120, 215, 255, 0.2), transparent 34%),
    rgba(8, 9, 13, 0.95);
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lyrics-viewer[hidden] {
  display: none;
}

.lyrics-viewer.is-visible {
  opacity: 1;
  transform: scale(1);
}

.has-lyrics-viewer-open {
  overflow: hidden;
}

.lyrics-sheet {
  display: flex;
  flex-direction: column;
  width: min(90vw, 27rem);
  max-height: min(84dvh, 48rem);
  border: 1px solid rgba(255, 249, 191, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(33, 7, 17, 0.98), rgba(8, 9, 13, 0.98)),
    var(--wine);
  box-shadow:
    0 1.8rem 4.8rem rgba(0, 0, 0, 0.66),
    0 0 3rem rgba(120, 215, 255, 0.16);
}

.lyrics-sheet-header {
  display: grid;
  gap: 0.32rem;
  padding: 1rem 1rem 0.9rem;
  border-bottom: 1px solid rgba(255, 249, 191, 0.16);
  background: rgba(8, 9, 13, 0.32);
}

.lyrics-sheet-header p,
.lyrics-sheet-header h2 {
  margin: 0;
}

.lyrics-sheet-header p {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lyrics-sheet-header h2 {
  color: var(--paper);
  font-size: clamp(2.2rem, 12vw, 4rem);
  line-height: 0.92;
}

.lyrics-text {
  min-height: 0;
  margin: 0;
  padding: 1rem;
  overflow: auto;
  color: rgba(255, 249, 239, 0.88);
  cursor: default;
  font: 650 0.96rem/1.58 var(--font-sans);
  white-space: pre-wrap;
  -webkit-user-select: none;
  user-select: none;
}

.lyrics-viewer-close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 1;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid rgba(255, 249, 191, 0.34);
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.68);
  color: var(--paper);
  cursor: pointer;
  place-items: center;
}

.lyrics-viewer-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lyrics-viewer-close path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.25;
}

.lyrics-viewer-close:hover,
.lyrics-viewer-close:focus-visible {
  outline: none;
  border-color: rgba(255, 249, 191, 0.76);
  box-shadow:
    0 0.7rem 1.5rem rgba(0, 0, 0, 0.32),
    0 0 1.4rem rgba(120, 215, 255, 0.2);
}

.site-footer {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1rem 1.1rem;
  background: var(--ink);
  color: rgba(255, 249, 239, 0.5);
  font-size: 0.78rem;
  font-weight: 800;
  justify-items: center;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.release-footer-nav {
  display: grid;
  justify-items: center;
  text-align: center;
}

.release-footer-nav ul {
  display: inline-grid;
  grid-template-columns: auto max-content max-content;
  column-gap: 0.28rem;
  row-gap: 0.18rem;
  justify-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.release-footer-nav li {
  display: contents;
}

.release-footer-nav a,
.release-footer-nav span[aria-current="page"] {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  align-items: baseline;
}

.release-footer-nav span[aria-current="page"] {
  color: rgba(255, 249, 239, 0.44);
}

.release-footer-icon {
  display: inline-block;
  flex: 0 0 1em;
  grid-column: 1;
  width: 1em;
  height: 1em;
  object-fit: contain;
  transform: translateY(0.12em);
}

.release-footer-title {
  grid-column: 2;
  line-height: 1.1;
}

.release-footer-date {
  grid-column: 3;
  color: rgba(255, 249, 239, 0.38);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.site-footer a {
  color: rgba(255, 249, 191, 0.72);
  text-decoration: none;
}

.cover-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.cover-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 1.4rem;
}

.cover-credit-logo {
  width: 1.25rem;
  height: 1.25rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cream);
  outline: none;
}

@media (min-width: 44rem) {
  .site-footer {
    grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
    align-items: center;
  }

  .site-footer > p {
    grid-column: 2;
  }

  .release-footer-nav {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: start;
    justify-items: start;
    text-align: left;
  }
}

@keyframes waveform-listen {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1.18);
  }
}

@media (min-width: 58rem) {
  .release-hero {
    grid-template-columns: minmax(0, min(48vw, calc(100vh - 2rem))) minmax(22rem, 32rem);
    gap: clamp(1.2rem, 3vw, 2.8rem);
    justify-content: center;
    align-items: center;
    padding:
      max(1rem, env(safe-area-inset-top))
      max(clamp(1rem, 2.8vw, 2.4rem), env(safe-area-inset-right))
      max(1rem, env(safe-area-inset-bottom))
      max(clamp(1rem, 2.8vw, 2.4rem), env(safe-area-inset-left));
    background:
      linear-gradient(90deg, rgba(33, 7, 17, 0.88), rgba(8, 9, 13, 0.56) 48%, rgba(8, 9, 13, 0.95)),
      var(--ink);
  }

  .release-backdrop,
  .release-layout {
    grid-area: auto;
  }

  .release-backdrop {
    position: relative;
    z-index: 0;
    width: 100%;
    aspect-ratio: 1;
    opacity: 1;
    place-self: center end;
  }

  .release-backdrop picture {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .release-backdrop img {
    object-fit: contain;
    object-position: center;
  }

  .release-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 9, 13, 0.08), rgba(8, 9, 13, 0.16) 44%, rgba(8, 9, 13, 0.54)),
      linear-gradient(180deg, rgba(8, 9, 13, 0.04), rgba(8, 9, 13, 0.28));
  }

  .release-layout {
    align-self: center;
    justify-self: start;
    width: 100%;
    margin: 0;
  }

  .release-info {
    justify-self: stretch;
    width: 100%;
    gap: clamp(0.85rem, 2.3vh, 1.2rem);
  }

  .release-copy {
    justify-self: start;
    max-width: 26rem;
  }

  .release-kicker {
    margin-bottom: 0.3rem;
  }

  .release-artist {
    margin-bottom: 0.58rem;
  }

  .release-copy h1 {
    font-size: clamp(3.85rem, 9.8vh, 5.35rem);
  }

  .release-date {
    display: none;
  }

  .release-actions {
    gap: 0.55rem;
  }

  .release-action-listen {
    order: 1;
  }

  .release-action-preview {
    order: 2;
  }

  .release-action-follow {
    order: 3;
  }

  .release-action-block {
    min-height: 6.25rem;
    padding: 0.62rem;
  }

  .release-action-block h2 {
    font-size: 0.74rem;
  }

  .social-links {
    grid-template-columns: repeat(3, 2.65rem);
    gap: 0.38rem;
  }

  .social-link,
  .listen-link {
    width: 2.65rem;
    min-height: 2.65rem;
  }

  .listen-links {
    grid-template-columns: repeat(3, 2.65rem);
    gap: 0.32rem;
    width: fit-content;
    max-width: 100%;
  }

  .brand-logo,
  .listen-logo {
    width: 1.58rem;
    height: 1.58rem;
  }

  .preview-player {
    grid-template-columns: 2.15rem minmax(0, 1fr) auto;
    gap: 0.42rem;
  }

  .voice-note-play {
    width: 2.15rem;
    height: 2.15rem;
  }

  .voice-waveform {
    height: 1.58rem;
  }
}

@media (max-width: 57.99rem) {
  .release-hero {
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: stretch;
    overflow: visible;
    padding:
      max(1rem, env(safe-area-inset-top))
      max(1rem, env(safe-area-inset-right))
      max(1rem, env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-left));
    background:
      linear-gradient(180deg, rgba(8, 9, 13, 0.18), rgba(33, 7, 17, 0.78) 54%, rgba(8, 9, 13, 0.94)),
      var(--ink);
  }

  .release-backdrop {
    position: relative;
    z-index: 0;
    display: grid;
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    opacity: 1;
    place-items: center;
  }

  .release-backdrop picture {
    width: 100%;
    height: auto;
    max-height: 100%;
    aspect-ratio: 1;
  }

  .release-backdrop img {
    height: auto;
    max-height: 100%;
    object-position: center bottom;
  }

  .release-hero::before {
    background:
      linear-gradient(180deg, rgba(8, 9, 13, 0.08), rgba(8, 9, 13, 0) 48%, rgba(8, 9, 13, 0.36));
  }

  .release-layout {
    grid-area: 2 / 1;
    align-self: stretch;
    align-content: start;
    width: min(100%, 100vmin);
    margin: 0;
    padding-top: clamp(0.85rem, 3vh, 1.35rem);
  }

  .release-info {
    width: min(88vmin, 30rem, 100%);
    gap: clamp(0.9rem, 2.4vh, 1.25rem);
  }

  .release-copy {
    justify-self: center;
    text-align: center;
  }

  .release-title-row {
    justify-content: center;
  }

  .release-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.62rem;
  }

  .release-action-block {
    min-height: 5.65rem;
    padding: 0.68rem;
  }

  .release-action-preview {
    gap: 0.5rem;
  }

  .preview-player {
    grid-template-columns: 2.35rem minmax(0, 1fr) auto;
  }

  .voice-note-play {
    width: 2.35rem;
    height: 2.35rem;
  }

  .voice-waveform {
    height: 1.75rem;
  }

  .release-copy h1 {
    font-size: clamp(3.4rem, 17vw, 5.8rem);
  }

  .release-date {
    display: none;
  }

}

@media (max-width: 30rem) {
  .release-hero {
    min-height: 100svh;
  }

  .release-copy h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .release-date time {
    font-size: clamp(1.22rem, 7vw, 1.7rem);
  }

  .release-action-block {
    min-height: 5.35rem;
  }

  .social-links {
    grid-template-columns: repeat(3, 2.85rem);
  }

  .social-link {
    width: 2.85rem;
    min-height: 2.85rem;
  }

  .brand-logo {
    width: 1.72rem;
    height: 1.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preview-block.is-playing .voice-waveform span {
    animation: none;
  }
}
