:root {
  --ink-1000: #030507;
  --ink-950: #070a0e;
  --ink-900: #0b0f14;
  --ink-850: #10151c;
  --ink-800: #151b23;
  --gold-500: #d6ad42;
  --gold-400: #e7c66a;
  --gold-300: #f0d88e;
  --white: #f7f8fa;
  --silver-300: #c9ced6;
  --silver-500: #858e9b;
  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(214, 173, 66, 0.28);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1200px;
  --header-height: 78px;
}

.station-theme--qmusic {
  --station-accent: #ef3340;
}
.station-theme--joe {
  --station-accent: #ec008c;
}
.station-theme--bnr {
  --station-accent: #ffd400;
}
.station-theme--sky-radio {
  --station-accent: #20a7e0;
}
.station-theme--radio-538 {
  --station-accent: #86d500;
}
.station-theme--radio-10 {
  --station-accent: #75c043;
}
.station-theme--npo-radio-1 {
  --station-accent: #e8472e;
}
.station-theme--npo-radio-2 {
  --station-accent: #e93269;
}
.station-theme--npo-3fm {
  --station-accent: #d7ff00;
}
.station-theme--npo-klassiek {
  --station-accent: #c5a5ff;
}
.station-theme--bigfm-throwback {
  --station-accent: #ff5a1f;
}
.station-theme--nostalgie-90s-00s {
  --station-accent: #ff5b2b;
}
.station-theme--dancegroove-radio {
  --station-accent: #f05a28;
}
.station-theme--jazz24 {
  --station-accent: #d69b32;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink-1000);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.has-player {
  padding-bottom: 106px;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  fill: currentColor;
}
svg.lucide {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow {
  max-width: 820px;
}
.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;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold-400);
  color: var(--ink-1000);
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 5, 7, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.brand-copy {
  display: grid;
  line-height: 1.05;
}
.brand-copy strong {
  letter-spacing: 0.28em;
  font-size: 1rem;
  font-weight: 650;
}
.brand-copy small {
  margin-top: 7px;
  color: var(--gold-500);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--silver-300);
  font-size: 0.9rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav > a:hover,
.main-nav > a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}
.main-nav .nav-account {
  margin-left: 10px;
  border: 1px solid var(--line-gold);
  color: var(--gold-300);
}
.nav-account--logged-in {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-account-avatar {
  position: relative;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}
.nav-account-photo,
.nav-account-initial {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--ink-1000);
  font-size: 0.72rem;
  font-weight: 900;
}
.nav-account-photo {
  object-fit: cover;
}
.nav-account-photo[hidden],
.nav-account-initial[hidden] {
  display: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-850);
  color: white;
}
.nav-toggle > span:not(.sr-only) {
  width: 19px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 0 72px;
  background: linear-gradient(
      90deg,
      rgba(2, 7, 14, 0.98) 0%,
      rgba(2, 7, 14, 0.9) 32%,
      rgba(2, 7, 14, 0.22) 72%,
      rgba(2, 7, 14, 0.2) 100%
    ),
    url("../img/coluca-world-radio.jpg") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    var(--ink-950) 0%,
    transparent 28%,
    transparent 82%,
    rgba(2, 7, 14, 0.52) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line-gold),
    transparent
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}
.hero-copy {
  max-width: 700px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(231, 198, 106, 0.45);
  animation: pulse 1.8s infinite;
}
.hero h1,
.page-hero h1,
.stations-hero h1 {
  margin: 20px 0 24px;
  max-width: 800px;
  font-size: clamp(3.8rem, 7vw, 6.9rem);
  line-height: 0.91;
  letter-spacing: -0.067em;
  text-wrap: balance;
}
.hero h1 em {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero-copy > p {
  max-width: 600px;
  margin: 0;
  color: var(--silver-300);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
.round-play:focus-visible,
.player-button:focus-visible,
.player-skip:focus-visible,
.icon-button:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible {
  outline: 1px solid rgba(231, 198, 106, 0.34);
  outline-offset: 2px;
}
.button svg {
  width: 20px;
  height: 20px;
}
.button--large {
  min-height: 58px;
  padding-inline: 27px;
}
.button--gold {
  background: var(--gold-400);
  color: var(--ink-1000);
  box-shadow: 0 14px 32px rgba(214, 173, 66, 0.16);
}
.button--gold:hover {
  background: var(--gold-300);
  box-shadow: 0 18px 38px rgba(214, 173, 66, 0.22);
}
.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  color: white;
}
.button--ghost:hover {
  border-color: var(--line-gold);
  background: rgba(255, 255, 255, 0.04);
}
.button--light {
  background: var(--white);
  color: var(--ink-1000);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--silver-500);
  font-size: 0.8rem;
}
.hero-trust strong {
  color: white;
  font-size: 0.92rem;
}

.hero-preview {
  position: relative;
  align-self: center;
  width: min(100%, 500px);
  min-height: 260px;
  margin: 72px 0 0 auto;
  padding: 18px;
  border: 1px solid rgba(214, 173, 66, 0.38);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(5, 11, 20, 0.94),
    rgba(3, 7, 13, 0.88)
  );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52), 0 0 42px rgba(214, 173, 66, 0.1);
  backdrop-filter: blur(18px);
  animation: preview-float 5s ease-in-out infinite;
}
.preview-idle {
  min-height: 222px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  text-align: center;
}
.preview-idle[hidden],
.preview-active[hidden],
.preview-station-logo > [hidden] {
  display: none;
}
.preview-idle img {
  width: 116px;
  height: 116px;
  margin-bottom: 5px;
  border-radius: 28px;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
}
.preview-idle strong {
  color: white;
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}
.preview-idle span {
  color: var(--silver-500);
  font-size: 0.78rem;
}
.preview-active {
  min-height: 222px;
}
.hero-preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.preview-player-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
}
.preview-station-logo {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.32);
}
.preview-station-logo > span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--ink-1000);
  font-weight: 900;
}
.preview-station-copy {
  min-width: 0;
  display: grid;
}
.preview-station-copy strong {
  overflow: hidden;
  color: white;
  font-size: 1.12rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.preview-station-copy span {
  overflow: hidden;
  color: var(--silver-500);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.preview-play-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-400);
  border-radius: 50%;
  background: rgba(214, 173, 66, 0.12);
  color: var(--gold-300);
  cursor: pointer;
  box-shadow: 0 0 24px rgba(214, 173, 66, 0.13);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.preview-play-button:hover {
  transform: scale(1.07);
  background: var(--gold-400);
  color: var(--ink-1000);
}
.preview-play-button svg {
  width: 25px;
  margin-left: 3px;
}
.preview-icon-pause {
  display: none;
  margin-left: 0 !important;
}
.hero-preview.is-playing .preview-icon-play {
  display: none;
}
.hero-preview.is-playing .preview-icon-pause {
  display: block;
}
.preview-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.preview-skip-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--silver-300);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.preview-skip-button:hover {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.05);
}
.preview-skip-button svg {
  width: 23px;
}
.preview-play-button:focus-visible,
.preview-skip-button:focus-visible {
  outline: 3px solid rgba(231, 198, 106, 0.34);
  outline-offset: 3px;
}
.preview-wave {
  width: 34px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
}
.preview-wave i {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold-400);
  transform-origin: center;
  animation: preview-wave 1.05s ease-in-out infinite alternate;
  animation-play-state: paused;
  opacity: 0.35;
}
.hero-preview.is-playing .preview-wave i,
.hero-preview.is-loading .preview-wave i {
  animation-play-state: running;
  opacity: 1;
}
.preview-wave i:nth-child(2) {
  animation-delay: -0.72s;
}
.preview-wave i:nth-child(3) {
  animation-delay: -0.34s;
}
.preview-wave i:nth-child(4) {
  animation-delay: -0.88s;
}
.preview-wave i:nth-child(5) {
  animation-delay: -0.52s;
}
.preview-wave i:nth-child(6) {
  animation-delay: -0.16s;
}
.preview-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 15px;
  color: var(--silver-500);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}
