:root {
  --bg: #111315;
  --surface: #181b1e;
  --surface-raised: #22272b;
  --line: #30363c;
  --text: #f1f5f2;
  --muted: #aab4b0;
  --teal: #28d6b4;
  --coral: #ff735d;
  --amber: #f5bf55;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-bottom: 128px;
  color: var(--text);
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.018) 50%, transparent 100%),
    var(--bg);
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

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

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 34px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: flex;
  align-items: end;
  gap: 3px;
  width: 24px;
  height: 24px;
}

.brand-mark i {
  display: block;
  width: 6px;
  border-radius: 1px;
  background: var(--teal);
}

.brand-mark i:nth-child(1) {
  height: 12px;
}

.brand-mark i:nth-child(2) {
  height: 22px;
  background: var(--coral);
}

.brand-mark i:nth-child(3) {
  height: 16px;
  background: var(--amber);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 21px;
}

.primary-nav a {
  position: relative;
  padding: 30px 0 27px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.search-field {
  display: flex;
  justify-self: end;
  align-items: center;
  width: min(300px, 100%);
  height: 38px;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.search-field:focus-within {
  border-color: rgba(40, 214, 180, 0.8);
  box-shadow: 0 0 0 3px rgba(40, 214, 180, 0.1);
}

.search-icon {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid var(--muted);
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  content: "";
  background: var(--muted);
  transform: rotate(45deg);
}

.search-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--text);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.search-field input::placeholder {
  color: #7e8985;
}

.avatar-button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(245, 191, 85, 0.5);
  border-radius: 50%;
  place-items: center;
  background: #28231b;
  cursor: pointer;
}

.avatar-button span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
}

main {
  padding-top: 28px;
}

.featured {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid #2e3437;
  background:
    radial-gradient(circle at 20% 20%, rgba(40, 214, 180, 0.12), transparent 31%),
    #171b1d;
}

.featured::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.4;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 50px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.featured-glow {
  position: absolute;
  top: -210px;
  right: 18%;
  width: 560px;
  height: 560px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 115, 93, 0.11);
  filter: blur(70px);
}

.featured-copy {
  align-self: center;
  padding: 60px 40px 60px 64px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.featured-kicker {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
}

.featured h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.09;
  letter-spacing: 0;
}

.featured-description {
  max-width: 425px;
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.featured-actions,
.featured-meta,
.player-controls,
.progress-row,
.player-tools {
  display: flex;
  align-items: center;
}

.featured-actions {
  gap: 22px;
}

.primary-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #0c1714;
  border: 0;
  border-radius: 4px;
  background: var(--teal);
  box-shadow: 0 10px 23px rgba(40, 214, 180, 0.18);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.primary-button:hover {
  background: #47e2c4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover {
  color: var(--text);
}

.featured-meta {
  gap: 22px;
  margin-top: 44px;
  color: #89938f;
  font-size: 12px;
}

.featured-meta span {
  display: flex;
  gap: 6px;
}

.featured-meta strong {
  color: var(--text);
}

.featured-art {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 115, 93, 0.72), rgba(17, 19, 21, 0) 52%),
    linear-gradient(225deg, rgba(40, 214, 180, 0.42), rgba(17, 19, 21, 0) 56%),
    #243032;
}

.featured-art::before,
.featured-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
}

.featured-art::before {
  width: 520px;
  height: 520px;
}

.featured-art::after {
  width: 365px;
  height: 365px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(241, 245, 242, 0.3);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.orbit-one {
  width: 540px;
  height: 190px;
}

.orbit-two {
  width: 420px;
  height: 290px;
  transform: rotate(48deg);
}

.record-disc {
  position: relative;
  display: grid;
  width: min(245px, 58%);
  aspect-ratio: 1;
  border: 10px solid #111;
  border-radius: 50%;
  place-items: center;
  background:
    repeating-radial-gradient(circle, transparent 0 7px, rgba(255, 255, 255, 0.07) 8px 9px),
    #24282b;
  box-shadow: 17px 22px 0 rgba(0, 0, 0, 0.17);
}

.record-label {
  display: grid;
  width: 31%;
  aspect-ratio: 1;
  border-radius: 50%;
  place-items: center;
  color: #10201d;
  background: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.featured-art p {
  position: absolute;
  right: 35px;
  bottom: 31px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(21px, 3vw, 39px);
  font-weight: 800;
  line-height: 0.91;
  text-align: right;
}

.genre-section,
.content-section {
  margin-top: 72px;
}

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

.section-heading .eyebrow {
  margin-bottom: 7px;
}

.section-heading h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: 0;
}

.compact-heading {
  margin-bottom: 16px;
}

.icon-button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  place-items: center;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
}

.icon-button:hover {
  color: var(--text);
  border-color: var(--muted);
}

