:root {
  color-scheme: dark;
  --bg: #000;
  --panel: #101010;
  --panel-soft: #171717;
  --panel-hover: #242424;
  --line: rgba(255, 255, 255, 0.09);
  --text: #fff;
  --muted: #a8a8a8;
  --green: #1ed760;
  --blue: #3498e9;
  --rail-width: 82px;
  --player-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.app-shell {
  min-height: 100vh;
}

.side-rail {
  position: fixed;
  z-index: 30;
  inset: 0 auto var(--player-height) 0;
  display: flex;
  width: var(--rail-width);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 12px 8px 18px;
  overflow: hidden auto;
  background: #070707;
  border-right: 1px solid var(--line);
  scrollbar-width: none;
}

.side-rail::-webkit-scrollbar {
  display: none;
}

.rail-logo,
.rail-button,
.rail-covers a {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: #bbb;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.rail-logo {
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.rail-logo img,
.rail-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rail-button {
  background: #161616;
}

.rail-button:hover,
.rail-button.active {
  background: #292929;
  color: #fff;
  transform: translateY(-2px);
}

.rail-button.active {
  color: var(--green);
}

.rail-button svg {
  width: 23px;
  fill: currentColor;
}

.rail-nav,
.rail-covers {
  display: grid;
  gap: 10px;
}

.rail-divider {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: #333;
}

.rail-covers a {
  position: relative;
}

.rail-covers a:hover {
  transform: scale(1.06);
}

.rail-covers a.active {
  box-shadow: 0 0 0 3px var(--green);
  transform: scale(1.04);
}

.rail-covers a::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  content: "";
}

.main-content {
  min-height: calc(100vh - var(--player-height));
  margin: 0 10px var(--player-height) calc(var(--rail-width) + 10px);
  overflow: hidden;
  border-radius: 10px;
  background: var(--panel);
}

.view[hidden] {
  display: none;
}

.artist-hero {
  position: relative;
  display: flex;
  min-height: 292px;
  align-items: flex-end;
  overflow: hidden;
  padding: 46px 38px 32px;
  background: #0b0b0b;
}

.hero-backdrop {
  position: absolute;
  inset: -14%;
  width: 128%;
  height: 128%;
  object-fit: cover;
  object-position: center 38%;
  filter: blur(2px) brightness(0.7) saturate(0.78);
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 62%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.93) 0%, rgba(7, 7, 7, 0.08) 62%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(82px, 9.6vw, 132px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.48);
}

.hero-label {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.artist-title-line {
  display: flex;
  align-items: center;
  gap: 18px;
}

.artist-title-line h1 {
  margin: 0;
  font-size: clamp(64px, 8.6vw, 112px);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.87;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.48);
}

.hero-verified-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 800;
}

.verified-badge {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.32));
}

.hero-copy p {
  margin: 9px 0 0;
  color: #ececec;
  font-size: 14px;
  font-weight: 750;
}

.artist-actions {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 21px;
  padding: 18px 28px;
  background:
    linear-gradient(180deg, rgba(97, 29, 18, 0.54), transparent 95%),
    #101010;
}

.primary-play,
.cover-play,
.player-play,
.inline-play {
  border: 0;
  cursor: pointer;
}

.primary-play,
.cover-play,
.player-play {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.primary-play {
  width: 58px;
  height: 58px;
  background: var(--green);
  color: #050505;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform 150ms ease, background 150ms ease;
}

.primary-play:hover,
.cover-play:hover {
  background: #2ce66c;
  transform: scale(1.06);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.is-playing .play-icon {
  width: 12px;
  height: 14px;
  margin: 0;
  border: 0;
  background:
    linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px, currentColor 8px 12px);
}

.shuffle-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #bbb;
  cursor: pointer;
}

.shuffle-button:hover {
  color: #fff;
}

.shuffle-button svg {
  width: 27px;
  fill: currentColor;
}

.artist-avatar {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.35);
}

.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  gap: 32px;
  padding: 8px 28px 28px;
}