.preview-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #242b34;
}
.preview-track i {
  width: 32%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 0 12px rgba(214, 173, 66, 0.35);
  animation: preview-progress 4s ease-in-out infinite;
}
.preview-active > p {
  margin: 11px 0 0;
  overflow: hidden;
  color: var(--silver-500);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.section {
  padding: 105px 0;
}
.section--stations {
  background: var(--ink-1000);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  align-items: end;
  gap: 40px;
  margin-bottom: 40px;
}
.section-heading h2,
.feature-copy h2,
.account-panel h2,
.station-info h2 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.section-heading p,
.feature-copy > p,
.account-panel p {
  margin: 0;
  color: var(--silver-500);
}
.section-heading-action {
  display: grid;
  justify-items: start;
  gap: 13px;
}
.text-link,
.station-more {
  color: var(--gold-400);
  font-weight: 750;
  font-size: 0.88rem;
}
.text-link span {
  margin-left: 6px;
}
.station-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.station-grid--catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.station-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.station-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-900);
  transition: transform 0.24s ease, border-color 0.24s ease,
    background 0.24s ease;
}
.station-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--station-accent, var(--gold-500));
  opacity: 0.75;
}
.station-card:hover,
.station-card.is-active {
  transform: translateY(-5px);
  border-color: color-mix(
    in srgb,
    var(--station-accent, var(--gold-500)) 45%,
    transparent
  );
  background: var(--ink-850);
}
.station-card-top,
.station-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.station-logo {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: #f6f7f9;
  overflow: hidden;
}
.station-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.station-logo--large {
  width: 82px;
  height: 82px;
  border-radius: 20px;
}
.station-state,
.player-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--silver-500);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.station-state .live-dot,
.player-kicker .live-dot {
  width: 6px;
  height: 6px;
}
.player-kicker time {
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.015em;
  text-transform: none;
}
.station-card-copy {
  position: relative;
  z-index: 1;
  margin: auto 0 22px;
}
.station-card-copy > span {
  color: var(--station-accent, var(--gold-500));
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.station-card h3,
.station-card h2 {
  margin: 8px 0 7px;
  font-size: 1.42rem;
  line-height: 1.12;
}
.station-card p {
  margin: 0;
  color: var(--silver-500);
  font-size: 0.89rem;
}
.station-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.favorite-button {
  min-width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--silver-300);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.favorite-button:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 198, 106, 0.55);
  color: white;
}
.favorite-button:focus-visible {
  outline: 3px solid rgba(231, 198, 106, 0.28);
  outline-offset: 2px;
}
.favorite-button:disabled {
  cursor: wait;
  opacity: 0.55;
}
.favorite-button svg {
  width: 19px;
  height: 19px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: fill 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.favorite-button.is-favorite {
  border-color: rgba(239, 92, 112, 0.42);
  background: rgba(239, 92, 112, 0.1);
  color: #ff879a;
}
.favorite-button.is-favorite svg {
  fill: currentColor;
  transform: scale(1.05);
}
.player-favorite svg {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.8;
}
.player-favorite.is-favorite {
  color: #ff879a;
}
.player-favorite.is-favorite svg {
  fill: currentColor;
}
.favorite-button--compact {
  width: 46px;
  padding: 0;
}
.favorite-button--compact [data-favorite-label] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.favorite-button--detail {
  width: auto;
  min-height: 58px;
  padding-inline: 22px;
}
.round-play {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-300);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.round-play:hover,
.round-play--solid {
  transform: scale(1.05);
  background: var(--gold-400);
  color: var(--ink-1000);
}
.round-play svg {
  width: 21px;
  height: 21px;
  margin-left: 2px;
}

.section--feature {
  padding-top: 20px;
}
.feature-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  padding: 62px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-900);
}
.feature-copy > p {
  max-width: 620px;
  margin-top: 22px;
}
.feature-list {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}
.feature-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list span {
  grid-row: span 2;
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.feature-list strong {
  line-height: 1.2;
}
.feature-list small {
  color: var(--silver-500);
}
.feature-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-left: 1px solid var(--line);
}
.feature-number {
  font-family: Georgia, serif;
  color: var(--gold-400);
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 0.8;
  letter-spacing: -0.1em;
}
.feature-visual > span:last-child {
  margin-top: 30px;
  color: var(--silver-500);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}
.section--account {
  padding-top: 20px;
}
.account-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 48px 54px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl);
  background: #0e1116;
}
.account-panel p {
  max-width: 760px;
  margin-top: 18px;
}

.stations-hero {
  padding: calc(var(--header-height) + 100px) 0 90px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-950);
}
.stations-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
}
.stations-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3.7rem, 7vw, 6.5rem);
}
.stations-hero p {
  margin: 0 0 8px;
  color: var(--silver-300);
  font-size: 1.08rem;
}
.stations-hero--app {
  position: relative;
  overflow: hidden;
  padding-bottom: 58px;
  background: linear-gradient(90deg, rgba(2, 7, 14, 0.98), rgba(2, 7, 14, 0.82)),
    url("../img/coluca-world-radio.jpg") center / cover;
}
.stations-hero--app::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.55;
}
.station-search-shell {
  height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  max-width: 900px;
  margin-top: 44px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(8, 14, 23, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.station-search-shell > svg {
  width: 23px;
  color: var(--silver-500);
}
.station-search-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 1rem;
}
.station-search-shell input::placeholder {
  color: #6f7886;
}
.station-search-shell:focus-within {
  border-color: var(--line-gold);
  box-shadow: 0 0 0 4px rgba(214, 173, 66, 0.06);
}
.station-search-shell kbd {
  min-width: 27px;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--ink-850);
  color: var(--silver-500);
  font: inherit;
  font-size: 0.76rem;
  text-align: center;
}
.station-filters {
  display: flex;
  gap: 9px;
  margin-top: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.station-filters::-webkit-scrollbar {
  display: none;
}
.station-filters button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 14, 23, 0.78);
  color: var(--silver-300);
  cursor: pointer;
  font-size: 0.83rem;
}
.station-filters button:hover {
  border-color: var(--line-gold);
  color: white;
}
.station-filters button.is-active {
  border-color: var(--gold-400);
  background: var(--gold-400);
  color: var(--ink-1000);
  font-weight: 800;
}
.section--catalog {
  padding-top: 70px;
}
.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.catalog-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.catalog-heading > span {
  color: var(--silver-500);
  font-size: 0.84rem;
}
.catalog-heading > span strong {
  color: var(--gold-400);
}
.station-list {
  display: grid;
  gap: 9px;
}
.station-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(190px, 0.75fr) minmax(230px, 1fr) auto auto auto;
  align-items: center;
  gap: 19px;
  min-height: 92px;
  padding: 12px 16px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    90deg,
    rgba(14, 20, 29, 0.95),
    rgba(7, 11, 17, 0.95)
  );
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.station-row::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 2px;
  border-radius: 2px;
  background: var(--station-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.station-row:hover,
.station-row.is-active {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--station-accent) 48%, transparent);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--station-accent) 8%, #0e141d),
    #070b11 72%
  );
}
.station-row:hover::before,
.station-row.is-active::before {
  opacity: 1;
}
.station-row[hidden] {
  display: none;
}
.station-logo--row {
  width: 66px;
  height: 66px;
  border-radius: 15px;
}
.station-row-copy {
  min-width: 0;
}
.station-row-copy h3 {
  margin: 0 0 3px;
  font-size: 1.02rem;
}
.station-row-copy span {
  color: var(--silver-500);
  font-size: 0.78rem;
}
.station-row-copy i {
  padding: 0 4px;
  color: var(--station-accent);
  font-style: normal;
}
.station-row > p {
  margin: 0;
  color: var(--silver-500);
  font-size: 0.84rem;
}
.station-row-more {
  color: var(--silver-500);
  font-size: 0.78rem;
}
.station-row-more:hover {
  color: white;
}
.station-live-button {
  min-width: 88px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-400);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.station-live-button svg {
  width: 15px;
}
.station-live-button:hover {
  background: var(--gold-400);
  color: var(--ink-1000);
}
.station-empty {
  padding: 80px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--silver-500);
  text-align: center;
}
.station-empty span {
  color: white;
  font-size: 1.25rem;
  font-weight: 750;
}
.station-empty p {
  margin: 6px 0 0;
}

.station-detail-hero {
  position: relative;
  padding: calc(var(--header-height) + 48px) 0 90px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-950);
}
.station-detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--station-accent);
  opacity: 0.7;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 58px;
  color: var(--silver-500);
  font-size: 0.8rem;
}
.breadcrumbs a:hover {
  color: white;
}
.station-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1.3fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}
.station-detail-logo {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: #f7f7f7;
  box-shadow: var(--shadow);
}
.station-detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.station-detail-copy h1 {
  margin: 18px 0 22px;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.station-detail-copy > p {
  max-width: 690px;
  margin: 0;
  color: var(--silver-300);
  font-size: 1.1rem;
}
.station-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.station-info {
  background: var(--ink-1000);
}
.station-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}
.station-info article p {
  max-width: 720px;
  color: var(--silver-500);
}
.station-info aside {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}
.station-info aside span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--silver-500);
  font-size: 0.85rem;
}
.station-info aside strong {
  color: white;
  text-align: right;
}
.related-stations {
  padding-top: 0;
}

.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 100px) 0 100px;
  background: var(--ink-950);
}
.page-hero--center {
  text-align: center;
}
.page-hero--center .narrow {
  margin-inline: auto;
}
.page-hero p {
  color: var(--silver-300);
  font-size: 1.1rem;
}
.page-hero .button {
  margin-top: 20px;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.content-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-900);
}
.content-card > span {
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.content-card h2 {
  margin: 36px 0 8px;
}
.content-card p {
  margin: 0;
  color: var(--silver-500);
}
.legal-copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}
.legal-copy h2 {
  margin: 42px 0 6px;
  font-size: 1.35rem;
}
.legal-copy p {
  font-size: 1rem;
  color: var(--silver-500);
}
.legal-page {
  align-items: flex-start;
}
.legal-subtitle {
  margin: -6px 0 48px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold-500);
  background: rgba(214, 173, 66, 0.05);
  color: var(--silver-300) !important;
}
.legal-copy ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 26px;
  padding-left: 22px;
  color: var(--silver-500);
}
.legal-copy li {
  padding-left: 5px;
}
.legal-copy li::marker {
  color: var(--gold-500);
}
.legal-copy strong {
  color: var(--silver-300);
}
.privacy-page {
  display: block;
  min-height: auto;
  padding: calc(var(--header-height) + 82px) 0 90px;
  background: linear-gradient(180deg, var(--ink-950), var(--ink-1000));
}
.privacy-copy {
  max-width: 980px;
}
.privacy-heading {
  margin-bottom: 34px;
}
.privacy-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}
.privacy-heading > p {
  max-width: 720px;
  margin: 0;
  color: var(--silver-300);
}
.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.privacy-meta span {
  padding: 6px 12px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(214, 173, 66, 0.05);
  color: var(--silver-500);
  font-size: 0.78rem;
}
.privacy-card {
  margin-bottom: 16px;
  padding: clamp(24px, 4vw, 38px);
  scroll-margin-top: calc(var(--header-height) + 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--ink-900), rgba(11, 15, 20, 0.82));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}