.genre-list {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.genre-list::-webkit-scrollbar {
  display: none;
}

.genre-chip {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.genre-chip:hover,
.genre-chip.is-selected {
  color: #10201d;
  border-color: var(--teal);
  background: var(--teal);
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.playlist-card,
.album-card {
  min-width: 0;
}

.playlist-cover,
.album-cover,
.mini-cover,
.chart-cover {
  position: relative;
  overflow: hidden;
  background: #232c2d;
}

.playlist-cover {
  aspect-ratio: 1.2;
  margin-bottom: 12px;
}

.playlist-cover::before,
.album-cover::before,
.mini-cover::before,
.chart-cover::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.9;
}

.art-lumen::before {
  background:
    radial-gradient(circle at 68% 23%, var(--amber) 0 10%, transparent 11%),
    linear-gradient(126deg, transparent 45%, rgba(255, 255, 255, 0.22) 45% 47%, transparent 47%),
    linear-gradient(125deg, #276f69, #102a33 58%, #e2664f);
}

.art-coral::before {
  background:
    repeating-linear-gradient(65deg, transparent 0 14px, rgba(255, 255, 255, 0.19) 15px 16px),
    radial-gradient(circle at 22% 70%, var(--teal) 0 15%, transparent 16%),
    #bd4c49;
}

.art-amber::before {
  background:
    linear-gradient(90deg, transparent 46%, rgba(17, 19, 21, 0.7) 47% 54%, transparent 55%),
    radial-gradient(circle at 50% 51%, #f9d77b 0 27%, #d38536 28% 45%, #28221d 46% 100%);
}

.art-aqua::before {
  background:
    radial-gradient(ellipse at 62% 45%, transparent 0 18%, #112d31 19% 26%, transparent 27%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.11) 0 2px, transparent 2px 10px),
    #227674;
}

.art-violet::before {
  background:
    linear-gradient(145deg, transparent 38%, rgba(255, 255, 255, 0.28) 39% 41%, transparent 42%),
    radial-gradient(circle at 30% 23%, var(--coral) 0 10%, transparent 11%),
    #384753;
}

.art-sunrise::before {
  background:
    radial-gradient(circle at 50% 67%, #ffce6d 0 22%, transparent 23%),
    linear-gradient(0deg, #2d4c47 0 36%, transparent 37%),
    #c85a48;
}

.playlist-card h3,
.album-card h3 {
  overflow: hidden;
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.playlist-card:hover .playlist-cover,
.album-card:hover .album-cover {
  outline: 1px solid rgba(40, 214, 180, 0.75);
  outline-offset: 3px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 28px;
}

.chart-panel {
  min-width: 0;
}

.chart-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.chart-row {
  display: grid;
  grid-template-columns: 34px 44px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 13px;
  min-height: 69px;
  padding: 9px 8px;
  color: inherit;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  width: 100%;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

.chart-row:hover,
.chart-row.is-active {
  background: rgba(40, 214, 180, 0.06);
}

.chart-row.is-active {
  box-shadow: inset 2px 0 0 var(--teal);
}

.chart-rank {
  color: #7d8985;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.chart-row:nth-child(-n + 3) .chart-rank {
  color: var(--amber);
}

.chart-cover {
  width: 44px;
  aspect-ratio: 1;
}

.chart-copy {
  min-width: 0;
}

.chart-copy strong,
.chart-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chart-copy strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.chart-copy span,
.chart-duration {
  color: var(--muted);
  font-size: 12px;
}

.row-play {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 50%;
  place-items: center;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.chart-row:hover .row-play,
.chart-row.is-active .row-play {
  border-color: var(--teal);
  background: rgba(40, 214, 180, 0.12);
}

.search-empty {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.signal-panel {
  min-height: 330px;
  padding: 30px;
  border: 1px solid #394034;
  background:
    linear-gradient(155deg, rgba(245, 191, 85, 0.11), transparent 43%),
    #20251f;
}

.signal-panel h2 {
  max-width: 210px;
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.signal-wave {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 5px;
  margin: 23px 0 18px;
}

.signal-wave i {
  display: block;
  width: 5px;
  height: 40%;
  border-radius: 3px;
  background: var(--amber);
}

.signal-wave i:nth-child(2),
.signal-wave i:nth-child(9) {
  height: 75%;
}

.signal-wave i:nth-child(3),
.signal-wave i:nth-child(7) {
  height: 100%;
}

.signal-wave i:nth-child(4),
.signal-wave i:nth-child(8) {
  height: 55%;
}

.signal-wave i:nth-child(5),
.signal-wave i:nth-child(6) {
  height: 86%;
}

.signal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 17px 0;
  border-top: 1px solid rgba(245, 191, 85, 0.2);
  border-bottom: 1px solid rgba(245, 191, 85, 0.2);
}

.signal-stats dt {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.signal-stats dd {
  margin: 6px 0 0;
  color: #a9ac93;
  font-size: 11px;
}

.signal-note {
  margin: 17px 0 0;
  color: #b9b9a3;
  font-size: 12px;
  line-height: 1.65;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.album-cover {
  aspect-ratio: 1;
  margin-bottom: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  margin-top: 72px;
  color: #7e8985;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.site-footer a:hover {
  color: var(--teal);
}

.queue-panel {
  position: fixed;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 106px;
  z-index: 5;
  width: min(390px, calc(100vw - 48px));
  max-height: min(550px, calc(100vh - 145px));
  overflow: auto;
  padding: 22px;
  border: 1px solid #3b4345;
  border-radius: 6px;
  background: #1b2022;
  box-shadow: var(--shadow);
}

.queue-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.queue-heading h2 {
  margin: 0;
  font-size: 20px;
}

.queue-list {
  display: grid;
}

.queue-item {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 8px 4px;
  color: var(--muted);
  border: 0;
  border-top: 1px solid var(--line);
  text-align: left;
  width: 100%;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

.queue-item:hover,
.queue-item.is-active {
  color: var(--text);
}

.queue-item.is-active .queue-index {
  color: var(--teal);
}

.queue-copy {
  min-width: 0;
}

.queue-copy strong,
.queue-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-copy strong {
  margin-bottom: 3px;
  color: inherit;
  font-size: 13px;
}

.queue-copy span,
.queue-length,
.queue-index {
  color: var(--muted);
  font-size: 11px;
}

.player-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(360px, 1.2fr) minmax(230px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 94px;
  padding: 13px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid #343a3c;
  background: rgba(21, 24, 26, 0.96);
  box-shadow: 0 -12px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.player-now {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.mini-cover {
  width: 54px;
  aspect-ratio: 1;
}

.player-track-copy {
  min-width: 0;
}

.player-track-copy strong,
.player-track-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-track-copy strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.player-track-copy span {
  color: var(--muted);
  font-size: 12px;
}

.player-utility,
.player-control {
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  color: var(--muted);
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.player-utility:hover,
.player-control:hover,
.player-utility.is-liked {
  color: var(--coral);
}

.player-center {
  display: grid;
  gap: 9px;
}

.player-controls {
  justify-content: center;
  gap: 16px;
}

.play-button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0 0 0 2px;
  color: #10201d;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: var(--teal);
  cursor: pointer;
  font-size: 13px;
}

.play-button:hover {
  background: #54e2c7;
}

.progress-row {
  gap: 10px;
}

.progress-row time {
  flex: 0 0 auto;
  width: 31px;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

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

input[type="range"] {
  width: 100%;
  height: 3px;
  accent-color: var(--teal);
  cursor: pointer;
}

.player-tools {
  justify-content: end;
  gap: 9px;
}

.player-tools input {
  width: min(105px, 100%);
}

.volume-icon {
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 900px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .primary-nav {
    display: none;
  }

  .search-field {
    justify-self: stretch;
    width: 100%;
  }

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

  .featured-copy {
    padding: 48px 26px 48px 42px;
  }

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    min-height: 0;
  }

  .album-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .player-bar {
    grid-template-columns: minmax(180px, 1fr) minmax(290px, 1.2fr) auto;
    gap: 14px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .player-tools input,
  .volume-icon {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 185px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 540px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 13px;
    min-height: 124px;
    padding: 16px 0;
  }

  .search-field {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .featured {
    display: block;
    min-height: 0;
  }

  .featured-copy {
    padding: 43px 25px 35px;
  }

  .featured h1 {
    font-size: 37px;
  }

  .featured-meta {
    margin-top: 33px;
  }

  .featured-art {
    min-height: 245px;
  }

  .featured-art::before {
    width: 350px;
    height: 350px;
  }

  .featured-art::after {
    width: 240px;
    height: 240px;
  }

  .orbit-one {
    width: 360px;
  }

  .orbit-two {
    width: 300px;
    height: 200px;
  }

  .featured-art p {
    right: 24px;
    bottom: 23px;
    font-size: 28px;
  }

  .genre-section,
  .content-section {
    margin-top: 54px;
  }

  .section-heading h2 {
    font-size: 23px;
  }

  .playlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .chart-row {
    grid-template-columns: 28px 42px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .chart-duration {
    display: none;
  }

  .signal-panel {
    padding: 25px;
  }

  .album-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .site-footer {
    display: grid;
    gap: 10px;
    min-height: 102px;
    margin-top: 54px;
    padding: 18px 0;
  }

  .player-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 156px;
    gap: 4px 12px;
    padding: 12px 14px;
  }

  .player-now {
    grid-template-columns: 45px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .mini-cover {
    width: 45px;
  }

  .player-center {
    grid-row: 2;
    grid-column: 1 / -1;
    gap: 5px;
  }

  .player-controls {
    display: flex;
    gap: 20px;
  }

  .progress-row {
    gap: 8px;
  }

  .player-tools {
    align-self: center;
  }

  .queue-panel {
    right: 14px;
    bottom: 170px;
    width: calc(100vw - 28px);
  }
}