.page-primary {
  min-width: 0;
  margin: 0 28px 28px;
  padding-top: 8px;
}

.section-block {
  scroll-margin-top: 20px;
}

.featured-playlist {
  display: grid;
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(115deg, rgba(52, 152, 233, 0.12), rgba(255, 255, 255, 0.015)),
    #151515;
}

.feature-cover-wrap {
  position: relative;
  align-self: start;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.feature-cover-wrap > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cover-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 50px;
  height: 50px;
  background: var(--green);
  color: #050505;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.feature-copy {
  min-width: 0;
  align-self: center;
}

.section-eyebrow {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.feature-copy h2,
.section-heading h2,
.album-intro h2 {
  margin: 6px 0 0;
  letter-spacing: -0.7px;
}

.feature-copy h2 {
  font-size: clamp(34px, 3.4vw, 50px);
}

.feature-copy > p {
  margin: 10px 0 17px;
  color: var(--muted);
  font-size: 12px;
}

.compact-track-list {
  display: grid;
  gap: 4px;
}

.compact-track {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 5px 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.compact-track:hover,
.compact-track.active {
  background: rgba(255, 255, 255, 0.08);
}

.compact-index,
.compact-duration {
  color: var(--muted);
  font-size: 11px;
}

.compact-duration {
  text-align: right;
}

.compact-track strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-track.active strong {
  color: var(--green);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-heading h2,
.album-intro h2 {
  font-size: 25px;
}

.section-meta {
  color: var(--muted);
  font-size: 11px;
}

#popular {
  padding-top: 36px;
}

.track-list {
  display: grid;
}

.track-row {
  display: grid;
  grid-template-columns: 32px minmax(190px, 1.5fr) minmax(110px, 0.7fr) 52px;
  gap: 12px;
  min-height: 66px;
  align-items: center;
  padding: 6px 10px 6px 6px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 130ms ease;
}

.track-row:hover,
.track-row.active {
  background: rgba(255, 255, 255, 0.08);
}

.track-number {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.track-position,
.compact-position {
  display: grid;
  min-width: 0;
  place-items: center;
}

.waveform {
  display: none;
  height: 18px;
  align-items: end;
  gap: 3px;
  color: var(--green);
}

.waveform i {
  width: 3px;
  min-height: 4px;
  border-radius: 99px;
  background: currentColor;
  animation: waveform-pulse 680ms ease-in-out infinite;
}

.waveform i:nth-child(2) {
  animation-delay: -420ms;
}

.waveform i:nth-child(3) {
  animation-delay: -240ms;
}

.waveform i:nth-child(4) {
  animation-delay: -560ms;
}

.is-audio-playing .track-row.active .track-number,
.is-audio-playing .compact-track.active .compact-index {
  display: none;
}

.is-audio-playing .track-row.active .waveform,
.is-audio-playing .compact-track.active .waveform {
  display: flex;
}

@keyframes waveform-pulse {
  0%,
  100% {
    height: 5px;
  }

  35% {
    height: 17px;
  }

  65% {
    height: 10px;
  }
}

.track-main {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.track-main img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 3px;
  object-fit: cover;
  background: #222;
}

.track-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.track-copy strong,
.track-release,
.track-duration,
.now-playing-copy strong,
.now-playing-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-copy strong {
  font-size: 13px;
  font-weight: 600;
}

.track-copy span,
.track-release,
.track-duration {
  color: var(--muted);
  font-size: 11px;
}

.track-row.active .track-copy strong {
  color: var(--green);
}

.track-duration {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.portfolio-rail {
  display: grid;
  align-content: start;
  gap: 16px;
}

.portfolio-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel-soft);
}

.stats-card {
  padding: 20px;
}

.stats-card h2 {
  margin: 7px 0 19px;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.catalog-stats div {
  display: grid;
  gap: 4px;
  padding: 11px 6px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.catalog-stats strong {
  font-size: 19px;
}

.catalog-stats span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.album-spotlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px;
  color: #fff;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.album-spotlight:hover {
  background: var(--panel-hover);
  transform: translateY(-2px);
}

.album-spotlight img {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: cover;
}

.album-spotlight h3 {
  margin: 7px 0 5px;
  font-size: 16px;
}

.album-spotlight p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.current-card {
  padding: 18px;
}

.current-release {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
}

.current-release img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 5px;
  object-fit: cover;
}

.current-release div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.current-release strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.current-release span {
  color: var(--muted);
  font-size: 10px;
}

.album-section,
.singles-section {
  margin: 0 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.album-intro {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 22px;
}

.album-intro > img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.album-intro p {
  margin: 10px 0 17px;
  color: var(--muted);
  font-size: 12px;
}

.inline-play {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 100px;
  background: #fff;
  color: #050505;
  font-size: 11px;
  font-weight: 800;
}

.inline-play:hover {
  transform: scale(1.03);
}

.inline-play .play-icon {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
}

.album-tracks {
  max-width: 920px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 18px;
}

.release-card {
  display: block;
  min-width: 0;
  padding: 12px;
  border: 0;
  border-radius: 9px;
  background: var(--panel-soft);
  color: #fff;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}

.release-card:hover,
.release-card.active {
  background: var(--panel-hover);
  transform: translateY(-3px);
}

.release-art {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.4);
}

.release-art::after {
  display: block;
  padding-bottom: 100%;
  content: "";
}

.release-art img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-card h3 {
  overflow: hidden;
  margin: 13px 0 6px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-card p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-section,
.about-section,
.more-section {
  margin: 0 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.radio-card {
  display: grid;
  width: 158px;
  gap: 9px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--panel-soft);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}

.radio-card:hover {
  background: var(--panel-hover);
  transform: translateY(-3px);
}

.radio-art {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  background:
    radial-gradient(circle at 30% 35%, rgba(30, 215, 96, 0.32), transparent 32%),
    linear-gradient(135deg, #d392ff, #ad63f6 58%, #050505);
}

.radio-art img {
  width: 74%;
  height: 74%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.34);
}

.radio-art small {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #101010;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.radio-card strong {
  font-size: 13px;
}

.radio-card > span:last-child {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.about-card {
  width: min(100%, 620px);
  min-height: 250px;
  padding: 28px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    #252525;
}

.about-card img {
  width: 150px;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
}

.about-card strong {
  display: block;
  font-size: 12px;
}

.about-card p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.release-view {
  background: #121212;
}

.release-hero {
  --release-accent: #8f1250;
  position: relative;
  display: flex;
  min-height: 240px;
  align-items: flex-end;
  gap: 22px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--release-accent) 96%, #fff 4%), #6b0732);
}

.release-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 52%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.26), transparent 55%);
}

.release-hero > img {
  position: relative;
  z-index: 1;
  width: clamp(150px, 16vw, 190px);
  height: clamp(150px, 16vw, 190px);
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44);
}