.privacy-card h2 {
  margin: 0 0 18px;
  color: var(--gold-300);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
}
.privacy-card h3 {
  margin: 28px 0 7px;
  color: var(--silver-300);
  font-size: 1.05rem;
}
.privacy-card p {
  margin: 0 0 16px;
  color: var(--silver-500);
  font-size: 1rem;
}
.privacy-card p:last-child {
  margin-bottom: 0;
}
.privacy-card strong {
  color: var(--silver-300);
}
.privacy-card a {
  color: var(--gold-400);
  text-decoration: underline;
  text-decoration-color: rgba(231, 198, 106, 0.4);
  text-underline-offset: 3px;
}
.privacy-card a:hover {
  color: var(--gold-300);
  text-decoration-color: currentColor;
}
.privacy-summary,
.privacy-toc {
  border-color: var(--line-gold);
  background: linear-gradient(
    145deg,
    rgba(214, 173, 66, 0.075),
    var(--ink-900) 55%
  );
}
.privacy-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 32px;
  margin: 0;
  padding-left: 24px;
}
.privacy-toc li {
  padding-left: 5px;
  color: var(--gold-500);
}
.privacy-toc a {
  color: var(--silver-300);
  text-decoration: none;
  font-size: 0.92rem;
}
.privacy-toc a:hover {
  color: var(--gold-300);
}
.privacy-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(214, 173, 66, 0.075);
  color: var(--silver-500);
}
.privacy-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.privacy-table-wrap:focus-visible {
  outline: 3px solid rgba(231, 198, 106, 0.34);
  outline-offset: 3px;
}
.privacy-card table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  color: var(--silver-500);
  font-size: 0.9rem;
}
.privacy-card th,
.privacy-card td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.privacy-card tbody tr:last-child td {
  border-bottom: 0;
}
.privacy-card th {
  background: rgba(214, 173, 66, 0.07);
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.privacy-contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  background: rgba(214, 173, 66, 0.045);
}
.privacy-closing {
  max-width: 820px;
  margin: 30px auto 0;
  color: var(--silver-500);
  text-align: center;
  font-size: 0.8rem;
}
.notice {
  padding: 16px 18px;
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  background: rgba(214, 173, 66, 0.06);
  color: var(--gold-300) !important;
}

.auth-section {
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 0 100px;
  background: var(--ink-950);
}
.auth-intro {
  max-width: 760px;
  margin-bottom: 45px;
}
.auth-intro h1,
.account-dashboard h1 {
  margin: 12px 0 16px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.auth-intro p,
.account-dashboard p {
  color: var(--silver-300);
}
.auth-intro--single {
  margin-inline: auto;
  text-align: center;
}
.auth-single {
  max-width: 620px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.auth-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.auth-panel {
  padding: clamp(28px, 5vw, 52px);
  background: var(--ink-900);
}
.auth-panel--register {
  background: #15191f;
  border-left: 1px solid var(--line);
}
.auth-label {
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.auth-panel h2 {
  margin: 8px 0 30px;
  font-size: 2rem;
}
.auth-form {
  display: grid;
  gap: 18px;
}
.auth-form label {
  display: grid;
  gap: 7px;
  color: var(--silver-300);
  font-size: 0.83rem;
  font-weight: 700;
}
.auth-form input {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  background: var(--ink-950);
  color: white;
}
.auth-form input:focus {
  border-color: var(--gold-500);
}
.auth-form label small,
.form-consent {
  color: var(--silver-500);
  font-weight: 400;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 14px;
}
.auth-form .button {
  justify-self: start;
  margin-top: 5px;
}
.auth-single .auth-form .button {
  width: 100%;
}
.form-consent a {
  color: var(--gold-400);
  text-decoration: underline;
}
.auth-switch {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--silver-500);
  text-align: center;
  font-size: 0.9rem;
}
.auth-switch a {
  color: var(--gold-400);
  font-weight: 800;
}
.auth-switch a:hover {
  color: var(--gold-300);
}
.auth-panel--verify h2 {
  margin-bottom: 14px;
}
.auth-verification-copy {
  margin: 0 0 26px;
  color: var(--silver-400);
  font-size: 0.92rem;
  line-height: 1.65;
}
.auth-verification-copy strong {
  color: var(--silver-200);
  overflow-wrap: anywhere;
}
.auth-form .verification-code-input {
  height: 66px;
  padding-left: calc(15px + 0.28em);
  color: var(--gold-300);
  font-size: 1.7rem;
  font-weight: 850;
  letter-spacing: 0.28em;
  text-align: center;
}
.auth-verification-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
  color: var(--silver-600);
}
.auth-text-button {
  padding: 3px 0;
  border: 0;
  background: none;
  color: var(--gold-400);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
}
.auth-text-button:hover,
.auth-text-button:focus-visible {
  color: var(--gold-300);
}
.auth-support {
  margin: 22px 0 0;
  color: var(--silver-500);
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
}
.auth-support a {
  color: var(--silver-300);
  text-decoration: underline;
}
.form-message {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  max-width: 760px;
  margin: 0 0 24px;
  padding: 16px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18, 24, 32, 0.98), rgba(11, 15, 21, 0.98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}
.form-message p {
  margin: 3px 0 0;
  color: var(--silver-300);
  font-size: 0.82rem;
  line-height: 1.5;
}
.form-message strong {
  display: block;
  color: white;
  font-size: 0.84rem;
  line-height: 1.35;
}
.form-message-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
}
.form-message-icon svg {
  width: 18px;
  height: 18px;
}
.form-message--error {
  border-color: rgba(238, 99, 114, 0.26);
  background:
    linear-gradient(90deg, rgba(238, 99, 114, 0.055), transparent 42%),
    linear-gradient(135deg, rgba(18, 24, 32, 0.98), rgba(11, 15, 21, 0.98));
}
.form-message--error .form-message-icon {
  border: 1px solid rgba(238, 99, 114, 0.28);
  background: rgba(238, 99, 114, 0.09);
  color: #ff8797;
}
.form-message--error strong {
  color: #ffd4d9;
}
.form-message--success {
  border-color: rgba(91, 197, 135, 0.42);
  color: #9de1b9;
}
.auth-form-message {
  width: 100%;
  max-width: none;
  margin: -10px 0 23px;
}
.account-dashboard {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: clamp(34px, 7vw, 80px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-900);
}
.account-dashboard-copy {
  max-width: 720px;
}
.account-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.account-dashboard-actions form {
  margin: 0;
}
.account-monogram {
  width: 210px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 7rem;
}

