:root {
  --ink: #0a0a0b;
  --surface: #131317;
  --surface-2: #1b1b20;
  --paper: #f4f1e8;
  --paper-deep: #e9e5da;
  --muted: #a7a5a0;
  --line: #2a2a2d;
  --lime: #c9ff38;
  --violet: #5b52ff;
  --pink: #ff4fc8;
  --page-gutter: clamp(20px, 3.6vw, 52px);
  --section-space: clamp(72px, 9vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

section[id],
header[id] {
  scroll-margin-top: 84px;
}

.display {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.page-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.section-pad {
  padding: var(--section-space) var(--page-gutter);
}

.dark-section {
  background: var(--ink);
  color: var(--paper);
}

.paper-section {
  background: var(--paper);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.visually-hidden {
  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 {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgb(10 10 11 / 92%);
  backdrop-filter: blur(16px);
}

.site-nav {
  min-height: 84px;
  padding: 0 var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  font-size: 34px;
}

.brand-detail {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.nav-links a,
.footer-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  padding: 28px var(--page-gutter) 72px;
  background: var(--ink);
}

.hero-collage {
  position: relative;
  height: min(62vw, 900px);
  min-height: 700px;
}

.collage-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.collage-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(10 10 11 / 24%));
  content: "";
  pointer-events: none;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.collage-one {
  top: 28px;
  left: 0;
  width: 24%;
  height: 34%;
}

.collage-two {
  top: 28px;
  left: 26%;
  width: 32%;
  height: 24%;
}

.collage-three {
  top: 28px;
  right: 0;
  width: 40%;
  height: 34%;
}

.collage-four {
  bottom: 0;
  left: 0;
  width: 34%;
  height: 46%;
}

.collage-five {
  bottom: 0;
  left: 36%;
  width: 22%;
  height: 58%;
}

.collage-six {
  right: 0;
  bottom: 0;
  width: 40%;
  height: 46%;
}

.collage-four img,
.collage-five img,
.collage-six img {
  object-position: center 24%;
}

.hero-statement {
  position: absolute;
  top: 12%;
  left: 25.5%;
  z-index: 8;
  width: 49%;
  padding: clamp(26px, 4vw, 60px) 24px;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  transform: rotate(1.8deg);
  box-shadow: 0 14px 44px rgb(0 0 0 / 20%);
}

.hero-statement p {
  margin: 0;
  font-size: clamp(52px, 7.1vw, 108px);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--violet);
  color: white;
  box-shadow: 0 8px 24px rgb(91 82 255 / 35%);
}

.button-primary:hover {
  background: var(--lime);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--violet);
  color: white;
}

.hero-button {
  position: absolute;
  bottom: 5.5%;
  left: 50%;
  z-index: 12;
  transform: translateX(-50%);
}

.hero-button:hover {
  transform: translateX(-50%) translateY(-2px);
}

.section-intro,
.section-heading-row {
  margin-bottom: clamp(46px, 5vw, 76px);
}

.split-intro,
.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 8vw, 128px);
}

.section-heading-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.section-title {
  margin: 0;
  font-size: clamp(54px, 6.1vw, 92px);
}

.section-copy,
.melo-copy > p,
.contact-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 17px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-card {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.proof-card:last-child {
  border-right: 0;
}

.proof-card p {
  margin: 0;
}

.proof-card > p:last-child {
  color: var(--muted);
  font-size: 12px;
}

.proof-title {
  font-size: clamp(28px, 2.4vw, 40px);
}

.proof-accent .proof-title {
  color: var(--lime);
}

.proof-ticker {
  height: 58px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  animation: ticker-loop 24s linear infinite;
  will-change: transform;
}

.ticker-group {
  min-width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.ticker-group span {
  min-width: clamp(260px, 25vw, 360px);
  padding-inline: 28px;
  font-family: "Anton", sans-serif;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker-loop {
  to { transform: translate3d(-50%, 0, 0); }
}

.text-link {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.services {
  border-top: 1px solid var(--line);
}

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

.service-row {
  min-height: 155px;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1fr) auto;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}

.service-name {
  display: grid;
  grid-template-columns: 28px 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.service-index {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
}

.service-icon {
  color: var(--violet);
  font-size: 24px;
}

.service-name h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
}

.service-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.service-row > a {
  color: var(--violet);
  font-size: 20px;
}

.service-row-accent .service-index,
.service-row-accent .service-icon,
.service-row-accent > a {
  color: var(--lime);
}

.discovery {
  border-top: 1px solid #ded9ce;
}

.paper-section .section-copy {
  color: #5d5e57;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.discovery-card {
  min-height: 520px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dedad2;
  border-radius: 12px;
}

.discovery-light {
  background: #fff;
  color: var(--ink);
}

.discovery-dark {
  border-color: var(--surface-2);
  background: var(--surface);
  color: var(--paper);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
}

.discovery-dark .card-topline {
  color: var(--lime);
}

.discovery-card h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.6vw, 40px);
}

.discovery-card p {
  margin: 0;
  color: #686962;
  font-size: 12px;
}

.discovery-dark p {
  color: var(--muted);
}

.melo {
  border-top: 1px solid #ded9ce;
}

.melo-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(560px, 1.2fr);
  align-items: stretch;
  gap: clamp(60px, 9vw, 150px);
}