.release-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-bottom: 2px;
}

.release-copy > span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 750;
}

.release-copy h1 {
  overflow-wrap: anywhere;
  margin: 0;
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.release-meta-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.release-meta-line img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.release-actions {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 18px;
  padding: 17px 28px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--release-accent, #6b0732) 38%, transparent), transparent),
    #121212;
}

.mini-cover-button,
.ghost-action {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.mini-cover-button {
  width: 42px;
  height: 42px;
  overflow: hidden;
  padding: 0;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
}

.mini-cover-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ghost-action {
  padding: 8px;
  font-size: 24px;
  letter-spacing: 2px;
}

.ghost-action:hover,
.back-link:hover,
.show-all-link:hover {
  color: #fff;
}

.back-link,
.show-all-link {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.back-link {
  margin-left: auto;
}

.release-track-section {
  padding: 0 28px 28px;
}

.release-table-head {
  display: grid;
  grid-template-columns: 32px minmax(190px, 1.5fr) minmax(110px, 0.7fr) 52px;
  gap: 12px;
  padding: 0 10px 10px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.release-track-row {
  border-radius: 4px;
}

.track-main.no-cover {
  gap: 0;
}

.release-legal {
  margin-top: 34px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.release-legal p {
  margin: 0;
}

.more-section {
  padding-bottom: 48px;
}

.page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 28px 0;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: #6f6f6f;
  font-size: 10px;
}

.page-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
}

.page-footer img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.player {
  position: fixed;
  z-index: 60;
  inset: auto 0 0;
  display: grid;
  height: var(--player-height);
  grid-template-columns: minmax(230px, 1fr) minmax(350px, 1.4fr) minmax(190px, 1fr);
  align-items: center;
  padding: 9px 17px;
  border-top: 1px solid #252525;
  background: #050505;
}

.now-playing {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.now-playing > img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: cover;
}

.now-playing-copy {
  display: flex;
  min-width: 0;
  max-width: 260px;
  flex-direction: column;
  gap: 5px;
}

.now-playing-copy strong {
  font-size: 12px;
}

.now-playing-copy span {
  color: var(--muted);
  font-size: 10px;
}

.live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #444;
}

.live-dot.active {
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.player-center {
  display: grid;
  gap: 7px;
  justify-items: center;
}

.transport {
  display: flex;
  align-items: center;
  gap: 22px;
}

.transport button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.transport button:hover {
  color: #fff;
}

.transport svg {
  width: 17px;
  fill: currentColor;
}

.transport .player-play {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #000;
}

.player-play .play-icon {
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 9px;
}

.player-play.is-playing .play-icon {
  width: 10px;
  height: 12px;
  background:
    linear-gradient(90deg, currentColor 0 3px, transparent 3px 7px, currentColor 7px 10px);
}

.progress-row {
  display: grid;
  width: min(100%, 600px);
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 9px;
  color: #888;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.progress-row span:last-child {
  text-align: right;
}

.range {
  --progress: 0%;
  width: 100%;
  height: 4px;
  margin: 0;
  appearance: none;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #fff 0 var(--progress),
    #4b4b4b var(--progress) 100%
  );
  cursor: pointer;
}

.range::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
}

.range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
}