.account-section {
  padding-top: calc(var(--header-height) + 52px);
  background:
    radial-gradient(circle at 78% 0%, rgba(214, 173, 66, 0.08), transparent 30%),
    var(--ink-950);
}
.account-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-bottom: 28px;
}
.account-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}
.account-identity h1 {
  margin: 7px 0 2px;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.account-identity p {
  margin: 8px 0 0;
  color: var(--silver-500);
  font-size: 0.86rem;
}
.account-monogram--small {
  width: 82px;
  flex: 0 0 82px;
  font-family: inherit;
  font-size: 2rem;
  font-weight: 850;
  background: linear-gradient(145deg, rgba(214, 173, 66, 0.18), rgba(214, 173, 66, 0.035));
  box-shadow: inset 0 0 0 7px rgba(3, 5, 7, 0.46);
}
.account-avatar {
  position: relative;
  overflow: visible;
  padding: 0;
}
.account-avatar-clip {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
}
.account-avatar-clip > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.account-avatar-clip > span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.account-avatar-clip > img[hidden],
.account-avatar-clip > span[hidden] {
  display: none;
}
.platinum-avatar-badge {
  position: absolute;
  z-index: 3;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.65));
}
.platinum-avatar-badge--nav {
  width: 19px;
  height: 19px;
  right: -7px;
  bottom: -7px;
}
.platinum-avatar-badge--account {
  width: 34px;
  height: 34px;
  right: -7px;
  bottom: -5px;
}
.account-logout-form {
  margin: 0;
}
.account-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}
.account-header-actions .button {
  min-height: 46px;
}
.account-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.account-stat-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(16, 21, 28, 0.98), rgba(8, 12, 17, 0.98));
}
.account-stat-grid article::after {
  content: "";
  position: absolute;
  inset: auto -15px -45px auto;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(214, 173, 66, 0.1);
  border-radius: 50%;
}
.account-stat-grid span,
.account-stat-grid small {
  color: var(--silver-500);
  font-size: 0.72rem;
}
.account-stat-grid span {
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.account-stat-grid strong {
  margin: 4px 0 1px;
  color: var(--gold-300);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.account-workspace {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-900);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}
.account-tabs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  background: rgba(3, 5, 7, 0.34);
}
.account-tabs a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--silver-500);
  font-size: 0.83rem;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.account-tabs a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.035);
}
.account-tabs a.is-active {
  border-color: var(--line-gold);
  background: rgba(214, 173, 66, 0.08);
  color: var(--gold-300);
}
.account-tabs svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
.account-panels {
  min-width: 0;
}
.account-tab-panel {
  padding: clamp(28px, 5vw, 48px);
}
.account-tab-panel[hidden] {
  display: none;
}
.account-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}
.account-panel-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.account-section-count {
  color: var(--silver-500);
  font-size: 0.78rem;
}
.account-section-count strong {
  color: white;
}
.account-recent-list,
.listening-chart {
  display: grid;
  gap: 9px;
}
.account-recent-item {
  display: grid;
  grid-template-columns: 36px auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.018);
}
.account-rank {
  color: var(--station-accent, var(--gold-400));
  font-size: 0.72rem;
  font-weight: 900;
}
.account-recent-item h3,
.listening-row h3 {
  margin: 0;
  font-size: 0.98rem;
}
.account-recent-item div > span {
  color: var(--silver-500);
  font-size: 0.75rem;
}
.account-recent-item > strong {
  color: var(--silver-300);
  font-size: 0.82rem;
}
.account-empty {
  min-height: 285px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 34px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
}
.account-empty[hidden] {
  display: none;
}
.account-empty > span {
  font-size: 1.35rem;
  font-weight: 800;
}
.account-empty p {
  max-width: 520px;
  margin: 8px 0 20px;
  color: var(--silver-500);
  font-size: 0.88rem;
}
.account-drag-help {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -8px 0 16px;
  color: var(--silver-500);
  font-size: 0.8rem;
}
.account-drag-help[hidden] {
  display: none;
}
.account-drag-help svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}
.account-favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.account-favorite-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(19, 25, 34, 0.98), rgba(7, 10, 14, 0.98));
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease, transform 160ms ease;
}
.account-favorite-card.is-dragging {
  z-index: 2;
  opacity: 0.56;
  border-color: rgba(231, 198, 106, 0.58);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  transform: scale(0.985);
}
.account-favorites-grid.is-saving .favorite-drag-handle {
  opacity: 0.45;
  pointer-events: none;
}
.account-favorite-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--station-accent, var(--gold-500));
}
.account-favorite-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.account-favorite-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.favorite-drag-handle {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--silver-400);
  cursor: grab;
  touch-action: none;
}
.favorite-drag-handle:hover,
.favorite-drag-handle:focus-visible {
  border-color: var(--line-gold);
  color: var(--gold-300);
}
.favorite-drag-handle:active {
  cursor: grabbing;
}
.favorite-drag-handle svg {
  width: 18px;
  height: 18px;
}
.account-favorite-card > div:nth-child(2) {
  margin: auto 0 20px;
}
.account-favorite-card > div:nth-child(2) > span {
  color: var(--station-accent, var(--gold-400));
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.account-favorite-card h3 {
  margin: 5px 0 5px;
  font-size: 1.35rem;
}
.account-favorite-card p {
  margin: 0;
  color: var(--silver-500);
  font-size: 0.82rem;
}
.account-favorite-card > .button {
  width: 100%;
}
.listening-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.018);
}
.listening-row-main {
  min-width: 0;
}
.listening-row-main > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.listening-row-main strong {
  color: var(--silver-300);
  font-size: 0.78rem;
}
.listening-row-main small {
  color: var(--silver-500);
  font-size: 0.67rem;
}
.listening-bar {
  display: block;
  width: 100%;
  height: 5px;
  margin: 7px 0 5px;
  overflow: hidden;
  appearance: none;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.07);
}
.listening-bar::-webkit-progress-bar {
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.07);
}
.listening-bar::-webkit-progress-value {
  border-radius: inherit;
  background: var(--station-accent, var(--gold-400));
  box-shadow: 0 0 14px color-mix(in srgb, var(--station-accent, var(--gold-400)) 45%, transparent);
}
.listening-bar::-moz-progress-bar {
  border-radius: inherit;
  background: var(--station-accent, var(--gold-400));
  box-shadow: 0 0 14px color-mix(in srgb, var(--station-accent, var(--gold-400)) 45%, transparent);
}
.account-privacy-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: var(--silver-500);
  font-size: 0.72rem;
}
.account-privacy-note svg {
  width: 16px;
  flex: 0 0 auto;
  color: var(--gold-400);
}
.account-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.settings-card {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
}
.settings-card--avatar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 44px);
}
.avatar-settings-preview {
  width: 154px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(214, 173, 66, 0.18), rgba(214, 173, 66, 0.035));
  color: var(--gold-300);
  box-shadow: inset 0 0 0 9px rgba(3, 5, 7, 0.46), 0 22px 50px rgba(0, 0, 0, 0.28);
}
.avatar-settings-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.avatar-settings-preview img[hidden],
.avatar-settings-preview span[hidden] {
  display: none;
}
.avatar-settings-preview > span {
  font-size: 3rem;
  font-weight: 850;
}
.avatar-settings-content {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.settings-card--avatar .settings-card-heading {
  margin-bottom: 18px;
  padding-bottom: 17px;
}
.avatar-upload-form {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 11px;
}
.avatar-file-picker {
  position: relative;
  min-width: 0;
  cursor: pointer;
}
.avatar-file-picker input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.avatar-file-picker > span {
  min-height: 46px;
  max-width: 260px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px dashed rgba(214, 173, 66, 0.42);
  border-radius: 12px;
  background: rgba(214, 173, 66, 0.055);
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 800;
}
.avatar-file-picker:hover > span,
.avatar-file-picker:focus-within > span {
  border-style: solid;
  background: rgba(214, 173, 66, 0.1);
}
.avatar-file-picker svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.avatar-file-picker [data-avatar-file-label] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.avatar-form-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.avatar-form-actions .button {
  min-height: 46px;
  gap: 7px;
}
.settings-card-heading {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.settings-card-heading > span {
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.settings-card-heading h3 {
  margin: 5px 0 5px;
  font-size: 1.3rem;
}
.settings-card-heading p {
  margin: 0;
  color: var(--silver-500);
  font-size: 0.78rem;
}
.settings-card .auth-form .button {
  width: 100%;
}
.auth-form input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.auth-form .check-field {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.022);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.auth-form .check-field:hover {
  border-color: rgba(214, 173, 66, 0.3);
  background: rgba(214, 173, 66, 0.035);
}
.auth-form .check-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.check-control {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: var(--ink-950);
  color: var(--ink-1000);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.check-control svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.check-field input:checked + .check-control {
  border-color: var(--gold-400);
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 0 0 4px rgba(214, 173, 66, 0.09), 0 7px 17px rgba(214, 173, 66, 0.13);
}
.check-field input:checked + .check-control svg {
  opacity: 1;
  transform: scale(1);
}
.check-field input:focus-visible {
  outline: none;
}
.check-field input:focus-visible + .check-control {
  outline: 3px solid rgba(231, 198, 106, 0.28);
  outline-offset: 3px;
}
.check-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  line-height: 1.35;
}
.check-copy strong {
  color: var(--silver-300);
  font-size: 0.81rem;
}
.auth-form .check-copy small {
  color: var(--silver-500);
  font-size: 0.71rem;
  font-weight: 450;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

/* COLUCA-abonnementen */
.plus-plans {
  padding-top: calc(var(--header-height) + 78px);
  background:
    radial-gradient(circle at 50% 18%, rgba(214, 173, 66, 0.055), transparent 28%),
    var(--ink-950);
}
.plus-plans-notice {
  width: min(100%, 760px);
  margin: 0 auto 72px;
}
.plus-plans-notice .form-message {
  margin: 0;
}
.plus-section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}
.plus-section-heading h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.plus-section-heading > p {
  max-width: 650px;
  margin: 0;
  color: var(--silver-500);
}
.plus-section-heading--center {
  margin-inline: auto;
  text-align: center;
}
.plus-section-heading--center > p {
  margin-inline: auto;
}
.plus-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}
.plus-plan-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17, 23, 31, 0.96), rgba(7, 10, 14, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}
.plus-plan-card--featured {
  border-color: rgba(231, 198, 106, 0.42);
  background:
    linear-gradient(145deg, rgba(231, 198, 106, 0.095), transparent 40%),
    linear-gradient(145deg, rgba(18, 24, 32, 0.98), rgba(7, 10, 14, 0.98));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25), 0 0 50px rgba(214, 173, 66, 0.05);
}
.plus-plan-card--premium {
  border-color: rgba(157, 173, 204, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 111, 161, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(14, 23, 42, 0.98), rgba(5, 8, 14, 0.99));
}
.plus-plan-card--premium .plus-plan-icon {
  border-color: rgba(186, 199, 225, 0.28);
  background: rgba(135, 158, 202, 0.08);
  color: #d5deef;
}
.plus-plan-badge {
  position: absolute;
  inset: 0 34px auto auto;
  transform: translateY(-50%);
  padding: 7px 14px;
  border-radius: 99px;
  background: var(--gold-400);
  color: var(--ink-1000);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plus-plan-top {
  display: flex;
  align-items: center;
  gap: 17px;
}
.plus-plan-icon {
  width: 54px;
  height: 54px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 17px;
  background: rgba(214, 173, 66, 0.07);
  color: var(--gold-300);
}
.plus-plan-icon svg {
  width: 24px;
  height: 24px;
}
.plus-plan-top div {
  display: grid;
}
.plus-plan-top div > span {
  color: var(--gold-400);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.plus-plan-top h3 {
  margin: 1px 0 0;
  font-size: 1.35rem;
}
.plus-plan-price {
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 34px 0 18px;
}
.plus-plan-price strong {
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.plus-plan-price span {
  padding-bottom: 4px;
  color: var(--silver-500);
  font-size: 0.83rem;
}
.plus-plan-card > p {
  margin: 0;
  color: var(--silver-500);
  font-size: 0.88rem;
}
.plus-plan-card ul {
  display: grid;
  gap: 12px;
  margin: 27px 0 34px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.plus-plan-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver-300);
  font-size: 0.82rem;
}
.plus-plan-card li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--gold-400);
}
.plus-plan-card > .button,
.plus-plan-card > form {
  width: 100%;
  margin-top: auto;
}
.plus-plan-card > form .button {
  width: 100%;
}
.plus-plan-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--silver-500);
  font-size: 0.72rem;
  text-align: center;
}
.plus-plan-footnote svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--gold-400);
}
.platinum-invite-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 52px);
  overflow: hidden;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(181, 196, 224, 0.24);
  border-radius: 25px;
  background:
    radial-gradient(circle at 15% 10%, rgba(205, 217, 239, 0.1), transparent 28%),
    linear-gradient(145deg, #10182a, #050910 78%);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.24);
}
.platinum-invite-card::after {
  content: "";
  position: absolute;
  inset: -140px -80px auto auto;
  width: 300px;
  aspect-ratio: 1;
  border: 1px solid rgba(210, 221, 240, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(210, 221, 240, 0.018);
}
.platinum-invite-card > * {
  position: relative;
  z-index: 1;
}
.platinum-invite-emblem {
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.platinum-invite-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}
.platinum-invite-card h3 {
  margin: 7px 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}
.platinum-invite-card p {
  max-width: 650px;
  margin: 0;
  color: var(--silver-500);
  font-size: 0.82rem;
}
.platinum-invite-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 9px 13px;
  border: 1px solid rgba(202, 214, 235, 0.22);
  border-radius: 99px;
  color: #d6dfef;
  font-size: 0.69rem;
  font-weight: 800;
}
.platinum-invite-label svg {
  width: 15px;
  height: 15px;
}
.plus-faq {
  background: var(--ink-950);
}
.plus-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.15fr);
  gap: clamp(50px, 9vw, 120px);
}
.plus-faq-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 30px);
}
.plus-faq-intro h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.plus-faq-intro p {
  margin: 0 0 22px;
  color: var(--silver-500);
}
.plus-faq-list {
  border-top: 1px solid var(--line);
}
.plus-faq-list details {
  border-bottom: 1px solid var(--line);
}
.plus-faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--silver-300);
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
}
.plus-faq-list summary::-webkit-details-marker {
  display: none;
}
.plus-faq-list summary svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--gold-400);
  transition: transform 0.2s ease;
}
.plus-faq-list details[open] summary {
  color: white;
}
.plus-faq-list details[open] summary svg {
  transform: rotate(45deg);
}
.plus-faq-list details p {
  max-width: 660px;
  margin: -6px 45px 28px 0;
  color: var(--silver-500);
  font-size: 0.85rem;
}
.plus-final-cta {
  padding: 0 0 110px;
  background: var(--ink-950);
}
.plus-final-card {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid rgba(231, 198, 106, 0.3);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(231, 198, 106, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(20, 26, 34, 0.98), rgba(6, 9, 13, 0.98));
}
.plus-final-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -180px auto;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 198, 106, 0.12);
  border-radius: 50%;
}
.plus-final-card > * {
  position: relative;
  z-index: 1;
}
.plus-final-card h2 {
  margin: 10px 0 10px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.plus-final-card p {
  max-width: 600px;
  margin: 0;
  color: var(--silver-500);
}

/* Abonnement in account */
.subscription-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--silver-300);
  font-size: 0.7rem;
  font-weight: 800;
}
.subscription-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--silver-500);
}
.subscription-status--success {
  border-color: rgba(74, 222, 128, 0.22);
  color: #9de9b8;
  background: rgba(74, 222, 128, 0.05);
}
.subscription-status--success > span {
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.55);
}
.subscription-status--warning {
  border-color: rgba(251, 191, 36, 0.26);
  color: #f7d67c;
  background: rgba(251, 191, 36, 0.055);
}
.subscription-status--warning > span {
  background: #fbbf24;
}
.subscription-status--platinum {
  border-color: rgba(196, 209, 232, 0.26);
  color: #d8e1f0;
  background: rgba(134, 157, 199, 0.08);
}
.subscription-status--platinum > span {
  background: #c8d4e8;
  box-shadow: 0 0 10px rgba(200, 212, 232, 0.45);
}
.subscription-account-card,
.subscription-empty-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(231, 198, 106, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(214, 173, 66, 0.075), transparent 40%),
    rgba(255, 255, 255, 0.018);
}
.subscription-account-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}
.subscription-account-card--platinum {
  border-color: rgba(193, 207, 232, 0.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(203, 216, 239, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(16, 27, 49, 0.98), rgba(5, 9, 16, 0.99));
}
.subscription-platinum-emblem {
  width: 92px;
  height: 92px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}
.subscription-platinum-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5));
}
.subscription-platinum-billing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(193, 207, 232, 0.16);
  border-radius: 16px;
  background: rgba(133, 155, 194, 0.06);
}
.subscription-platinum-billing p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--silver-500);
  font-size: 0.76rem;
}
.subscription-platinum-billing p svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #c7d3e7;
}
.subscription-platinum-billing form {
  flex: 0 0 auto;
}
.subscription-account-main {
  display: flex;
  align-items: center;
  gap: 20px;
}
.subscription-account-icon,
.subscription-empty-icon {
  width: 68px;
  height: 68px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 21px;
  background: rgba(214, 173, 66, 0.09);
  color: var(--gold-300);
}
.subscription-account-icon svg,
.subscription-empty-icon svg {
  width: 29px;
  height: 29px;
}
.subscription-account-main div > span {
  color: var(--gold-400);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.subscription-account-main h3,
.subscription-empty-card h3 {
  margin: 3px 0 7px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}
.subscription-account-main p,
.subscription-empty-card p {
  margin: 0;
  color: var(--silver-500);
  font-size: 0.78rem;
}
.subscription-account-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}
.subscription-account-actions form {
  margin: 0;
}
.subscription-payment-warning {
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 280px;
  margin: 0;
  color: #f7d67c;
  font-size: 0.7rem;
  text-align: right;
}
.subscription-payment-warning svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.subscription-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.subscription-detail-grid article {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.016);
}
.subscription-detail-grid article > svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--gold-400);
}
.subscription-detail-grid article div {
  display: grid;
}
.subscription-detail-grid strong {
  font-size: 0.76rem;
}
.subscription-detail-grid span {
  margin-top: 3px;
  color: var(--silver-500);
  font-size: 0.67rem;
}
.subscription-empty-card {
  min-height: 315px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  text-align: center;
}
.subscription-empty-card > div {
  max-width: 600px;
}
.subscription-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.subscription-empty-actions form {
  margin: 0;
}

