:root {
  --bg: #090b0f;
  --bg-soft: #12141c;
  --panel: rgba(15, 19, 28, 0.78);
  --panel-strong: rgba(12, 16, 24, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f2eb;
  --muted: #c7c2bb;
  --accent-ice: #adc7da;
  --accent-olive: #7c8c5d;
  --accent-wine: #8d2f41;
  --accent-gold: #b9905c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 18px;
  --page-max: 1180px;
  --display-font: "Arial Black", "Avenir Next Condensed", "Franklin Gothic Heavy", sans-serif;
  --body-font: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 199, 218, 0.16), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(141, 47, 65, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(124, 140, 93, 0.14), transparent 28%),
    linear-gradient(180deg, #06070a 0%, #0a0d13 45%, #090b10 100%);
}

body.player-mounted {
  padding-bottom: 176px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(173, 199, 218, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: min(calc(100% - 32px), var(--page-max));
  margin: 0 auto;
  padding: 10px 0 40px;
}

.site-footer,
.hero,
.release-layout,
.about-layout {
  width: 100%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hero-nav {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 2px;
}

.site-nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.section-block {
  margin-top: 22px;
}

.section-frame {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 18px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 0 12px 12px;
}

.hero-meta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-topline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.eyebrow,
.section-kicker,
.release-label,
.now-playing-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-ice);
  font-size: 0.75rem;
}

.hero h1,
.section-heading h2,
.release-copy h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

.hero h1 {
  font-size: clamp(3rem, 18vw, 7rem);
  max-width: 8ch;
  margin-top: 8px;
}

.hero-tagline {
  margin: 0;
  font-size: clamp(1.15rem, 4.2vw, 1.65rem);
  line-height: 1.25;
  color: var(--text);
  max-width: 100%;
  text-align: left;
}

.hero-tagline p {
  margin: 0;
}

.hero-tagline p + p {
  margin-top: 1.1em;
}

.hero-summary,
.release-copy p,
.about-copy p,
.post-card p,
.contact-panel p,
.platform-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.hero-actions,
.button-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-socials {
  display: grid;
  grid-template-columns: repeat(3, 54px);
  gap: 15px;
  width: fit-content;
  max-width: 100%;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.button-primary {
  background: linear-gradient(135deg, rgba(173, 199, 218, 0.18), rgba(185, 144, 92, 0.2));
}

.button-secondary,
.button-tertiary {
  background: rgba(255, 255, 255, 0.04);
}

.button-tertiary {
  padding-inline: 16px;
}

.hero-art {
  margin: 0;
  min-height: 380px;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  position: relative;
}

.hero-art::after,
.release-image-link::after,
.post-card figure::after,
.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 11, 15, 0.02), rgba(9, 11, 15, 0.36));
  pointer-events: none;
}

.hero-art img,
.release-image-link img,
.post-card img,
.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art img {
  object-position: 68% 52%;
}

.release-image-link img {
  object-position: 62% 55%;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
  max-width: 12ch;
}

.section-heading-tight h2 {
  max-width: 14ch;
}

.music-library {
  padding: 18px;
}

.music-library-status[hidden] {
  display: none;
}

.music-status,
.music-empty-state {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  padding: 20px 22px;
}

.music-status {
  color: var(--muted);
  margin-bottom: 14px;
}

.music-status-error {
  border-color: rgba(255, 84, 105, 0.35);
  color: #ffd9de;
}

.music-empty-state h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.music-empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.music-empty-state code {
  font-family: Consolas, monospace;
  color: var(--accent-ice);
}

.music-tracklist,
.music-loading-grid,
.platform-grid,
.post-grid,
.mosaic-grid {
  display: grid;
  gap: 14px;
}

.music-archive {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.music-archive-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #b8e7a1;
  background: rgba(184, 231, 161, 0.08);
  border: 1px solid rgba(184, 231, 161, 0.22);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.music-archive-link:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 231, 161, 0.52);
  background: rgba(184, 231, 161, 0.16);
}

.music-archive-link svg {
  width: 22px;
  height: 22px;
}