.melo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.melo-copy .section-title {
  margin-bottom: 32px;
}

.melo-copy .button {
  margin-top: 30px;
}

.melo-copy small {
  margin-top: auto;
  padding-top: 70px;
  color: #77766f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-card {
  padding: 22px;
  border-radius: 16px;
  background: var(--surface);
  color: var(--paper);
  box-shadow: 0 18px 42px rgb(10 10 11 / 26%);
}

.player-head,
.recommend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.player-head {
  margin-bottom: 20px;
}

.player-logo {
  font-size: 28px;
  text-transform: lowercase;
}

.player-head span,
.recommend-head {
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-main {
  min-height: 290px;
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(260px, 1.1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-2);
}

.player-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-details {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-details > span {
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.track-details strong {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0.02em;
}

.waveform {
  min-height: 58px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.wave-bar {
  width: clamp(2px, 0.32vw, 4px);
  height: 44px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #c9ff38;
  opacity: 0.78;
  transform: scaleY(0.18);
  animation: waveform-carrier 1.82s ease-in-out infinite alternate;
  animation-delay: var(--wave-delay, 0s);
  transform-origin: center;
  will-change: transform, opacity;
}

.wave-bar:nth-child(6n + 1) { --wave-delay: -0.18s; }
.wave-bar:nth-child(6n + 2) { --wave-delay: -0.44s; }
.wave-bar:nth-child(6n + 3) { --wave-delay: -0.71s; animation-name: waveform-detail; }
.wave-bar:nth-child(6n + 4) { --wave-delay: -0.96s; }
.wave-bar:nth-child(6n + 5) { --wave-delay: -1.22s; animation-name: waveform-detail; }
.wave-bar:nth-child(6n) { --wave-delay: -1.48s; }

@keyframes waveform-carrier {
  0% { transform: scaleY(0.16); opacity: 0.58; }
  28% { transform: scaleY(0.78); opacity: 0.92; }
  53% { transform: scaleY(0.32); opacity: 0.7; }
  78% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.24); opacity: 0.64; }
}

@keyframes waveform-detail {
  0% { transform: scaleY(0.68); opacity: 0.9; }
  24% { transform: scaleY(0.2); opacity: 0.55; }
  49% { transform: scaleY(0.92); opacity: 1; }
  74% { transform: scaleY(0.38); opacity: 0.72; }
  100% { transform: scaleY(0.76); opacity: 0.88; }
}

.player-controls {
  letter-spacing: 0.2em;
}

.recommend-head {
  margin: 22px 0 12px;
}

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

.recommend-grid span {
  aspect-ratio: 1.25;
  border-radius: 6px;
  background: var(--violet);
}

.recommend-grid span:nth-child(2) {
  background: var(--pink);
}

.recommend-grid span:nth-child(3) {
  background: var(--lime);
}

.recommend-grid span:nth-child(4) {
  background: #303038;
}

.artists {
  border-top: 1px solid var(--line);
}

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

.artist-photo {
  position: relative;
  aspect-ratio: 0.62;
  overflow: hidden;
  background: var(--surface);
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 260ms ease, filter 260ms ease;
}

.artist-card:hover .artist-photo img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.artist-photo span {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
}

.artist-card h3 {
  margin: 18px 0 5px;
  font-size: clamp(20px, 1.8vw, 28px);
}

.artist-card p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact {
  background: var(--lime);
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(60px, 10vw, 180px);
}

.contact-copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-copy > p {
  color: #41423a;
}

.contact-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-card:hover {
  background: var(--violet);
  transform: translateY(-4px);
}

.contact-arrow {
  color: var(--lime);
  font-size: 54px;
  line-height: 1;
}

.contact-card-body {
  display: grid;
  gap: 24px;
}

.contact-card strong {
  display: block;
  font-size: clamp(25px, 2.2vw, 36px);
}

.support-list {
  display: grid;
  gap: 16px;
}

.support-channel {
  display: grid;
  grid-template-columns: minmax(76px, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgb(244 241 232 / 20%);
}

.support-service {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-actions {
  display: grid;
  justify-items: start;
  gap: 7px;
  min-width: 0;
}

.support-link {
  max-width: 100%;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgb(244 241 232 / 35%);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.support-link:hover {
  color: var(--lime);
  text-decoration-color: currentColor;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-inner {
  min-height: 260px;
  padding: 44px var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 50px;
}

.footer-brand {
  font-size: 24px;
  line-height: 0.95;
}

.footer-nav {
  align-self: start;
}

.footer-nav a {
  color: var(--muted);
  font-size: 10px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #68686e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom span:last-child {
  color: var(--lime);
}

@media (max-width: 1100px) {
  :root {
    --page-gutter: 32px;
    --section-space: 96px;
  }

  .hero-collage {
    min-height: 660px;
  }

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

  .proof-card:last-child,
  .discovery-card:last-child {
    grid-column: 1 / -1;
  }

  .proof-card:nth-child(2) {
    border-right: 0;
  }

  .proof-card:last-child {
    min-height: 210px;
    border-top: 1px solid var(--line);
  }

  .service-row {
    grid-template-columns: minmax(270px, 0.8fr) minmax(280px, 1fr) auto;
  }

  .melo-layout {
    grid-template-columns: minmax(260px, 0.7fr) minmax(500px, 1.3fr);
    gap: 54px;
  }

  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 14px;
  }

  .artist-photo {
    aspect-ratio: 0.86;
  }
}

@media (max-width: 900px) {
  .melo-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .waveform {
    gap: 1px;
  }

  .wave-bar {
    width: 2px;
  }

  :root {
    --page-gutter: 20px;
    --section-space: 72px;
  }

  body {
    font-size: 15px;
  }

  .site-nav {
    min-height: 74px;
  }

  .brand-detail {
    display: none;
  }

  .nav-links {
    max-width: calc(100vw - 100px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    padding: 8px 0;
    white-space: nowrap;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-collage {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .collage-card,
  .hero-statement,
  .hero-button {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  .collage-card {
    aspect-ratio: 0.88;
  }

  .collage-two,
  .collage-three {
    aspect-ratio: 1.2;
  }

  .hero-statement {
    z-index: 1;
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 42px 18px;
    transform: rotate(1deg);
  }

  .hero-statement p {
    font-size: clamp(48px, 14vw, 78px);
  }

  .hero-button {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 12px;
  }

  .hero-button:hover {
    transform: translateY(-2px);
  }

  .split-intro,
  .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .section-title {
    font-size: clamp(48px, 13vw, 70px);
  }

  .proof-grid,
  .discovery-grid,
  .melo-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .proof-card:last-child {
    min-height: 220px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .service-row > a {
    justify-self: end;
  }

  .discovery-card,
  .discovery-card:last-child {
    grid-column: auto;
    min-height: 360px;
  }

  .melo-layout {
    gap: 50px;
  }

  .melo-copy small {
    padding-top: 44px;
  }

  .player-main {
    grid-template-columns: 1fr;
  }

  .player-main img {
    aspect-ratio: 1.55;
  }

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

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

  .artist-photo {
    aspect-ratio: 0.72;
  }

  .contact-layout {
    gap: 46px;
  }

  .contact-copy,
  .contact-card {
    min-height: 280px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    width: 100%;
    overflow-x: auto;
  }

  .footer-bottom {
    grid-column: auto;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: 16px;
    --section-space: 56px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero-collage,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .hero-statement {
    grid-column: 1;
  }

  .display {
    overflow-wrap: anywhere;
  }

  .collage-card {
    aspect-ratio: 1.25;
  }

  .collage-five,
  .collage-six {
    aspect-ratio: 0.95;
  }

  .section-title {
    font-size: clamp(44px, 14vw, 62px);
  }

  .proof-card {
    padding: 24px 20px;
  }

  .service-name {
    grid-template-columns: 24px 28px minmax(0, 1fr);
    gap: 10px;
  }

  .player-card {
    padding: 14px;
  }

  .track-details {
    padding: 20px;
  }

  .artist-photo {
    aspect-ratio: 0.9;
  }

  .contact-card {
    padding: 24px;
  }

  .support-channel {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track,
  .wave-bar {
    animation-play-state: paused !important;
  }
}