/* Account admin */
.account-tabs .account-admin-tab {
  margin-top: 9px;
  border-color: rgba(164, 186, 226, 0.13);
  color: #c1cde2;
  background: rgba(115, 143, 197, 0.045);
}
.account-tabs .account-admin-tab:hover,
.account-tabs .account-admin-tab.is-active {
  border-color: rgba(181, 201, 235, 0.3);
  color: #e2e9f5;
  background: rgba(125, 153, 205, 0.1);
}
.admin-panel-heading {
  align-items: center;
}
.admin-owner-label,
.admin-role-badge,
.admin-status-pill,
.admin-locked-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  border-radius: 999px;
  white-space: nowrap;
}
.admin-owner-label {
  padding: 9px 13px;
  border: 1px solid rgba(188, 204, 232, 0.22);
  color: #d6e0f0;
  background: rgba(126, 151, 196, 0.08);
  font-size: 0.7rem;
  font-weight: 850;
}
.admin-owner-label svg,
.admin-role-badge svg,
.admin-status-pill svg,
.admin-locked-label svg {
  width: 14px;
  height: 14px;
}
.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 34px;
}
.admin-metric-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 125px;
  align-content: end;
  padding: 19px;
  border: 1px solid rgba(184, 201, 231, 0.13);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(129, 157, 208, 0.09), transparent 45%),
    rgba(255, 255, 255, 0.017);
}
.admin-metric-grid span,
.admin-metric-grid small {
  color: var(--silver-500);
  font-size: 0.66rem;
}
.admin-metric-grid span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-metric-grid strong {
  margin: 5px 0 2px;
  color: #dbe4f2;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.admin-directory-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 17px;
}
.admin-directory-toolbar h3 {
  margin: 5px 0 3px;
  font-size: 1.35rem;
}
.admin-directory-toolbar p {
  margin: 0;
  color: var(--silver-500);
  font-size: 0.75rem;
}
.admin-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.admin-search-form > div {
  position: relative;
  min-width: min(300px, 34vw);
}
.admin-search-form > div svg {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 16px;
  height: 16px;
  color: var(--silver-500);
  transform: translateY(-50%);
  pointer-events: none;
}
.admin-search-form input {
  width: 100%;
  min-height: 42px;
  padding: 9px 13px 9px 39px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: rgba(3, 6, 10, 0.56);
  color: white;
  font: inherit;
  font-size: 0.76rem;
}
.admin-search-form input:focus {
  border-color: rgba(214, 173, 66, 0.42);
  box-shadow: 0 0 0 3px rgba(214, 173, 66, 0.08);
}
.admin-search-form .button {
  min-height: 42px;
  padding: 9px 15px;
}
.admin-search-reset {
  color: var(--silver-500);
  font-size: 0.72rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.admin-user-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(3, 6, 10, 0.3);
}
.admin-user-table {
  width: 100%;
  min-width: 990px;
  border-collapse: collapse;
}
.admin-user-table th {
  padding: 13px 16px;
  color: var(--silver-500);
  background: rgba(255, 255, 255, 0.022);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}
