@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --bg: #fbfaf8;
  --surface: #fff;
  --sidebar: #f2f1ee;
  --text: #252627;
  --muted: #858584;
  --line: #e9e8e4;
  --accent: #e94f69;
  --accent-soft: #fae5e8;
  --glass: rgba(255, 255, 255, 0.86);
  --hover: #eeede9;
  --shadow: 0 12px 50px #22221912;
  --sidebar-width: 220px;
  color-scheme: light;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button {
  border: 0;
  background: none;
}
button:disabled {
  opacity: 0.35;
  cursor: default;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
button:not(:disabled):active {
  transform: scale(0.97);
}
button {
  transition: background 0.16s, transform 0.16s, color 0.16s;
}
a {
  color: inherit;
}
img {
  display: block;
  object-fit: cover;
}
button svg {
  flex-shrink: 0;
}
svg.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon.fill {
  fill: currentColor;
  stroke: none;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}
.icon-btn:hover {
  background: var(--hover);
}
.icon-btn.active {
  color: var(--accent);
}
.icon-btn.small {
  width: 32px;
  height: 32px;
}
.icon-btn.small .icon {
  width: 17px;
  height: 17px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3,
.brand {
  font-family: "Manrope", "DM Sans", sans-serif;
}
h1 {
  font-size: 39px;
  letter-spacing: -1.7px;
  font-weight: 800;
  line-height: 1.2;
}
h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.7px;
}
h3 {
  font-size: 15px;
  font-weight: 750;
}
small,
.muted {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  left: 240px;
  top: -50px;
  background: var(--surface);
  padding: 12px;
  z-index: 200;
}
.skip-link:focus {
  top: 10px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}
#sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  background: var(--sidebar);
  border-right: 1px solid var(--line);
  padding: 32px 17px 18px;
  display: flex;
  flex-direction: column;
  z-index: 30;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px 30px;
  font-size: 27px;
  letter-spacing: -1.2px;
  font-weight: 800;
}
.brand-symbol {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  width: 24px;
  height: 28px;
}
.brand-symbol i {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: var(--accent);
}
.brand-symbol i:nth-child(1) {
  height: 14px;
}
.brand-symbol i:nth-child(2) {
  height: 27px;
}
.brand-symbol i:nth-child(3) {
  height: 20px;
}
.brand-symbol i:nth-child(4) {
  height: 11px;
}
.sidebar-scroll {
  overflow: auto;
  scrollbar-width: thin;
  flex: 1;
}
.nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 39px;
  text-align: left;
  border-radius: 7px;
  padding: 8px 13px;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 3px;
}
.nav-item:hover {
  background: var(--hover);
}
.nav-item.selected {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}
.nav-item .icon {
  width: 18px;
  height: 18px;
}
.nav-item .count {
  margin-left: auto;
  font-size: 10px;
  color: var(--muted);
}
.nav-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 13px 9px;
  font-size: 10px;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.nav-heading .icon-btn {
  width: 20px;
  height: 20px;
}
.nav-heading .icon {
  width: 14px;
  height: 14px;
}
.playlist-link {
  font-size: 12px;
}
.playlist-link img {
  width: 21px;
  height: 21px;
  border-radius: 4px;
}
.sidebar-foot {
  border-top: 1px solid var(--line);
  padding: 15px 9px 0;
}
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
}
.avatar {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6ddcd;
  color: #615949;
  font-size: 11px;
  font-weight: 700;
}
.profile strong {
  font-size: 12px;
  display: block;
}
.profile small {
  font-size: 10px;
}
.profile > .icon {
  margin-left: auto;
  width: 17px;
  color: var(--muted);
}
.import-button {
  border: 1px dashed #ccc9c2;
  border-radius: 8px;
  width: calc(100% - 20px);
  margin: 22px 10px 15px;
  padding: 10px 4px;
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.import-button .icon {
  width: 15px;
  height: 15px;
}
.import-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.workspace {
  margin-left: var(--sidebar-width);
  height: 100dvh;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
#topbar {
  height: 77px;
  padding: 0 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-left > .icon-btn {
  color: var(--muted);
  width: 28px;
}
.breadcrumb {
  font-size: 11px;
  color: var(--muted);
  padding-left: 7px;
}
.top-search {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  margin-right: 12px;
}
.top-search .icon {
  width: 16px;
  height: 16px;
}
.keyboard-hint {
  font-size: 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 4px;
  margin-left: 18px;
}
.top-right > .icon-btn {
  width: 33px;
  height: 33px;
  border: 1px solid var(--line);
  background: var(--surface);
}
#main {
  max-width: 1550px;
  margin: auto;
  padding: 11px 43px 150px;
  outline: none;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 29px;
}
.page-heading .eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 9px;
}
.page-heading p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}
.page-heading .date {
  color: var(--muted);
  font-size: 11px;
  padding-bottom: 3px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 17px;
}
.section-head .text-button {
  font-size: 11px;
  color: var(--accent);
  display: flex;
  gap: 3px;
  align-items: center;
}
.text-button .icon {
  width: 14px;
  height: 14px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.24fr 1fr;
  gap: 21px;
}
.hero-wrap > .eyebrow {
  font-size: 9px;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  color: var(--accent);
}
.hero-caption {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-caption span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  margin-left: 7px;
}
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 295px;
  overflow: hidden;
  border-radius: 11px;
  text-align: left;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: #fff;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #05161db3, transparent 85%);
  z-index: -1;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero.night .hero-art {
  object-position: center 57%;
  transform: scale(1.3);
}
.hero.sunrise .hero-art {
  object-position: center 65%;
  transform: scale(1.2);
}
.hero:hover .hero-art {
  transform: scale(1.34);
}
.hero.sunrise:hover .hero-art {
  transform: scale(1.24);
}
.hero-art {
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.hero .hero-content {
  width: 100%;
}
.hero .pill {
  font-size: 8px;
  letter-spacing: 1.4px;
  font-weight: 700;
  background: #ffffff20;
  padding: 6px 9px;
  border: 1px solid #ffffff35;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 13px;
  backdrop-filter: blur(15px);
}
.hero h2 {
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: -1.5px;
  font-weight: 750;
  max-width: 270px;
}
.hero h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero p {
  font-size: 10px;
  color: #ffffffc9;
  margin-top: 12px;
  max-width: 255px;
  line-height: 1.6;
}
.hero-play {
  position: absolute;
  right: 24px;
  bottom: 26px;
  border-radius: 50%;
  height: 43px;
  width: 43px;
  background: #ffffffee;
  color: #202829;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 16px #0002;
}
.hero-play .icon {
  width: 18px;
  height: 18px;
}
.hero.sunrise:after {
  background: linear-gradient(0deg, #572e218a, transparent 90%);
}
.hero.sunrise h2 {
  font-size: 31px;
}
.song-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
}
.song-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  position: relative;
  border-radius: 4px;
}
.song-row:hover {
  background: var(--hover);
}
.song-row.playing .track-title {
  color: var(--accent);
}
.row-main {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  flex: 1;
  text-align: left;
  padding: 0 3px;
}
.song-row img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}
.track-meta {
  min-width: 0;
}
.track-title {
  font-size: 12px;
  font-weight: 550;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.track-artist {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.song-row > .icon-btn {
  color: var(--muted);
  width: 28px;
  height: 36px;
}
.song-row .duration {
  font-size: 10px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.row-number {
  width: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  flex-shrink: 0;
}
.playing .row-number {
  color: var(--accent);
}
.equalizer {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 16px;
  justify-content: center;
}
.equalizer i {
  width: 2px;
  height: 10px;
  background: currentColor;
  border-radius: 1px;
  animation: eq 0.9s alternate infinite;
}
.equalizer i:nth-child(2) {
  animation-delay: -0.3s;
  height: 15px;
}
.equalizer i:nth-child(3) {
  animation-delay: -0.6s;
  height: 6px;
}
@keyframes eq {
  to {
    height: 3px;
  }
}
body.paused .equalizer i {
  animation-play-state: paused;
}
.shelf {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 76px) / 5);
  gap: 19px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 1px 0 12px;
  scrollbar-width: none;
}
.shelf::-webkit-scrollbar {
  display: none;
}
.media-card {
  min-width: 0;
  scroll-snap-align: start;
}
.cover-button {
  display: block;
  width: 100%;
  padding: 0;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  text-align: left;
}
.cover-button img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 9px;
  transition: transform 0.4s, filter 0.4s;
}
.cover-button:hover img {
  transform: scale(1.03);
  filter: brightness(0.88);
}
.card-play {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #252627;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.2s;
}
.cover-button:hover .card-play,
.cover-button:focus-visible .card-play {
  opacity: 1;
  transform: none;
}
.card-title {
  display: block;
  padding: 11px 0 0;
  font-weight: 600;
  font-size: 12px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.media-card p {
  font-size: 10px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 3px;
}
.tag {
  display: inline-block;
  border-radius: 3px;
  padding: 2px 5px;
  background: var(--hover);
  font-size: 8px;
  color: var(--muted);
  margin-left: 4px;
}
.bottom-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
}
.bottom-note .icon {
  width: 12px;
  height: 12px;
  color: var(--accent);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 22px;
}
.filter-tabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.filter-chip {
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 11px;
}
.filter-chip.selected {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.primary-button {
  background: var(--accent);
  color: white;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 650;
  font-size: 12px;
}
.primary-button:hover {
  background: #db3f5b;
}
.primary-button .icon {
  width: 17px;
  height: 17px;
}
.secondary-button {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 11px 19px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.secondary-button .icon {
  width: 16px;
  height: 16px;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 14px 18px;
  margin: 0 0 27px;
  max-width: 710px;
}
.search-field .icon {
  width: 20px;
  color: var(--muted);
}
.search-field input {
  background: transparent;
  border: 0;
  outline: none !important;
  flex: 1;
  min-width: 0;
  color: var(--text);
  font-size: 14px;
}
.search-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.category {
  border-radius: 10px;
  text-align: left;
  padding: 25px;
  min-height: 145px;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--category);
  font-size: 22px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.7px;
}
.category img {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -12px;
  bottom: -27px;
  transform: rotate(22deg);
  border-radius: 6px;
  box-shadow: 0 5px 20px #0003;
}
.category span {
  position: relative;
  z-index: 1;
}
.detail-hero {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 27px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--art-color), transparent);
  margin-bottom: 25px;
}
.detail-hero > img {
  width: 235px;
  aspect-ratio: 1;
  border-radius: 9px;
  box-shadow: 0 12px 35px #0002;
}
.detail-hero h1 {
  margin: 10px 0 9px;
  font-size: 38px;
}
.detail-hero .artist-link {
  font-size: 15px;
  color: var(--accent);
  padding: 0;
}
.detail-hero p {
  max-width: 430px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin: 8px 0;
}
.detail-actions {
  display: flex;
  gap: 9px;
  margin-top: 20px;
  align-items: center;
}
.detail-meta {
  font-size: 10px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.8;
}
.wide-list .song-row {
  padding: 10px 4px;
}
.wide-list .row-main {
  gap: 18px;
}
.wide-list .track-title {
  font-size: 13px;
}
.wide-list .track-artist {
  font-size: 11px;
}
.wide-list .song-row > .icon-btn {
  width: 38px;
}
.wide-list .duration {
  margin: 0 15px;
}
.artist-card img {
  border-radius: 50%;
}
.artist-card .card-title,
.artist-card p {
  text-align: center;
}
.station-banner {
  min-height: 220px;
  background: #243e3c;
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}
.station-banner:after {
  content: "";
  width: 250px;
  height: 250px;
  border: 35px solid #b6d49a30;
  border-radius: 50%;
  position: absolute;
  right: 100px;
  top: -20px;
  pointer-events: none;
}
.station-banner h2 {
  font-size: 34px;
  margin: 12px 0;
}
.station-banner p {
  color: #c4d1c9;
  font-size: 12px;
}
.station-banner .eyebrow {
  color: #c6dfa6;
}
.station-banner button {
  position: relative;
  z-index: 1;
  background: #e0f0c3;
  color: #243e3c;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 25px;
  gap: 14px;
}
.empty-state > .icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  stroke-width: 1;
}
.empty-state p {
  color: var(--muted);
  font-size: 13px;
  max-width: 340px;
  line-height: 1.7;
}
.empty-state h2 {
  font-size: 23px;
}
.player-bar {
  position: fixed;
  z-index: 45;
  bottom: 22px;
  left: calc(var(--sidebar-width) + 35px);
  right: 35px;
  max-width: 1400px;
  margin: auto;
  border: 1px solid #ffffff90;
  border-radius: 16px;
  background: var(--glass);
  box-shadow: 0 8px 45px #29271e1c, 0 1px 3px #00000005;
  backdrop-filter: blur(30px) saturate(1.4);
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: center;
  gap: 22px;
  padding: 12px 17px;
  height: 83px;
}
.player-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.player-open {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-align: left;
  padding: 0;
  flex: 1;
}
.player-open img {
  height: 46px;
  width: 46px;
  border-radius: 6px;
}
.player-track .track-title {
  font-size: 12px;
}
.player-track .track-artist {
  font-size: 10px;
}
.player-track .icon-btn {
  width: 29px;
  height: 29px;
}
.transport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 30px;
  margin-bottom: 4px;
}
.transport .icon-btn {
  height: 29px;
  width: 29px;
}
.transport .icon {
  width: 17px;
  height: 17px;
}
.transport .play-btn .icon {
  width: 24px;
  height: 24px;
}
.transport .play-btn {
  height: 32px;
  width: 32px;
}
.transport .minor {
  color: var(--muted);
}
.transport .minor.active {
  color: var(--accent);
}
.transport .minor .icon {
  width: 14px;
  height: 14px;
}
.progress-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
.time {
  font-variant-numeric: tabular-nums;
  font-size: 8px;
  color: var(--muted);
  min-width: 25px;
}
.time.remaining {
  text-align: right;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 4px;
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--accent) var(--progress, 0%),
    var(--line) var(--progress, 0%)
  );
  accent-color: var(--accent);
  padding: 0;
  width: 100%;
  margin: 10px 0;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  background: var(--accent);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:focus-visible::-webkit-slider-thumb {
  opacity: 1;
}
input[type="range"]::-moz-range-thumb {
  background: var(--accent);
  border: 0;
  width: 8px;
  height: 8px;
}
.player-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.player-options .icon-btn {
  width: 31px;
  height: 31px;
  color: var(--muted);
}
.player-options .icon-btn.active {
  color: var(--accent);
}
.player-options .icon {
  width: 17px;
  height: 17px;
}
.volume-slider {
  max-width: 66px;
  margin-right: 9px !important;
}
.mobile-transport {
  display: none;
}
#mobile-nav {
  display: none;
}
.queue-panel {
  position: fixed;
  right: 17px;
  top: 75px;
  bottom: 119px;
  width: 340px;
  z-index: 44;
  background: var(--glass);
  backdrop-filter: blur(35px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 15px;
  padding: 22px;
  overflow: auto;
  animation: panel-in 0.24s ease-out;
}
.queue-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.queue-head h2 {
  font-size: 22px;
}
.queue-subtitle {
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0 15px;
}
.queue-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.queue-controls label {
  margin-left: auto;
  font-size: 10px;
  color: var(--muted);
}
.queue-row {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  min-width: 0;
}
.queue-row .row-main {
  gap: 9px;
}
.queue-row img {
  width: 37px;
  height: 37px;
  border-radius: 5px;
}
.queue-row .track-title {
  font-size: 11px;
}
.queue-row .track-artist {
  font-size: 9px;
}
.queue-row .drag-handle {
  color: var(--muted);
  cursor: grab;
  font-size: 15px;
  padding: 4px;
}
.queue-row.dragging {
  opacity: 0.35;
}
.queue-row.drop-target {
  border-top: 2px solid var(--accent);
}
.queue-move {
  display: flex;
  flex-direction: column;
}
.queue-move button {
  height: 16px;
  width: 22px;
  display: grid;
  place-items: center;
}
.queue-move .icon {
  width: 11px;
  height: 11px;
}
.queue-row > .icon-btn {
  height: 25px;
  width: 25px;
}
.queue-row > .icon-btn .icon {
  width: 13px;
  height: 13px;
}
.queue-history {
  margin-top: 25px;
}
.queue-history .eyebrow {
  margin-bottom: 10px;
}
.toggle {
  appearance: none;
  width: 29px;
  height: 17px;
  border-radius: 20px;
  background: var(--line);
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  margin-left: 5px;
}
.toggle:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle:checked {
  background: var(--accent);
}
.toggle:checked:before {
  transform: translateX(12px);
}
.full-player {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #132a34;
  color: #fff;
  overflow: auto;
  --muted: #ffffff80;
  --text: #fff;
  --line: #ffffff28;
  --hover: #ffffff14;
  --accent: #fff;
  animation: full-in 0.42s cubic-bezier(0.2, 0.75, 0.3, 1);
  touch-action: pan-y;
}
.full-backdrop {
  position: fixed;
  inset: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  object-fit: cover;
  filter: blur(90px) brightness(0.43) saturate(0.85);
  z-index: -1;
  pointer-events: none;
}
.full-top {
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 38px;
}
.full-top .eyebrow {
  color: #ffffff70;
  font-size: 10px;
}
.full-top .icon-btn {
  background: #ffffff10;
}
.full-layout {
  width: min(1050px, 90%);
  margin: 20px auto 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  min-height: calc(100dvh - 190px);
}
.full-cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  box-shadow: 0 25px 70px #0006;
  view-transition-name: player-art;
  user-select: none;
  -webkit-user-drag: none;
}
.full-artwork {
  touch-action: pan-y;
}
.full-artwork .swipe-hint {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.5px;
  color: #ffffff4d;
  margin-top: 22px;
}
.full-info {
  min-width: 0;
}
.full-track-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 29px;
}
.full-track-heading > div {
  flex: 1;
  min-width: 0;
}
.full-track-heading h2 {
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 1.35;
}
.full-track-heading p {
  font-size: 16px;
  color: #ffffff80;
  margin-top: 8px;
}
.full-track-heading .icon-btn {
  background: #ffffff10;
}
.full-track-heading .active {
  color: #fa90a4;
}
.full-player input[type="range"] {
  --accent: #fff;
  height: 4px;
}
.full-player input[type="range"]::-webkit-slider-thumb {
  background: #fff;
}
.full-progress {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.full-progress input {
  flex-basis: 100%;
}
.full-progress .time {
  font-size: 10px;
}
.full-transport {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 27px 0;
}
.full-transport .icon-btn {
  height: 55px;
  width: 55px;
}
.full-transport .icon {
  height: 28px;
  width: 28px;
}
.full-transport .play-btn .icon {
  width: 47px;
  height: 47px;
}
.full-volume {
  display: flex;
  gap: 15px;
  align-items: center;
}
.full-volume > .icon {
  width: 16px;
  height: 16px;
  color: #ffffff70;
}
.full-tabs {
  display: flex;
  justify-content: space-around;
  margin-top: 26px;
}
.full-tabs .icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: #ffffff9c;
}
.full-tabs .icon-btn.active {
  color: #fff;
  background: #ffffff1d;
}
.full-mode-panel {
  max-height: 64vh;
  overflow: auto;
  scrollbar-width: thin;
  padding-right: 10px;
}
.full-mode-panel .queue-row img {
  width: 41px;
  height: 41px;
}
.full-mode-panel .queue-row .track-title {
  font-size: 13px;
}
.full-mode-panel .queue-row .track-artist {
  font-size: 11px;
}
.full-mode-panel .empty-state {
  padding: 35px 0;
}
.full-mode-panel .empty-state > p {
  color: #ffffff80;
}
.lyrics-lines {
  max-height: 56vh;
  overflow: auto;
  scrollbar-width: none;
  mask-image: linear-gradient(transparent, #000 12%, #000 85%, transparent);
  padding: 50px 0;
}
.lyric-line {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  font-size: 25px;
  font-weight: 750;
  line-height: 1.4;
  color: #ffffff50;
  transition: color 0.3s;
}
.lyric-line.current {
  color: #fff;
}
.mode-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.mode-heading h2 {
  font-size: 24px;
}
.context-menu {
  position: fixed;
  z-index: 120;
  min-width: 205px;
  padding: 7px;
  background: var(--glass);
  backdrop-filter: blur(30px);
  box-shadow: 0 10px 45px #0003;
  border: 1px solid var(--line);
  border-radius: 12px;
  animation: panel-in 0.15s ease-out;
}
.menu-label {
  padding: 8px 10px 10px;
  color: var(--muted);
  font-size: 10px;
  border-bottom: 1px solid var(--line);
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-item {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 10px;
  width: 100%;
  text-align: left;
  font-size: 12px;
  border-radius: 6px;
}
.menu-item .icon {
  width: 17px;
  height: 17px;
  color: var(--muted);
}
.menu-item:hover {
  background: var(--hover);
}
.menu-item.danger {
  color: #d75c63;
}
#toast {
  position: fixed;
  bottom: 124px;
  left: calc(50% + 110px);
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;
  z-index: 150;
  background: var(--text);
  color: var(--bg);
  padding: 12px 19px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 12px;
  transition: opacity 0.2s, transform 0.2s;
  max-width: calc(100vw - 30px);
  text-align: center;
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
dialog {
  width: min(460px, calc(100% - 30px));
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  color: var(--text);
  padding: 27px;
  box-shadow: 0 25px 100px #0003;
  max-height: 85vh;
  overflow: auto;
}
dialog::backdrop {
  background: #14182066;
  backdrop-filter: blur(5px);
}
.modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.modal-title h2 {
  font-size: 23px;
}
.modal-copy {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
}
.field-label {
  display: block;
  font-size: 12px;
  margin: 20px 0 7px;
}
.text-input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg);
  color: var(--text);
}
.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 25px;
}
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.setting-row small {
  display: block;
  font-size: 10px;
  max-width: 240px;
  line-height: 1.5;
  margin-top: 5px;
}
.setting-row select {
  max-width: 125px;
  border: 1px solid var(--line);
  padding: 7px;
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font-size: 11px;
}
.offline-banner {
  padding: 9px 16px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  margin-bottom: 20px;
}
.skeleton {
  background: var(--hover);
  border-radius: 10px;
  min-height: 300px;
}
.mobile-brand {
  display: none;
}
html[data-theme="dark"] {
  --bg: #171819;
  --surface: #202123;
  --sidebar: #131415;
  --text: #eeeeec;
  --muted: #8c8e90;
  --line: #2b2d2f;
  --accent: #fa7188;
  --accent-soft: #42242d;
  --glass: rgba(33, 34, 36, 0.88);
  --hover: #292b2d;
  color-scheme: dark;
}
html[data-theme="dark"] .player-bar {
  border-color: #ffffff0f;
}
html[data-theme="dark"] .detail-hero {
  background: linear-gradient(120deg, var(--art-dark), transparent);
}
html[data-theme="dark"] .avatar {
  background: #403b33;
  color: #dfd2b9;
}
html[data-theme="dark"] .import-button {
  border-color: #3b3c3b;
}
html[data-theme="dark"] .filter-chip.selected {
  color: #222;
}
html[data-reduce-transparency="true"] {
  --glass: var(--surface);
}
html[data-reduce-transparency="true"] .full-backdrop {
  display: none;
}
html[data-reduce-transparency="true"] .player-bar,
html[data-reduce-transparency="true"] .queue-panel {
  backdrop-filter: none;
}
html[data-large-text="true"] {
  font-size: 18px;
}
html[data-large-text="true"] .track-title {
  font-size: 16px;
}
html[data-large-text="true"] .track-artist {
  font-size: 13px;
}
html[data-large-text="true"] .nav-item {
  font-size: 15px;
}
html[data-large-text="true"] .player-bar {
  height: 98px;
}
html[data-large-text="true"] .song-row {
  min-height: 74px;
}
html[data-high-contrast="true"] {
  --muted: #545655;
  --line: #999;
  --glass: var(--surface);
}
html[data-high-contrast="true"][data-theme="dark"] {
  --muted: #d0d1d3;
  --line: #aaa;
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes full-in {
  from {
    opacity: 0.2;
    transform: translateY(35px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
}
::view-transition-group(player-art) {
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0.2, 0.75, 0.3, 1);
}
@media (min-width: 1500px) {
  :root {
    --sidebar-width: 240px;
  }
  #main {
    padding-left: 55px;
    padding-right: 55px;
  }
  .hero {
    height: 340px;
  }
  .hero h2 {
    font-size: 40px;
    max-width: 340px;
  }
  .hero.sunrise h2 {
    font-size: 39px;
  }
  .hero p {
    font-size: 12px;
  }
  .song-row {
    min-height: 72px;
  }
  .song-row img {
    width: 46px;
    height: 46px;
  }
  .track-title {
    font-size: 14px;
  }
  .track-artist {
    font-size: 12px;
  }
  .shelf {
    grid-auto-columns: calc((100% - 100px) / 6);
    gap: 20px;
  }
  .player-bar {
    left: calc(var(--sidebar-width) + 50px);
    right: 50px;
  }
}
@media (max-width: 1100px) {
  :root {
    --sidebar-width: 190px;
  }
  #sidebar {
    padding-left: 10px;
    padding-right: 10px;
  }
  .brand {
    font-size: 25px;
  }
  #topbar {
    padding: 0 28px;
  }
  #main {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero {
    height: 267px;
    padding: 20px;
  }
  .hero h2,
  .hero.sunrise h2 {
    font-size: 28px;
    max-width: 210px;
  }
  .hero-play {
    right: 18px;
    bottom: 22px;
    width: 36px;
    height: 36px;
  }
  .hero p {
    max-width: 190px;
  }
  .hero-grid {
    gap: 16px;
  }
  .song-grid {
    gap: 0 17px;
  }
  .song-row {
    gap: 5px;
  }
  .song-row img {
    width: 34px;
    height: 34px;
  }
  .row-main {
    gap: 8px;
  }
  .song-row > .icon-btn {
    width: 21px;
  }
  .shelf {
    grid-auto-columns: calc((100% - 51px) / 4);
    gap: 17px;
  }
  .player-bar {
    left: calc(var(--sidebar-width) + 22px);
    right: 22px;
    gap: 12px;
    padding: 11px 13px;
  }
  .player-options .volume-slider {
    display: none;
  }
  .player-options .icon-btn {
    width: 28px;
  }
  .player-track .icon-btn {
    display: none;
  }
  .full-layout {
    gap: 45px;
  }
  .detail-hero > img {
    width: 200px;
  }
  .detail-hero h1 {
    font-size: 31px;
  }
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  :root {
    --sidebar-width: 170px;
  }
  #sidebar {
    padding-top: 25px;
  }
  .brand {
    font-size: 22px;
    padding-left: 10px;
  }
  .nav-item {
    padding-left: 10px;
    font-size: 12px;
    gap: 9px;
  }
  .nav-heading {
    padding-left: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-wrap:nth-child(2) {
    display: none;
  }
  .hero {
    height: 280px;
  }
  .hero h2 {
    font-size: 35px;
    max-width: 290px;
  }
  .hero p {
    max-width: 300px;
  }
  .song-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .song-grid > .song-row:nth-child(n + 7) {
    display: none;
  }
  .player-bar {
    grid-template-columns: 1fr 1fr;
  }
  .player-options {
    display: none;
  }
  .shelf {
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: 16px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-hero {
    gap: 20px;
    padding: 15px;
  }
  .detail-hero > img {
    width: 145px;
  }
  .detail-hero h1 {
    font-size: 26px;
  }
  .detail-actions {
    gap: 6px;
    flex-wrap: wrap;
  }
  .detail-actions .primary-button,
  .detail-actions .secondary-button {
    padding: 9px 14px;
  }
  .full-layout {
    gap: 30px;
  }
  .full-track-heading h2 {
    font-size: 22px;
  }
  .full-track-heading p {
    font-size: 13px;
  }
  .top-search {
    display: none;
  }
  .page-heading .date {
    display: none;
  }
}
@media (max-width: 600px) {
  :root {
    --sidebar-width: 0px;
  }
  #sidebar {
    display: none;
  }
  .workspace {
    margin: 0;
  }
  #topbar {
    height: 67px;
    padding: 10px 20px;
  }
  .mobile-brand {
    display: flex;
    padding: 0;
    font-size: 24px;
    gap: 7px;
  }
  .mobile-brand .brand-symbol {
    transform: scale(0.85);
  }
  .top-left .breadcrumb {
    display: none;
  }
  .top-left .icon-btn {
    display: none;
  }
  .top-left .icon-btn.can-back {
    display: flex;
  }
  .top-right {
    gap: 8px;
  }
  .top-right .icon-btn {
    border: 0;
    background: none;
    width: 32px;
  }
  .top-right .avatar {
    width: 29px;
    height: 29px;
  }
  .top-left {
    gap: 0;
  }
  #main {
    padding: 8px 20px 174px;
  }
  h1 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .page-heading {
    margin-bottom: 24px;
  }
  .page-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 7px;
  }
  .page-heading p {
    font-size: 11px;
    margin-top: 7px;
  }
  .hero-grid {
    display: flex;
    gap: 14px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-right: -20px;
    padding-right: 20px;
  }
  .hero-wrap {
    flex: 0 0 93%;
    scroll-snap-align: start;
  }
  .hero-wrap:nth-child(2) {
    display: block;
  }
  .hero {
    height: 291px;
    padding: 24px;
  }
  .hero h2,
  .hero.sunrise h2 {
    font-size: 33px;
    max-width: 270px;
  }
  .hero p {
    font-size: 10px;
    max-width: 220px;
  }
  .hero-play {
    width: 39px;
    height: 39px;
    right: 21px;
    bottom: 26px;
  }
  .hero-caption {
    font-size: 12px;
  }
  .hero-caption span {
    font-size: 10px;
  }
  .hero-wrap > .eyebrow {
    font-size: 8px;
  }
  .section-head {
    margin-top: 27px;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 20px;
  }
  .song-grid {
    grid-auto-flow: column;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: 89%;
    grid-template-columns: none;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0 17px;
    margin-right: -20px;
    padding-right: 20px;
  }
  .song-grid > .song-row:nth-child(n + 7) {
    display: flex;
  }
  .song-row {
    scroll-snap-align: start;
    min-height: 66px;
    gap: 10px;
  }
  .song-row img {
    width: 43px;
    height: 43px;
  }
  .row-main {
    gap: 12px;
  }
  .track-title {
    font-size: 13px;
  }
  .track-artist {
    font-size: 11px;
  }
  .song-row > .icon-btn {
    width: 31px;
  }
  .shelf {
    grid-auto-columns: 44%;
    gap: 15px;
    margin-right: -20px;
    padding-right: 20px;
  }
  .card-title {
    font-size: 12px;
  }
  .media-card p {
    font-size: 10px;
  }
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }
  .bottom-note {
    flex-direction: column;
    gap: 8px;
    font-size: 9px;
  }
  .player-bar {
    height: 62px;
    left: 12px;
    right: 12px;
    bottom: calc(83px + env(safe-area-inset-bottom));
    border-radius: 13px;
    display: flex;
    gap: 8px;
    padding: 8px 11px;
    transition: bottom 0.3s, height 0.3s, left 0.3s, right 0.3s;
  }
  .player-track {
    flex: 1;
    min-width: 0;
  }
  .player-open img {
    width: 44px;
    height: 44px;
  }
  .player-open .track-title {
    font-size: 12px;
  }
  .player-open .track-artist {
    font-size: 10px;
  }
  .player-center {
    display: none;
  }
  .mobile-transport {
    display: flex;
    gap: 6px;
  }
  .mobile-transport .icon-btn {
    width: 33px;
    height: 38px;
  }
  .mobile-transport .icon {
    width: 22px;
    height: 22px;
  }
  .mini-progress {
    position: absolute;
    height: 2px;
    background: var(--accent);
    bottom: 0;
    left: 11px;
    max-width: calc(100% - 22px);
    border-radius: 2px;
    transition: width 0.2s linear;
  }
  #mobile-nav {
    display: flex;
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 12px;
    right: 12px;
    z-index: 46;
    border-radius: 22px;
    border: 1px solid #ffffff88;
    padding: 7px 6px;
    background: var(--glass);
    backdrop-filter: blur(30px) saturate(1.4);
    box-shadow: 0 8px 30px #00000015;
    justify-content: space-around;
    gap: 2px;
    height: 59px;
    transition: width 0.3s, left 0.3s, right 0.3s;
  }
  .mobile-tab {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-direction: column;
    font-size: 8px;
    color: var(--muted);
    padding: 4px 2px;
    border-radius: 14px;
    min-width: 0;
  }
  .mobile-tab .icon {
    width: 20px;
    height: 20px;
  }
  .mobile-tab.selected {
    color: var(--accent);
    background: var(--accent-soft);
    font-weight: 700;
  }
  .nav-collapsed #mobile-nav {
    left: auto;
    right: 12px;
    width: 55px;
    border-radius: 19px;
  }
  .nav-collapsed .mobile-tab:not(.selected) {
    display: none;
  }
  .nav-collapsed .mobile-tab.selected {
    background: transparent;
  }
  .nav-collapsed .player-bar {
    right: 76px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    height: 59px;
  }
  .nav-collapsed .player-open img {
    width: 37px;
    height: 37px;
  }
  .nav-collapsed .mobile-transport {
    gap: 0;
  }
  .nav-collapsed .mobile-transport .icon-btn {
    width: 28px;
  }
  .nav-collapsed .mobile-transport .icon {
    width: 19px;
  }
  .queue-panel {
    left: 12px;
    right: 12px;
    top: 74px;
    bottom: 157px;
    width: auto;
  }
  #toast {
    bottom: 165px;
    left: 50%;
  }
  .full-top {
    height: 67px;
    padding: 14px 20px;
  }
  .full-layout {
    display: block;
    width: 100%;
    margin: 0;
    padding: 15px 30px 35px;
    min-height: 0;
  }
  .full-artwork {
    max-width: 370px;
    margin: 0 auto 30px;
  }
  .full-cover {
    border-radius: 10px;
  }
  .full-artwork .swipe-hint {
    display: none;
  }
  .full-track-heading {
    margin-bottom: 23px;
  }
  .full-track-heading h2 {
    font-size: 23px;
  }
  .full-track-heading p {
    font-size: 15px;
    margin-top: 7px;
  }
  .full-track-heading .icon-btn {
    width: 35px;
    height: 35px;
  }
  .full-transport {
    margin: 23px 0;
  }
  .full-transport .play-btn .icon {
    width: 43px;
    height: 43px;
  }
  .full-tabs {
    margin-top: 19px;
  }
  .full-mode-panel {
    max-height: calc(100dvh - 175px);
  }
  .full-layout.mode-queue .full-artwork,
  .full-layout.mode-lyrics .full-artwork {
    display: none;
  }
  .full-player .empty-state {
    min-height: 55vh;
  }
  .detail-hero {
    flex-direction: column;
    padding: 20px 15px;
    text-align: center;
    gap: 18px;
  }
  .detail-hero > img {
    width: 215px;
    max-width: 75%;
  }
  .detail-hero h1 {
    font-size: 28px;
  }
  .detail-hero .detail-actions {
    justify-content: center;
    margin-top: 15px;
  }
  .detail-hero p {
    font-size: 11px;
  }
  .category {
    min-height: 132px;
    padding: 19px;
    font-size: 20px;
  }
  .category img {
    width: 100px;
    height: 100px;
  }
  .search-field {
    padding: 12px;
  }
  .search-field input {
    font-size: 12px;
  }
  .station-banner {
    display: block;
    min-height: 250px;
    padding: 25px;
  }
  .station-banner h2 {
    font-size: 28px;
  }
  .station-banner .primary-button {
    margin-top: 22px;
  }
  .station-banner:after {
    right: -100px;
  }
  .page-heading > .primary-button {
    padding: 10px;
    font-size: 10px;
  }
  .filter-chip {
    font-size: 10px;
    padding: 7px 12px;
  }
  .wide-list .duration {
    margin: 0 2px;
  }
  .wide-list .row-main {
    gap: 10px;
  }
  .wide-list .track-title {
    font-size: 12px;
  }
  .wide-list .track-artist {
    font-size: 10px;
  }
  .wide-list .song-row > .icon-btn {
    width: 28px;
  }
  .context-menu {
    max-width: calc(100vw - 24px);
  }
  html[data-large-text="true"] .player-bar {
    height: 72px;
  }
  html[data-large-text="true"] .player-open .track-title {
    font-size: 14px;
  }
  html[data-large-text="true"] .song-grid {
    grid-auto-columns: 95%;
  }
}
@media (max-width: 370px) {
  #main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero {
    padding: 20px;
    height: 270px;
  }
  .hero h2 {
    font-size: 30px;
  }
  .hero-play {
    right: 15px;
  }
  .full-layout {
    padding: 10px 25px 25px;
  }
  .full-artwork {
    margin-bottom: 24px;
  }
  .full-transport {
    margin: 17px 0;
  }
  .full-tabs {
    margin-top: 10px;
  }
  .player-open .track-artist {
    max-width: 140px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-group(player-art) {
    animation: none !important;
  }
}
html[data-reduce-motion="true"] *,
html[data-reduce-motion="true"] *:before,
html[data-reduce-motion="true"] *:after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