.track-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(173, 199, 218, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.track-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.track-card.is-active {
  border-color: rgba(173, 199, 218, 0.45);
  background:
    linear-gradient(135deg, rgba(173, 199, 218, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
}

.track-card.is-playing {
  box-shadow: 0 18px 36px rgba(173, 199, 218, 0.12);
}

.track-card.is-error {
  border-color: rgba(255, 84, 105, 0.4);
}

.track-card-skeleton {
  pointer-events: none;
}

.track-main,
.track-actions,
.now-playing-main,
.now-playing-progress,
.now-playing-secondary {
  display: flex;
  align-items: center;
}

.track-main {
  min-width: 0;
  gap: 16px;
}

.track-actions {
  gap: 12px;
}

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

.track-copy h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.2;
}

.track-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.track-duration {
  min-width: 3.5rem;
  text-align: right;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.track-duration.is-loading {
  color: rgba(199, 194, 187, 0.55);
}

.track-play-button,
.track-download-button,
.player-icon-button,
.player-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.track-play-button:hover,
.track-download-button:hover,
.player-icon-button:hover,
.player-primary-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.1);
}

.track-play-button:disabled,
.player-icon-button:disabled,
.player-primary-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.track-play-button,
.player-icon-button {
  width: 46px;
  height: 46px;
  padding: 0;
}

.player-primary-button {
  width: 58px;
  height: 58px;
  padding: 0;
  background: linear-gradient(135deg, rgba(173, 199, 218, 0.22), rgba(185, 144, 92, 0.22));
}

.track-download-button {
  width: 44px;
  height: 44px;
  padding: 0;
}

.track-play-button svg,
.track-download-button svg,
.player-icon-button svg,
.player-primary-button svg {
  width: 22px;
  height: 22px;
}

.track-skeleton {
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}

.track-skeleton-button {
  width: 44px;
  height: 44px;
}

.track-skeleton-title {
  width: min(280px, 55vw);
  max-width: 100%;
  height: 18px;
  margin-bottom: 8px;
}

.track-skeleton-meta {
  width: min(160px, 35vw);
  max-width: 100%;
  height: 12px;
}

.track-skeleton-duration {
  width: 54px;
  height: 14px;
}

.now-playing-shell {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 0 16px max(16px, env(safe-area-inset-bottom));
  pointer-events: none;
}

.now-playing-bar {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 19, 28, 0.96), rgba(12, 16, 24, 0.98)),
    rgba(9, 11, 15, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.now-playing-bar.is-idle {
  border-color: rgba(255, 255, 255, 0.1);
}

.now-playing-bar.has-error {
  border-color: rgba(255, 84, 105, 0.32);
}

.now-playing-main {
  justify-content: space-between;
  gap: 16px;
}

.now-playing-copy {
  min-width: 0;
}

.now-playing-label {
  margin-bottom: 6px;
}

.now-playing-title {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.1;
}

.now-playing-status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.now-playing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.now-playing-progress,
.now-playing-secondary {
  gap: 16px;
  margin-top: 16px;
}

.now-playing-secondary {
  justify-content: flex-end;
}

.timecode {
  min-width: 3rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
}

.player-progress,
.player-volume {
  width: 100%;
  accent-color: var(--accent-ice);
}

.player-progress {
  flex: 1;
}

.player-volume {
  max-width: 140px;
}

.player-download {
  gap: 10px;
}

.player-download[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.42;
}

.release-layout,
.about-layout {
  display: grid;
  gap: 18px;
}

.release-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.release-card,
.release-copy,
.post-card,
.platform-card,
.contact-panel,
.about-copy,
.mosaic-panel {
  overflow: hidden;
}

.release-card {
  position: relative;
}

.release-image-link {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.play-badge {
  position: absolute;
  inset: auto auto 18px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(9, 11, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--accent-ice);
}

.embed-shell {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.release-copy,
.about-copy,
.contact-panel {
  padding: 22px;
}

.release-copy h3 {
  font-size: clamp(1.8rem, 8vw, 3rem);
  margin: 10px 0 12px;
}

.platform-card,
.post-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.platform-card {
  padding: 22px 18px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.platform-card strong,
.post-card h3 {
  font-size: 1.2rem;
}

.platform-card .button-tertiary,
.post-card .button-tertiary {
  width: fit-content;
}

.platform-card strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: transform 160ms ease, opacity 160ms ease;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.hero-social-link:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.hero-social-link .social-icon {
  width: 32px;
  height: 32px;
}

.social-icon {
  width: 34px;
  height: 34px;
  color: var(--text);
}

.footer-links {
  align-items: center;
}

.contact-icons {
  align-items: center;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-icon-link .social-icon {
  width: 18px;
  height: 18px;
}

.contact-icons .footer-icon-link {
  width: 52px;
  height: 52px;
}

.contact-icons .footer-icon-link .social-icon {
  width: 22px;
  height: 22px;
}

.mosaic-panel {
  padding: 14px;
}

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

.mosaic-card {
  position: relative;
  min-height: 140px;
  border-radius: 18px;
  overflow: hidden;
}

.mosaic-card.tall {
  min-height: 210px;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-embed-shell {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #050608;
}

.post-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-video-fallback {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050608;
}

.post-video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 8, 0.08), rgba(4, 6, 8, 0.28));
}

.post-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  background: #ff0033;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.post-video-play::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 0 10px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
}

.no-script-note {
  width: min(calc(100% - 32px), var(--page-max));
  margin: 0 auto 24px;
  color: var(--muted);
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

@media (min-width: 700px) {
  .page-shell {
    width: min(calc(100% - 48px), var(--page-max));
    padding-top: 8px;
  }

  body.player-mounted {
    padding-bottom: 164px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    min-height: 500px;
    padding: 22px;
  }

  .hero-copy {
    padding: 6px 22px 22px;
  }

  .hero-meta-row {
    gap: 24px;
  }

  .hero-socials {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    gap: 18px;
  }

  .music-library {
    padding: 22px;
  }

  .track-card {
    padding: 20px 22px;
  }

  .now-playing-bar {
    padding: 20px 24px;
  }

  .player-volume {
    max-width: 180px;
  }

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

  .release-layout,
  .about-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: stretch;
  }

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

  .mosaic-card.span-two {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  body.player-mounted {
    padding-bottom: 146px;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .now-playing-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 1fr) auto;
    align-items: center;
    gap: 22px;
  }

  .now-playing-progress,
  .now-playing-secondary {
    margin-top: 0;
  }

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

@media (max-width: 699px) {
  body.player-mounted {
    padding-bottom: 204px;
  }

  .track-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .track-actions {
    justify-content: space-between;
  }

  .now-playing-bar {
    padding: 14px;
    border-radius: 22px;
  }

  .now-playing-main {
    align-items: center;
    gap: 12px;
  }

  .now-playing-copy {
    flex: 1;
  }

  .now-playing-label {
    margin-bottom: 4px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .now-playing-title {
    font-size: 1.12rem;
  }

  .now-playing-status {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    font-size: 0.83rem;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .now-playing-actions {
    gap: 6px;
  }

  .now-playing-actions .player-icon-button {
    width: 38px;
    height: 38px;
  }

  .now-playing-actions .player-primary-button {
    width: 46px;
    height: 46px;
  }

  .now-playing-actions .player-icon-button svg,
  .now-playing-actions .player-primary-button svg {
    width: 19px;
    height: 19px;
  }

  .now-playing-progress {
    gap: 8px;
    margin-top: 12px;
  }

  .timecode {
    min-width: 2.4rem;
    font-size: 0.8rem;
  }

  .now-playing-secondary {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .now-playing-secondary .player-icon-button {
    width: 38px;
    height: 38px;
  }

  .player-volume {
    max-width: none;
    flex: 1;
  }

  .player-download {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .now-playing-bar.is-idle .now-playing-progress,
  .now-playing-bar.is-idle .now-playing-secondary {
    display: none;
  }

  .now-playing-bar.is-idle .now-playing-main {
    min-height: 46px;
  }
}

@media (max-width: 359px) {
  .now-playing-shell {
    padding-inline: 8px;
  }

  .now-playing-bar {
    padding: 12px;
  }

  .now-playing-actions {
    gap: 4px;
  }

  .now-playing-actions .player-icon-button {
    width: 34px;
    height: 34px;
  }

  .now-playing-actions .player-primary-button {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav a,
  .button,
  .track-card,
  .track-play-button,
  .track-download-button,
  .player-icon-button,
  .player-primary-button {
    transition: none;
  }

  .site-nav a:hover,
  .hero-social-link:hover,
  .button:hover,
  .track-card:hover,
  .track-play-button:hover,
  .track-download-button:hover,
  .player-icon-button:hover,
  .player-primary-button:hover {
    transform: none;
  }

  .track-skeleton {
    animation: none;
  }
}