.admin-user-table td {
  padding: 15px 16px;
  border-top: 1px solid var(--line);
  color: var(--silver-300);
  font-size: 0.73rem;
  vertical-align: middle;
}
.admin-user-table tbody tr {
  transition: background 0.18s ease;
}
.admin-user-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.018);
}
.admin-user-identity {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 230px;
}
.admin-user-initial {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(214, 173, 66, 0.26);
  border-radius: 50%;
  background: rgba(214, 173, 66, 0.08);
  color: var(--gold-300);
  font-weight: 900;
}
.admin-user-initial > img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.admin-user-initial > img[hidden],
.admin-user-initial > [data-avatar-fallback][hidden] {
  display: none;
}
.admin-presence-dot {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink-950);
  border-radius: 50%;
  background: #667085;
  box-sizing: content-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}
.admin-presence-dot.is-online {
  background: #3ba55d;
  box-shadow: 0 0 0 2px rgba(59, 165, 93, 0.12), 0 2px 8px rgba(0, 0, 0, 0.42);
}
.admin-user-identity > div,
.admin-cell-stack,
.admin-status-list {
  display: grid;
  gap: 3px;
}
.admin-user-identity strong,
.admin-cell-stack strong {
  color: white;
  font-size: 0.76rem;
}
.admin-user-identity a,
.admin-cell-stack span {
  color: var(--silver-500);
  font-size: 0.67rem;
}
.admin-user-identity a:hover {
  color: var(--gold-300);
}
.admin-status-list {
  justify-items: start;
  gap: 6px;
}
.admin-status-pill {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--silver-300);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.62rem;
  font-weight: 750;
}
.admin-status-pill--success {
  border-color: rgba(74, 222, 128, 0.2);
  color: #a7edc0;
  background: rgba(34, 197, 94, 0.065);
}
.admin-status-pill--muted {
  color: var(--silver-500);
}
.admin-status-pill--platinum {
  border-color: rgba(197, 211, 235, 0.25);
  color: #d9e3f2;
  background: rgba(126, 151, 196, 0.08);
}
.admin-status-subtle {
  color: var(--silver-500);
  font-size: 0.62rem;
}
.admin-role-badge {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--silver-500);
  font-size: 0.63rem;
  font-weight: 800;
}
.admin-role-badge--admin {
  border-color: rgba(214, 173, 66, 0.24);
  color: var(--gold-300);
  background: rgba(214, 173, 66, 0.065);
}
.admin-user-action {
  text-align: right;
}
.admin-user-actions {
  display: grid;
  justify-items: end;
  gap: 7px;
}
.admin-user-action form {
  margin: 0;
}
.admin-role-button {
  min-height: 36px;
  padding: 7px 11px;
  font-size: 0.68rem;
}
.admin-role-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.button--danger-subtle {
  border-color: rgba(248, 113, 113, 0.24);
  color: #f3a3a3;
  background: rgba(239, 68, 68, 0.045);
}
.button--danger-subtle:hover {
  border-color: rgba(248, 113, 113, 0.42);
  color: #fecaca;
  background: rgba(239, 68, 68, 0.09);
}
.admin-locked-label {
  justify-content: flex-end;
  margin-left: auto;
  color: var(--silver-500);
  font-size: 0.64rem;
}
.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}
.admin-pagination a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-300);
  font-size: 0.73rem;
  font-weight: 800;
}
.admin-pagination a svg {
  width: 16px;
  height: 16px;
}
.admin-pagination a.is-disabled {
  opacity: 0.36;
  pointer-events: none;
}
.admin-pagination > span {
  color: var(--silver-500);
  font-size: 0.7rem;
}
.admin-pagination strong {
  color: white;
}
.admin-empty {
  min-height: 260px;
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--ink-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer-grid p {
  max-width: 410px;
  color: var(--silver-500);
}
.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-grid > div:not(:first-child) a {
  color: var(--silver-500);
}
.footer-grid a:hover {
  color: white;
}
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--silver-500);
  font-size: 0.76rem;
}
.footer-bottom > span:nth-child(2) {
  text-align: center;
}
.footer-bottom > span:last-child {
  text-align: right;
}
.footer-bottom a {
  color: var(--gold-400);
}
.footer-bottom a:hover {
  color: var(--gold-300);
}