.range:hover::-webkit-slider-thumb,
.range:focus-visible::-webkit-slider-thumb,
.range:hover::-moz-range-thumb,
.range:focus-visible::-moz-range-thumb {
  opacity: 1;
}

.range:hover {
  background: linear-gradient(
    90deg,
    var(--green) 0 var(--progress),
    #4b4b4b var(--progress) 100%
  );
}

.volume-control {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
  width: 150px;
}

.volume-control svg {
  width: 18px;
  flex: 0 0 auto;
  fill: var(--muted);
}

.volume-control .range {
  --progress: 80%;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: calc(var(--player-height) + 18px);
  max-width: 330px;
  padding: 12px 16px;
  border: 1px solid #333;
  border-radius: 7px;
  background: #181818;
  color: #eee;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .page-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-card h2 {
    margin-bottom: 14px;
  }
}

@media (max-width: 780px) {
  :root {
    --rail-width: 64px;
  }

  .side-rail {
    padding-right: 6px;
    padding-left: 6px;
  }

  .rail-logo,
  .rail-button,
  .rail-covers a {
    width: 46px;
    height: 46px;
  }

  .artist-hero {
    min-height: 285px;
  }

  .featured-playlist {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .portfolio-rail {
    grid-template-columns: 1fr 1fr;
  }

  .current-card {
    display: none;
  }

  .track-row {
    grid-template-columns: 28px minmax(150px, 1fr) 50px;
  }

  .track-release {
    display: none;
  }

  .player {
    grid-template-columns: minmax(180px, 0.8fr) minmax(320px, 1.4fr) 100px;
  }

  .volume-control {
    width: 100px;
  }

  .release-hero {
    min-height: 220px;
  }

  .release-table-head {
    grid-template-columns: 28px minmax(150px, 1fr) 50px;
  }

  .release-table-head .hide-small {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --player-height: 72px;
  }

  .side-rail {
    display: none;
  }

  .main-content {
    margin: 0 0 var(--player-height);
    border-radius: 0;
  }

  .artist-hero {
    min-height: 390px;
    padding: 80px 19px 29px;
  }

  .hero-backdrop {
    inset: 0;
    width: 100%;
    height: 100%;
    filter: brightness(0.6) saturate(0.8);
    transform: none;
  }

  .hero-shade {
    background: linear-gradient(0deg, #101010 0%, rgba(8, 8, 8, 0.07) 76%);
  }

  .artist-title-line {
    gap: 11px;
  }

  .artist-title-line h1 {
    font-size: clamp(57px, 20vw, 90px);
  }

  .hero-copy h1 {
    font-size: clamp(62px, 20vw, 94px);
    letter-spacing: -0.06em;
  }

  .artist-actions {
    min-height: 88px;
    padding: 14px 18px;
  }

  .primary-play {
    width: 54px;
    height: 54px;
  }

  .action-note {
    display: none;
  }

  .page-grid {
    gap: 22px;
    padding: 4px 14px 22px;
  }

  .page-primary {
    margin: 0 14px 22px;
    padding-top: 4px;
  }

  .featured-playlist {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }

  .feature-cover-wrap {
    width: 100%;
  }

  .feature-copy h2 {
    font-size: 28px;
  }

  .portfolio-rail {
    grid-template-columns: 1fr;
  }

  .stats-card {
    display: none;
  }

  .album-spotlight {
    padding: 11px;
  }

  .album-section,
  .singles-section,
  .radio-section,
  .about-section,
  .more-section {
    margin: 0 14px;
    padding: 28px 0;
  }

  .release-hero {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 28px 18px;
  }

  .release-hero > img {
    width: 154px;
    height: 154px;
  }

  .release-copy h1 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .release-meta-line {
    align-items: flex-start;
    flex-wrap: wrap;
    line-height: 1.45;
  }

  .release-actions {
    min-height: 76px;
    gap: 13px;
    padding: 13px 18px;
  }

  .release-actions .primary-play {
    width: 54px;
    height: 54px;
  }

  .back-link {
    display: none;
  }

  .release-track-section {
    padding: 0 14px 22px;
  }

  .release-table-head {
    grid-template-columns: 24px minmax(0, 1fr) 42px;
    gap: 7px;
    padding-right: 3px;
    padding-left: 0;
  }

  .release-table-head .hide-small,
  .release-track-row .track-release {
    display: none;
  }

  .about-card {
    min-height: 0;
    padding: 22px;
  }

  .about-card img {
    width: 126px;
    height: 126px;
  }

  .album-intro {
    align-items: flex-start;
    gap: 17px;
  }

  .album-intro > img {
    width: 116px;
    height: 116px;
  }

  .track-row {
    grid-template-columns: 24px minmax(0, 1fr) 42px;
    gap: 7px;
    padding-right: 3px;
    padding-left: 0;
  }

  .track-main {
    gap: 9px;
  }

  .track-main img {
    width: 43px;
    height: 43px;
  }

  .release-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 11px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .release-grid::-webkit-scrollbar {
    display: none;
  }

  .release-card {
    width: min(64vw, 220px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .page-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-right: 14px;
    margin-left: 14px;
  }

  .player {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    height: var(--player-height);
    padding: 8px 11px;
    border-top: 0;
    background: rgba(11, 11, 11, 0.97);
    box-shadow: 0 -5px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
  }

  .now-playing > img {
    width: 54px;
    height: 54px;
  }

  .now-playing-copy {
    max-width: calc(100vw - 165px);
  }

  .player-center {
    display: block;
  }

  .transport {
    gap: 2px;
  }

  #previous-button,
  #next-button,
  .progress-row,
  .volume-control,
  .live-dot {
    display: none;
  }

  .transport .player-play {
    width: 42px;
    height: 42px;
    background: transparent;
    color: #fff;
  }

  .toast {
    right: 12px;
    bottom: calc(var(--player-height) + 12px);
    left: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