.player-shell {
  position: fixed;
  z-index: 300;
  inset: auto 0 0;
  background: rgba(5, 7, 10, 0.95);
  border-top: 1px solid var(--line-gold);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(22px);
}
.player-shell[hidden] {
  display: none;
}
.player-progress {
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width 0.35s ease;
}
.player-progress.is-loading {
  width: 68%;
  animation: loading-bar 1.3s ease-in-out infinite alternate;
}
.player-progress.is-playing {
  width: 100%;
}
.player-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}
.player-station {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.station-avatar--small {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #f6f7f9;
  overflow: hidden;
  color: var(--ink-1000);
  font-weight: 900;
}
.station-avatar--small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.player-station > div:last-child {
  display: grid;
  min-width: 0;
}
.player-station strong,
.player-station small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-station small {
  color: var(--silver-500);
}
.player-live-details {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  color: var(--silver-300);
  font-size: 0.66rem;
  line-height: 1.25;
}
.player-live-details[hidden],
.player-live-details > span[hidden] {
  display: none;
}
.player-live-details > span {
  min-width: 0;
  max-width: 150px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.player-live-details > span + span {
  padding-left: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.player-live-details svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  color: var(--gold-400);
}
.player-live-details > span > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.player-button {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--ink-1000);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(214, 173, 66, 0.18);
}
.player-button svg {
  width: 25px;
  height: 25px;
}
.player-skip {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--silver-300);
  cursor: pointer;
}
.player-skip:hover {
  color: var(--gold-400);
}
.player-skip svg {
  width: 23px;
  height: 23px;
}
.icon-pause {
  display: none;
}
.player-shell.is-playing .icon-play {
  display: none;
}
.player-shell.is-playing .icon-pause {
  display: block;
}
.player-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}
.icon-button {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--silver-500);
  cursor: pointer;
}
.icon-button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}
.icon-button svg {
  width: 20px;
  height: 20px;
}
.volume {
  --volume-level: 100%;
  width: 122px;
  height: 20px;
  margin: 0 4px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
}
.volume[data-level="0"] {
  --volume-level: 0%;
}
.volume[data-level="5"] {
  --volume-level: 5%;
}
.volume[data-level="10"] {
  --volume-level: 10%;
}
.volume[data-level="15"] {
  --volume-level: 15%;
}
.volume[data-level="20"] {
  --volume-level: 20%;
}
.volume[data-level="25"] {
  --volume-level: 25%;
}
.volume[data-level="30"] {
  --volume-level: 30%;
}
.volume[data-level="35"] {
  --volume-level: 35%;
}
.volume[data-level="40"] {
  --volume-level: 40%;
}
.volume[data-level="45"] {
  --volume-level: 45%;
}
.volume[data-level="50"] {
  --volume-level: 50%;
}
.volume[data-level="55"] {
  --volume-level: 55%;
}
.volume[data-level="60"] {
  --volume-level: 60%;
}
.volume[data-level="65"] {
  --volume-level: 65%;
}
.volume[data-level="70"] {
  --volume-level: 70%;
}
.volume[data-level="75"] {
  --volume-level: 75%;
}
.volume[data-level="80"] {
  --volume-level: 80%;
}
.volume[data-level="85"] {
  --volume-level: 85%;
}
.volume[data-level="90"] {
  --volume-level: 90%;
}
.volume[data-level="95"] {
  --volume-level: 95%;
}
.volume[data-level="100"] {
  --volume-level: 100%;
}
.volume::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--gold-400) 0 var(--volume-level),
    #242b34 var(--volume-level) 100%
  );
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}
.volume::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  margin-top: -6px;
  appearance: none;
  -webkit-appearance: none;
  border: 3px solid #f5d883;
  border-radius: 50%;
  background: #b88720;
  box-shadow: 0 0 0 4px rgba(214, 173, 66, 0.09), 0 2px 9px rgba(0, 0, 0, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.volume:hover::-webkit-slider-thumb {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(214, 173, 66, 0.12), 0 2px 10px rgba(0, 0, 0, 0.65);
}
.volume::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: #242b34;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}
.volume::-moz-range-progress {
  height: 5px;
  border-radius: 999px;
  background: var(--gold-400);
}
.volume::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 3px solid #f5d883;
  border-radius: 50%;
  background: #b88720;
  box-shadow: 0 0 0 4px rgba(214, 173, 66, 0.09), 0 2px 9px rgba(0, 0, 0, 0.6);
}
.audio-settings-button {
  color: var(--gold-400);
}
.audio-settings {
  width: min(calc(100vw - 32px), 650px);
  max-width: none;
  max-height: min(780px, calc(100dvh - 32px));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 24px;
  background: #0d1219;
  color: var(--silver-100);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.7);
}
.audio-settings::backdrop {
  background: rgba(2, 4, 7, 0.78);
  backdrop-filter: blur(7px);
}
.audio-settings-card {
  max-height: min(780px, calc(100dvh - 32px));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.audio-settings-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 18, 25, 0.96);
  backdrop-filter: blur(16px);
}
.audio-settings-header h2 {
  margin: 2px 0 0;
  font-size: clamp(1.4rem, 4vw, 1.85rem);
}
.audio-settings-header .eyebrow {
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.audio-settings-section {
  padding: 22px 24px;
}
.audio-settings-section + .audio-settings-section {
  border-top: 1px solid var(--line);
}
.audio-settings-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
}
.audio-settings-heading h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}
.audio-settings-heading p,
.audio-meter-copy {
  margin: 0;
  color: var(--silver-500);
  font-size: 0.78rem;
}
.audio-status {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid rgba(214, 173, 66, 0.28);
  border-radius: 999px;
  background: rgba(214, 173, 66, 0.08);
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.audio-segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}
.audio-segments label {
  position: relative;
  cursor: pointer;
}
.audio-segments input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.audio-segments span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 9px;
  border-radius: 9px;
  color: var(--silver-500);
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}
.audio-segments input:checked + span {
  background: var(--gold-400);
  color: var(--ink-1000);
  box-shadow: 0 7px 18px rgba(214, 173, 66, 0.15);
}
.audio-segments input:focus-visible + span {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}
.audio-meter-copy {
  margin-top: 10px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.audio-reset {
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--gold-400);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}
.audio-reset:hover {
  color: var(--gold-300);
}
.eq-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.eq-presets button {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--silver-500);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}
.eq-presets button:hover,
.eq-presets button.is-active {
  border-color: rgba(214, 173, 66, 0.42);
  background: rgba(214, 173, 66, 0.1);
  color: var(--gold-300);
}
.eq-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.eq-bands label {
  min-width: 0;
  display: grid;
  gap: 9px;
}
.eq-bands label > span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.76rem;
}
.eq-bands output {
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}
.eq-bands small {
  color: var(--silver-500);
  font-size: 0.65rem;
}
.eq-bands input {
  --eq-level: 50%;
  width: 100%;
  height: 18px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
}
.eq-bands input::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-400) 0 var(--eq-level), #242b34 var(--eq-level) 100%);
}
.eq-bands input::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  margin-top: -5px;
  appearance: none;
  -webkit-appearance: none;
  border: 3px solid #f5d883;
  border-radius: 50%;
  background: #b88720;
}
.eq-bands input::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: #242b34;
}
.eq-bands input::-moz-range-progress {
  height: 5px;
  border-radius: 999px;
  background: var(--gold-400);
}
.eq-bands input::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 3px solid #f5d883;
  border-radius: 50%;
  background: #b88720;
}
.eq-bands input:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px rgba(214, 173, 66, 0.2);
}
.audio-settings-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 15px 24px 20px;
  border-top: 1px solid var(--line);
  color: var(--silver-500);
  font-size: 0.72rem;
  line-height: 1.5;
}
.audio-settings-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold-400);
}
.toast {
  --toast-accent: #72c993;
  position: fixed;
  z-index: 500;
  top: calc(var(--header-height) + 18px);
  right: 22px;
  width: min(calc(100vw - 32px), 390px);
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  padding: 15px 13px 15px 15px;
  border: 1px solid color-mix(in srgb, var(--toast-accent) 34%, var(--line));
  border-radius: 16px;
  background: rgba(13, 18, 25, 0.96);
  color: var(--silver-300);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-12px) scale(0.985);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast[hidden] {
  display: none;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toast[data-type="error"] {
  --toast-accent: #ff7185;
}
.toast[data-type="warning"] {
  --toast-accent: var(--gold-400);
}
.toast[data-type="info"] {
  --toast-accent: #72b6e8;
}
.toast-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--toast-accent) 42%, transparent);
  border-radius: 11px;
  background: color-mix(in srgb, var(--toast-accent) 11%, transparent);
  color: var(--toast-accent);
  font-size: 0.92rem;
  font-weight: 900;
}
.toast-icon svg {
  width: 18px;
  height: 18px;
}
.toast-copy {
  min-width: 0;
  display: grid;
  line-height: 1.35;
}
.toast-copy strong {
  color: white;
  font-size: 0.82rem;
}
.toast-copy > span {
  margin-top: 2px;
  color: var(--silver-500);
  font-size: 0.76rem;
}
.toast-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--silver-500);
  cursor: pointer;
}
.toast-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}
.toast-close svg {
  width: 17px;
}
.toast-progress {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--toast-accent);
  transform-origin: left;
  animation: toast-countdown 4.8s linear forwards;
}
@keyframes toast-countdown {
  to { transform: scaleX(0); }
}

.offline-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at top, #15202e, #030507 62%);
  text-align: center;
}
.offline-card {
  width: min(100%, 620px);
  padding: 42px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl);
  background: rgba(7, 10, 14, 0.9);
  box-shadow: var(--shadow);
}
.offline-card img {
  width: 110px;
  margin: 0 auto 24px;
  border-radius: 28px;
}
.offline-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 1;
}
.offline-card p {
  color: var(--silver-500);
}
.offline-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--gold-400);
  color: var(--ink-1000);
  font-weight: 800;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 198, 106, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(231, 198, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 198, 106, 0);
  }
}
@keyframes loading-bar {
  from {
    transform: translateX(-35%);
  }
  to {
    transform: translateX(45%);
  }
}
@keyframes preview-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes preview-wave {
  from {
    height: 7px;
    opacity: 0.55;
  }
  to {
    height: 31px;
    opacity: 1;
  }
}
@keyframes preview-progress {
  0% {
    width: 18%;
  }
  50% {
    width: 72%;
  }
  100% {
    width: 18%;
  }
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 42px;
  }
  .station-grid,
  .station-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-panel {
    grid-template-columns: 1fr;
  }
  .feature-visual {
    min-height: 240px;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 45px;
  }
  .station-detail-grid {
    gap: 50px;
  }
  .station-row {
    grid-template-columns: auto minmax(180px, 1fr) minmax(200px, 1fr) auto auto;
  }
  .station-row-more {
    display: none;
  }
  .account-workspace {
    grid-template-columns: 215px minmax(0, 1fr);
  }
  .account-settings-grid {
    grid-template-columns: 1fr;
  }
  .admin-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand-copy strong {
    font-size: 0.9rem;
  }
  .brand-copy small {
    font-size: 0.52rem;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 3px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--ink-950);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav .nav-account {
    margin-left: 0;
  }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 55px);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: none;
  }
  .hero-preview {
    max-width: 580px;
    margin: 26px auto 0 0;
  }
  .section {
    padding: 80px 0;
  }
  .section-heading,
  .stations-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature-panel {
    padding: 38px 26px;
  }
  .account-panel {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .station-detail-grid {
    grid-template-columns: 1fr;
  }
  .station-detail-logo {
    max-width: 330px;
  }
  .station-info-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .auth-grid {
    grid-template-columns: 1fr;
  }
  .auth-panel--register {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .account-dashboard {
    grid-template-columns: 1fr;
  }
  .account-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .account-workspace {
    grid-template-columns: 1fr;
  }
  .account-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .account-tabs a {
    min-width: 0;
    min-height: 50px;
    justify-content: center;
    padding-inline: 9px;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
  }
  .account-tabs .account-admin-tab {
    margin-top: 0;
  }
  .admin-directory-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .admin-search-form > div {
    min-width: 0;
    flex: 1;
  }
  .admin-user-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .admin-user-table {
    min-width: 0;
  }
  .admin-user-table thead {
    display: none;
  }
  .admin-user-table,
  .admin-user-table tbody {
    display: grid;
    gap: 11px;
  }
  .admin-user-table tr {
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(3, 6, 10, 0.3);
  }
  .admin-user-table td {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid var(--line);
  }
  .admin-user-table td:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .admin-user-table td::before {
    content: attr(data-label);
    color: var(--silver-500);
    font-size: 0.59rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .admin-user-action {
    text-align: left;
  }
  .admin-user-actions {
    justify-items: start;
  }
  .admin-user-action form,
  .admin-locked-label {
    margin: 0;
    justify-self: start;
  }
  .privacy-toc ol,
  .privacy-contact-card {
    grid-template-columns: 1fr;
  }
  .account-monogram:not(.account-avatar) {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .footer-bottom > span:nth-child(2),
  .footer-bottom > span:last-child {
    text-align: left;
  }
  body.has-player {
    padding-bottom: calc(138px + env(safe-area-inset-bottom, 0px));
  }
  .player-shell {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .player-inner {
    grid-template-columns: 1fr auto;
    min-height: 132px;
    padding-block: 10px;
    row-gap: 7px;
  }
  .player-station {
    grid-column: 1;
    grid-row: 2;
  }
  .player-controls {
    grid-column: 2;
    grid-row: 2;
  }
  .player-actions {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    justify-content: stretch;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--line);
  }
  .player-actions .volume {
    width: auto;
    flex: 1;
  }
  .player-actions [data-player-close] {
    margin-left: auto;
  }
  .station-row {
    grid-template-columns: auto 1fr auto auto;
  }
  .station-row > p {
    display: none;
  }
}

@media (max-width: 560px) {
  body.has-player {
    padding-bottom: calc(132px + env(safe-area-inset-bottom, 0px));
  }
  .brand-copy small {
    display: none;
  }
  .privacy-page {
    padding-top: calc(var(--header-height) + 54px);
  }
  .privacy-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .hero h1,
  .stations-hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }
  .hero-actions,
  .station-detail-actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .hero-trust {
    gap: 13px;
    justify-content: space-between;
  }
  .hero-trust span {
    display: grid;
  }
  .hero-preview {
    padding: 16px;
  }
  .hero-preview {
    min-height: 172px;
    padding: 15px;
  }
  .preview-player-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
  }
  .preview-station-logo {
    width: 62px;
    height: 62px;
  }
  .preview-wave {
    display: none;
  }
  .preview-play-button {
    width: 48px;
    height: 48px;
  }
  .station-logo--large {
    width: 66px;
    height: 66px;
  }
  .station-grid,
  .station-grid--catalog,
  .station-grid--three {
    grid-template-columns: 1fr;
  }
  .station-card {
    min-height: 285px;
  }
  .feature-visual {
    min-height: 200px;
  }
  .stations-hero {
    padding-top: calc(var(--header-height) + 65px);
  }
  .breadcrumbs {
    margin-bottom: 35px;
  }
  .station-detail-logo {
    padding: 35px;
  }
  .station-detail-copy h1 {
    font-size: 3.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .account-section {
    padding-top: calc(var(--header-height) + 38px);
  }
  .account-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .account-identity h1 {
    font-size: 2.35rem;
  }
  .account-monogram--small {
    width: 66px;
    flex-basis: 66px;
    font-size: 1.55rem;
  }
  .settings-card--avatar {
    grid-template-columns: 1fr;
  }
  .avatar-settings-preview {
    width: 124px;
  }
  .avatar-upload-form {
    align-items: stretch;
    flex-direction: column;
  }
  .avatar-form-actions {
    width: 100%;
    margin-left: 0;
    flex-wrap: nowrap;
  }
  .avatar-file-picker > span,
  .avatar-file-picker {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
  .avatar-form-actions .button {
    flex: 1 1 0;
    justify-content: center;
  }
  .account-logout-form .button {
    width: auto;
  }
  .account-header-actions {
    width: 100%;
    justify-content: stretch;
  }
  .account-header-actions > .button {
    width: auto;
    flex: 1 1 auto;
  }
  .account-stat-grid {
    grid-template-columns: 1fr;
  }
  .account-stat-grid article {
    padding: 17px 20px;
  }
  .account-workspace {
    border-radius: 19px;
  }
  .account-tabs a {
    justify-content: flex-start;
    padding: 10px;
    font-size: 0.78rem;
    text-align: left;
  }
  .account-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .account-tab-panel {
    padding: 25px 16px;
  }
  .admin-metric-grid {
    grid-template-columns: 1fr;
  }
  .admin-metric-grid article {
    min-height: 106px;
  }
  .admin-search-form {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-search-form .button {
    width: 100%;
  }
  .admin-search-reset {
    align-self: center;
  }
  .admin-user-table td {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .admin-user-table td::before {
    margin-bottom: 1px;
  }
  .admin-user-identity {
    min-width: 0;
  }
  .admin-user-identity a {
    overflow-wrap: anywhere;
  }
  .admin-pagination {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
  .admin-pagination a {
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .account-panel-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .account-recent-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
  }
  .account-recent-item .account-rank,
  .account-recent-item > strong {
    display: none;
  }
  .account-favorites-grid {
    grid-template-columns: 1fr;
  }
  .listening-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
  }
  .listening-row > .round-play {
    display: none;
  }
  .listening-row-main > div:first-child {
    align-items: start;
    flex-direction: column;
    gap: 1px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .player-inner {
    gap: 10px;
  }
  .audio-settings {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 18px;
  }
  .audio-settings-card {
    max-height: calc(100dvh - 16px);
  }
  .audio-settings-header,
  .audio-settings-section {
    padding-inline: 17px;
  }
  .audio-settings-note {
    padding-inline: 17px;
  }
  .audio-settings-heading {
    gap: 10px;
  }
  .eq-bands {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .player-station {
    gap: 9px;
  }
  .station-avatar--small {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }
  .player-station small {
    max-width: 130px;
  }
  .player-controls {
    gap: 2px;
  }
  .player-button {
    width: 48px;
    height: 48px;
  }
  .player-skip {
    width: 34px;
  }
  .toast {
    top: calc(var(--header-height) + 10px);
    right: 16px;
    bottom: auto;
  }
  .station-search-shell {
    height: 56px;
    margin-top: 30px;
  }
  .station-search-shell kbd {
    display: none;
  }
  .catalog-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .station-row {
    gap: 12px;
    min-height: 80px;
    padding: 9px 10px;
    border-radius: 15px;
  }
  .station-logo--row {
    width: 58px;
    height: 58px;
    border-radius: 13px;
  }
  .station-live-button {
    min-width: 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 0;
  }
  .station-live-button svg {
    width: 18px;
  }
}

@media (max-width: 1000px) {
  .plus-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plus-plan-card--premium {
    grid-column: 1 / -1;
  }
  .platinum-invite-card {
    grid-template-columns: 125px minmax(0, 1fr);
  }
  .platinum-invite-emblem {
    width: 125px;
  }
  .platinum-invite-label {
    grid-column: 2;
    justify-self: start;
  }
  .subscription-account-card {
    grid-template-columns: 1fr;
  }
  .subscription-account-actions {
    justify-items: start;
  }
  .subscription-payment-warning {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .plus-plan-grid,
  .plus-faq-grid {
    grid-template-columns: 1fr;
  }
  .plus-plan-card {
    min-height: 480px;
  }
  .plus-plan-card--premium {
    grid-column: auto;
  }
  .platinum-invite-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }
  .platinum-invite-emblem {
    width: 110px;
  }
  .plus-faq-intro {
    position: static;
  }
  .plus-final-card {
    align-items: start;
    flex-direction: column;
  }
  .subscription-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .plus-plans {
    padding-top: calc(var(--header-height) + 48px);
  }
  .plus-plans-notice {
    margin-bottom: 48px;
  }
  .plus-section-heading {
    margin-bottom: 34px;
  }
  .plus-section-heading h2,
  .plus-faq-intro h2 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }
  .plus-plan-card {
    min-height: 0;
    padding: 26px 21px;
    border-radius: 21px;
  }
  .plus-plan-price strong {
    font-size: 2.8rem;
  }
  .plus-plan-card ul {
    margin-bottom: 28px;
  }
  .platinum-invite-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .platinum-invite-emblem {
    width: 126px;
  }
  .platinum-invite-label {
    grid-column: auto;
    justify-self: center;
  }
  .subscription-platinum-billing {
    align-items: stretch;
    flex-direction: column;
  }
  .subscription-platinum-billing .button {
    width: 100%;
  }
  .plus-plan-footnote {
    align-items: start;
    text-align: left;
  }
  .plus-faq-list summary {
    min-height: 76px;
    font-size: 0.9rem;
  }
  .plus-final-cta {
    padding-bottom: 70px;
  }
  .plus-final-card {
    padding: 32px 24px;
    border-radius: 23px;
  }
  .plus-final-card .button {
    width: 100%;
  }
  .subscription-account-main {
    align-items: start;
    flex-direction: column;
  }
  .subscription-account-actions,
  .subscription-account-actions form,
  .subscription-account-actions .button {
    width: 100%;
  }
  .subscription-account-actions .button {
    justify-content: center;
  }
  .subscription-empty-actions,
  .subscription-empty-actions form,
  .subscription-empty-actions .button {
    width: 100%;
  }
}

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