.radio-player.station-hero {
  --bubble-size: clamp(60px, 6.5vw, 76px);
  --control-height: clamp(44px, 4.5vw, 52px);

  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 32px);
  padding: clamp(20px, 4vw, 34px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, rgba(20, 26, 52, 0.58) 80%, transparent) 0%,
      color-mix(in srgb, rgba(6, 10, 28, 0.72) 94%, transparent) 100%);
  box-shadow: 0 40px 90px rgba(4, 8, 24, 0.55);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  position: relative;
  overflow: hidden;
}

.radio-player.station-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.radio-player.station-hero > * {
  position: relative;
  z-index: 1;
}

.station-page-container {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.station-page-container > * {
  width: 100%;
}

.station-hero__row {
  --bs-gutter-x: clamp(16px, 3vw, 26px);
  --bs-gutter-y: clamp(12px, 2vw, 18px);
  margin: 0;
}

.station-hero__logo-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .station-hero__logo-col {
    justify-content: flex-start;
  }
}

.station-hero__logo-shell {
  width: clamp(190px, 22vw, 220px);
  aspect-ratio: 16 / 9;
  border-radius: clamp(26px, 3vw, 30px);
  padding: clamp(6px, 1vw, 10px);
  background: linear-gradient(145deg, rgba(28, 32, 60, 0.96), rgba(116, 78, 255, 0.32));
  border: 1px solid rgba(175, 140, 255, 0.32);
  box-shadow: 0 24px 48px rgba(10, 14, 40, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.station-hero__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(20px, 2.4vw, 24px);
}

.station-hero__info-col {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
  min-width: 0;
  justify-content: center;
}

.station-hero__name-row {
  display: flex;
  align-items: center;
  min-width: 0;
}

.station-hero__title {
  margin: 0;
  font-size: clamp(1.95rem, 3.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-wrap: balance;
}

.station-hero__chips-row {
  display: flex;
  align-items: center;
  min-height: clamp(32px, 3.6vw, 38px);
}

.station-hero__tags,
.station-info-panel__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.station-hero__tags .station-tag,
.station-info-panel__tags .station-tag {
  margin: 0;
}

.station-hero__tags .station-tag-pill,
.station-info-panel__tags .station-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(24, 26, 46, 0.92), rgba(16, 19, 37, 0.82));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 28px rgba(10, 12, 30, 0.28);
}

.station-hero__tags .station-tag-pill:hover,
.station-hero__tags .station-tag-pill:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(12, 14, 34, 0.4);
  color: #ffffff;
  outline: none;
}

.station-hero__controls-row {
  --bs-gutter-x: clamp(12px, 2.4vw, 18px);
  --bs-gutter-y: clamp(10px, 1.6vw, 14px);
  margin: 0;
}

.station-hero__controls {
  padding: clamp(14px, 2.6vw, 20px);
  border-radius: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(140deg, rgba(18, 20, 40, 0.92), rgba(16, 18, 36, 0.86));
  box-shadow: 0 24px 52px rgba(8, 12, 34, 0.35);
}

.station-hero__controls-left {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 28px);
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

.station-hero__controls-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  justify-content: center;
  flex: 0 0 auto;
}

.station-hero__controls-left .station-hero__play-btn {
  flex: 0 0 auto;
}

.station-hero__secondary-controls {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.5vw, 14px);
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: auto;
}

.station-hero__secondary-controls .station-hero__stream-menu {
  flex: 1 1 100%;
  min-width: 0;
  width: auto;
  max-width: 100%;
}

.station-hero__secondary-controls .station-hero__volume-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  flex: 0 0 clamp(52px, 14vw, 70px);
  min-width: 0;
}

.station-hero__secondary-controls .station-hero__volume-control {
  flex: 0 0 auto;
  min-width: 0;
}

@media (min-width: 992px) {
  .station-hero__controls-left {
    flex-wrap: nowrap;
    gap: clamp(4px, 0.6vw, 10px);
  }
  .station-hero__secondary-controls {
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: clamp(6px, 0.8vw, 12px);
  }
  .station-hero__secondary-controls .station-hero__stream-menu {
    flex: 0 0 auto;
    width: auto;
    max-width: clamp(180px, 12vw, 220px);
    margin-right: clamp(2px, 0.4vw, 8px);
  }
  .station-hero__secondary-controls .station-hero__volume-wrapper {
    flex: 0 0 clamp(48px, 5vw, 66px);
    margin-left: 0;
  }
}

.station-hero__secondary-controls .station-hero__stream-toggle {
  width: 100%;
}

.station-hero__secondary-controls .station-hero__volume-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  flex: 0 0 clamp(52px, 14vw, 70px);
  min-width: 0;
}

.station-hero__secondary-controls .station-hero__volume-control {
  flex: 0 0 auto;
  min-width: 0;
}

@media (max-width: 1199.98px) {
  .station-hero__secondary-controls {
    width: auto;
    justify-content: center;
  }
  .station-hero__secondary-controls .station-hero__stream-menu {
    max-width: clamp(220px, 40vw, 380px);
  }
}

@media (max-width: 991.98px) {
  .station-hero__controls-left {
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 3vw, 32px);
  }
  .station-hero__controls-left .station-hero__play-btn {
    align-self: center;
  }
  .station-hero__secondary-controls {
    width: 100%;
    gap: clamp(8px, 2vw, 14px);
  }
  .station-hero__secondary-controls .station-hero__stream-menu {
    flex: 1 1 clamp(200px, 58vw, 340px);
    max-width: min(100%, clamp(200px, 58vw, 360px));
  }
  .station-hero__controls-right {
    justify-content: center;
    width: 100%;
    margin-top: clamp(12px, 2.4vw, 20px);
  }
}

@media (max-width: 767.98px) {
  .station-hero__secondary-controls {
    gap: clamp(6px, 3vw, 12px);
  }
  .station-hero__secondary-controls .station-hero__stream-menu {
    flex-basis: clamp(180px, 68vw, 320px);
    max-width: min(100%, clamp(180px, 70vw, 320px));
  }
  .station-hero__secondary-controls .station-hero__volume-wrapper {
    flex-basis: clamp(48px, 16vw, 66px);
  }
}

@media (max-width: 575.98px) {
  .station-hero__secondary-controls {
    gap: clamp(6px, 3vw, 10px);
  }
  .station-hero__secondary-controls .station-hero__stream-menu {
    flex-basis: clamp(150px, 72vw, 300px);
  }
  .station-hero__secondary-controls .station-hero__stream-toggle {
    min-width: 0;
    padding: 0 clamp(12px, 4vw, 16px);
  }
}

.station-hero__play-btn {
  width: var(--bubble-size);
  height: var(--bubble-size);
  border-radius: 50%;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, rgba(181, 133, 255, 0.92), rgba(112, 61, 220, 0.86));
  color: #ffffff;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  box-shadow: 0 24px 48px rgba(90, 60, 180, 0.48);
  transition: transform 0.16s ease, box-shadow 0.2s ease, filter 0.16s ease;
  position: relative;
  overflow: visible;
}

.station-hero__play-btn .btn-label {
  display: none;
}

.station-hero__play-btn i {
  transition: opacity 0.18s ease, transform 0.18s ease;
  position: relative;
  z-index: 3;
}

.station-hero__play-btn.is-loading {
  cursor: progress;
}

.station-hero__play-btn.is-loading i {
  opacity: 0;
  transform: scale(0.65);
}

.station-hero__play-btn.is-playing i {
  opacity: 1;
  transform: scale(0.88);
}

.station-hero__play-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.station-hero__play-pulse,
.station-hero__play-spinner {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.station-hero__play-pulse {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  transform: scale(1);
}

.station-hero__play-btn.is-playing .station-hero__play-pulse {
  opacity: 1;
  animation: station-play-pulse 1.6s ease-in-out infinite;
}

.station-hero__play-spinner {
  width: 60%;
  height: 60%;
  border: 3px solid rgba(255, 255, 255, 0.24);
  border-top-color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.station-hero__play-btn.is-loading .station-hero__play-spinner {
  opacity: 1;
  animation: station-play-spin 0.8s linear infinite;
}

.station-hero__play-btn:hover,
.station-hero__play-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 28px 56px rgba(100, 70, 200, 0.5);
  outline: none;
}

.station-hero__play-btn.is-loading:hover,
.station-hero__play-btn.is-loading:focus-visible {
  transform: none;
  box-shadow: 0 24px 48px rgba(90, 60, 180, 0.48);
  filter: none;
}

.station-hero__stream-menu {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .station-hero__stream-menu {
    flex: 0 0 auto;
    width: auto;
    max-width: clamp(200px, 18vw, 280px);
  }
}

.station-hero__stream-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-width: clamp(140px, 30vw, 220px);
  height: var(--control-height);
  padding: 0 clamp(16px, 2.6vw, 22px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(28, 30, 54, 0.92), rgba(20, 22, 40, 0.84));
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  transition: transform 0.15s ease, border-color 0.18s ease, box-shadow 0.2s ease;
}

@media (max-width: 575.98px) {
  .station-hero__stream-toggle {
    min-width: 0;
    padding: 0 clamp(12px, 4vw, 18px);
  }
}

@media (min-width: 992px) {
  .station-hero__stream-toggle {
    width: auto;
    min-width: 0;
    max-width: clamp(150px, 18vw, 220px);
    padding: 0 clamp(18px, 2vw, 24px);
  }
}

.station-hero__stream-toggle:hover,
.station-hero__stream-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(170, 130, 255, 0.6);
  box-shadow: 0 20px 40px rgba(10, 12, 34, 0.32);
  color: #ffffff;
  outline: none;
}

.station-hero__volume-control {
  --volume-percent: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.station-hero__volume-control {
  --volume-panel-width: clamp(220px, 36vw, 340px);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.station-volume__panel {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 14px);
  min-width: 0;
  width: clamp(180px, 32vw, 320px);
  max-width: calc(100vw - clamp(32px, 8vw, 120px));
  padding: clamp(10px, 1.4vw, 14px) clamp(16px, 2vw, 22px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: color-mix(in srgb, var(--color-surface-1) 94%, rgba(8, 10, 24, 0.85));
  box-shadow: 0 24px 48px rgba(5, 6, 18, 0.55);
  position: absolute;
  bottom: calc(100% + clamp(8px, 1.4vw, 14px));
  left: 50%;
  transform: translate(-50%, 6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  z-index: 40;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.station-hero__volume-control.is-panel-open .station-volume__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

@media (max-width: 575.98px) {
  .station-volume__panel {
    max-width: calc(100vw - clamp(20px, 8vw, 48px));
  }
}

.station-hero__volume-control.is-muted {
  color: rgba(255, 255, 255, 0.68);
}

.station-volume__mute {
  width: clamp(40px, 5.5vw, 48px);
  height: clamp(40px, 5.5vw, 48px);
  aspect-ratio: 1 / 1;
  min-width: clamp(40px, 5.5vw, 48px);
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.16s ease, box-shadow 0.2s ease, background-color 0.18s ease, color 0.18s ease;
  margin-left: 0;
}

.station-volume__mute:hover,
.station-volume__mute:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 12px 24px rgba(12, 14, 34, 0.3);
  outline: none;
}

.station-volume__mute:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 0 3px rgba(140, 110, 255, 0.35);
}

.station-hero__volume-control.is-muted .station-volume__mute {
  background: rgba(255, 255, 255, 0.07);
}

.station-volume__icon {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  display: none;
}

.station-volume__icon--up {
  display: block;
}

.station-hero__volume-control.is-muted .station-volume__icon--up {
  display: none;
}

.station-hero__volume-control.is-muted .station-volume__icon--off {
  display: block;
}

.station-volume__slider {
  --volume-percent: 100%;

  flex: 1 1 auto;
  width: 100%;
  min-width: 120px;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--brand-primary) 65%, rgba(255, 255, 255, 0.24)) 0%,
      color-mix(in srgb, var(--brand-accent) 52%, rgba(12, 16, 36, 0.36)) var(--volume-percent),
      rgba(255, 255, 255, 0.16) var(--volume-percent),
      rgba(255, 255, 255, 0.08) 100%);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  transition: background 0.18s ease;
}

.station-volume__slider:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(140, 110, 255, 0.35);
}

.station-volume__slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--brand-primary) 65%, rgba(255, 255, 255, 0.24)) 0%,
      color-mix(in srgb, var(--brand-accent) 52%, rgba(12, 16, 36, 0.36)) var(--volume-percent),
      rgba(255, 255, 255, 0.16) var(--volume-percent),
      rgba(255, 255, 255, 0.08) 100%);
}

.station-volume__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: clamp(16px, 3vw, 18px);
  height: clamp(16px, 3vw, 18px);
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(230, 220, 255, 0.86));
  box-shadow: 0 12px 18px rgba(10, 8, 28, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.65);
  margin-top: calc((clamp(16px, 3vw, 18px) / -2) + 3px);
}

.station-volume__slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--brand-primary) 65%, rgba(255, 255, 255, 0.24)) 0%,
      color-mix(in srgb, var(--brand-accent) 52%, rgba(12, 16, 36, 0.36)) var(--volume-percent),
      rgba(255, 255, 255, 0.16) var(--volume-percent),
      rgba(255, 255, 255, 0.08) 100%);
}

.station-volume__slider::-moz-range-thumb {
  width: clamp(16px, 3vw, 18px);
  height: clamp(16px, 3vw, 18px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(230, 220, 255, 0.86));
  box-shadow: 0 12px 18px rgba(10, 8, 28, 0.35);
}

.station-hero__volume-control.is-muted .station-volume__slider {
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.16) 100%);
}

.station-hero__volume-control.is-muted .station-volume__slider::-webkit-slider-thumb,
.station-hero__volume-control.is-muted .station-volume__slider::-moz-range-thumb {
  background: linear-gradient(160deg, rgba(245, 240, 255, 0.85), rgba(220, 210, 245, 0.72));
  box-shadow: 0 10px 16px rgba(10, 8, 28, 0.28);
}

@media (max-width: 767.98px) {
  .station-hero__volume-control {
    flex: 1 1 100%;
    width: 100%;
  }
}

.station-stream-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.station-stream-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 0.2s ease;
}

#stream-menu-btn[aria-expanded="true"] .station-stream-arrow {
  transform: rotate(180deg);
}

.station-hero__icon-btn {
  width: clamp(50px, 6vw, 56px);
  height: clamp(50px, 6vw, 56px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.18s ease;
}

.station-hero__icon-btn:hover,
.station-hero__icon-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(175, 135, 255, 0.6);
  box-shadow: 0 18px 36px rgba(12, 14, 34, 0.28);
  outline: none;
  color: #ffffff;
}

#toggle-favorite.is-favorite,
#toggle-favorite.is-favorite:hover {
  background: radial-gradient(circle at 35% 30%, rgba(181, 133, 255, 0.9), rgba(112, 61, 220, 0.82));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(90, 60, 180, 0.45);
}

.station-hero__comments {
  position: relative;
  width: clamp(50px, 6vw, 56px);
  height: clamp(50px, 6vw, 56px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.18s ease;
}

.station-hero__comments:hover,
.station-hero__comments:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(175, 135, 255, 0.6);
  box-shadow: 0 18px 36px rgba(12, 14, 34, 0.28);
  color: #ffffff;
  outline: none;
}

@keyframes station-play-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  60% {
    transform: scale(1.18);
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes station-play-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.station-comments-svg {
  width: 20px;
  height: 20px;
}

.station-hero__comments .station-action-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(16, 12, 42, 0.45);
}

.stream-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.stream-menu-pop {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 210px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 20, 38, 0.94);
  box-shadow: 0 22px 44px rgba(8, 10, 28, 0.45);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  z-index: 60;
}

.stream-menu-pop.open {
  display: block;
}

.stream-menu-pop .stream-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stream-menu-pop .stream-button {
  min-width: 60px;
  padding: 7px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.1s ease, border-color 0.18s ease, background 0.18s ease;
}

.stream-menu-pop .stream-button:hover,
.stream-menu-pop .stream-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(175, 135, 255, 0.6);
  background: rgba(175, 135, 255, 0.24);
  outline: none;
}

.stream-menu-pop .stream-button.active-stream-button {
  background: linear-gradient(135deg, rgba(175, 135, 255, 0.7), rgba(122, 83, 210, 0.7));
  border-color: rgba(190, 150, 255, 0.75);
  box-shadow: 0 14px 28px rgba(85, 60, 180, 0.32);
}

.station-last-tracks__layout {
  display: block;
}

.station-last-tracks__layout .station-ad-slot {
  display: none;
  width: 100%;
  margin-top: clamp(20px, 4vw, 28px);
  margin-bottom: clamp(20px, 4vw, 28px);
}

.station-last-tracks__layout .station-ad-slot > ins.adsbygoogle {
  display: block;
  width: 100%;
  min-height: 250px;
}

.station-last-tracks__surface {
  position: relative;
  padding: clamp(26px, 5vw, 38px);
  border-radius: 32px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 72%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--color-surface-1) 94%, rgba(255, 255, 255, 0.08)) 0%,
      color-mix(in srgb, var(--color-surface-2) 82%, rgba(0, 0, 0, 0.52)) 100%);
  box-shadow: 0 34px 68px rgba(8, 12, 32, 0.48);
  overflow: hidden;
}

.station-last-tracks__surface::before {
  content: "";
  position: absolute;
  inset: -35% -25% auto 30%;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      color-mix(in srgb, var(--brand-primary) 32%, transparent) 0%,
      transparent 70%);
  opacity: 0.65;
  pointer-events: none;
}

.station-last-tracks__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 4vw, 24px);
  margin-bottom: clamp(20px, 4vw, 30px);
}

.station-last-tracks__title {
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.012em;
}

.station-last-tracks__refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 4.8vw, 54px);
  height: clamp(44px, 4.8vw, 54px);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 38%, rgba(255, 255, 255, 0.2));
  background: color-mix(in srgb, var(--brand-primary) 18%, rgba(255, 255, 255, 0.08));
  color: #ffffff;
  transition: transform 0.16s ease, border-color 0.18s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.station-last-tracks__refresh:hover,
.station-last-tracks__refresh:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-primary) 68%, rgba(255, 255, 255, 0.32));
  background: color-mix(in srgb, var(--brand-primary) 34%, rgba(255, 255, 255, 0.12));
  box-shadow: 0 18px 36px rgba(12, 16, 40, 0.45);
  outline: none;
}

.station-last-tracks__refresh .refresh-icon {
  font-size: 1.05rem;
}

.station-last-tracks__refresh .refresh-icon.rotating {
  animation: station-refresh-spin 0.9s linear infinite;
}

.station-last-tracks__list {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 3vw, 22px);
}

.station-last-tracks .track-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 3vw, 20px);
  padding: clamp(18px, 4vw, 26px);
  border-radius: 26px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 70%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--color-surface-1) 92%, rgba(255, 255, 255, 0.06)) 0%,
      color-mix(in srgb, var(--color-surface-2) 80%, rgba(3, 8, 22, 0.52)) 100%);
  box-shadow: 0 22px 44px rgba(7, 10, 28, 0.45);
  transition: transform 0.16s ease, border-color 0.2s ease, box-shadow 0.26s ease;
}

.station-last-tracks .track-item[data-track-state="history"] {
  display: grid;
  grid-template-columns: minmax(60px, max-content) minmax(0, 1fr);
  align-items: start;
  gap: clamp(12px, 3.4vw, 18px);
}

.station-last-tracks .track-item[data-track-state="history"] .track-details {
  width: 100%;
  min-width: 0;
}

.station-last-tracks .track-item[data-track-state="history"] .track-time {
  margin: 0;
  justify-self: start;
}

.station-last-tracks .track-item:hover,
.station-last-tracks .track-item:focus-within {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand-primary) 46%, rgba(255, 255, 255, 0.36));
  box-shadow: 0 28px 58px rgba(14, 18, 44, 0.52);
}

.station-last-tracks .track-item[data-track-state="now"] {
  border-color: color-mix(in srgb, var(--brand-primary) 58%, rgba(255, 255, 255, 0.32));
  background:
    linear-gradient(150deg,
      color-mix(in srgb, var(--brand-primary) 32%, rgba(255, 255, 255, 0.18)) 0%,
      color-mix(in srgb, var(--brand-accent) 24%, rgba(4, 6, 20, 0.65)) 100%);
}

.station-last-tracks .cover-wrapper {
  position: relative;
  width: clamp(108px, 24vw, 132px);
  min-width: clamp(108px, 24vw, 132px);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 14, 28, 0.45);
  box-shadow: 0 24px 46px rgba(6, 10, 30, 0.5);
}

.station-last-tracks .cover-wrapper .album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-eq {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  padding: 12px 14px;
  pointer-events: none;
  mix-blend-mode: screen;
}

.cover-eq div {
  align-self: end;
  width: 100%;
  height: 18%;
  border-radius: 6px;
  background: color-mix(in srgb, var(--brand-primary) 48%, rgba(255, 255, 255, 0.78));
  transform-origin: center bottom;
  animation: station-eq var(--eq-duration, 0.92s) ease-in-out infinite alternate;
  animation-delay: var(--eq-delay, 0s);
  opacity: 0.85;
}

.cover-eq div:nth-child(1) { --eq-duration: .78s; --eq-delay: .00s; --eq-scale: 1.18; }
.cover-eq div:nth-child(2) { --eq-duration: .96s; --eq-delay: .08s; --eq-scale: 1.05; }
.cover-eq div:nth-child(3) { --eq-duration: .88s; --eq-delay: .14s; --eq-scale: 1.22; }
.cover-eq div:nth-child(4) { --eq-duration: 1.04s; --eq-delay: .04s; --eq-scale: 1.12; }
.cover-eq div:nth-child(5) { --eq-duration: .9s; --eq-delay: .12s; --eq-scale: 1.24; }
.cover-eq div:nth-child(6) { --eq-duration: 1.02s; --eq-delay: .06s; --eq-scale: 1.1; }
.cover-eq div:nth-child(7) { --eq-duration: .86s; --eq-delay: .16s; --eq-scale: 1.28; }
.cover-eq div:nth-child(8) { --eq-duration: 1.08s; --eq-delay: .10s; --eq-scale: 1.14; }

.cover-eq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(160% 120% at 50% 100%, rgba(0, 0, 0, 0.6), transparent 70%);
}

.station-last-tracks .track-info-flex {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 3vw, 16px);
  width: 100%;
}

.station-last-tracks .track-details {
  display: block;
  width: 100%;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  text-wrap: balance;
}

.station-last-tracks .track-now-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-primary) 28%, rgba(255, 255, 255, 0.12));
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.station-last-tracks .track-now-times {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2.6vw, 18px);
}

.station-last-tracks .time-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 18, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 600;
}

.station-last-tracks .time-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.station-last-tracks .track-now-time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #ffffff;
}

.station-last-tracks .track-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 18, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.station-last-tracks__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 3.6vw, 26px);
}

.btn-playlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 55%, rgba(255, 255, 255, 0.24));
  border-radius: 999px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.btn-playlist:hover,
.btn-playlist:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-primary) 78%, rgba(255, 255, 255, 0.36));
  background: color-mix(in srgb, var(--brand-primary) 42%, rgba(255, 255, 255, 0.16));
  box-shadow: 0 24px 48px rgba(12, 16, 38, 0.5);
  color: #ffffff;
}

.btn-playlist:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand-primary) 70%, rgba(255, 255, 255, 0.32));
  outline-offset: 3px;
}

.btn-playlist-icon {
  font-size: 1.2rem;
  margin-right: 12px;
}

.tracklist-panel {
  position: fixed;
  inset: 0;
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.tracklist-panel[hidden] {
  display: none !important;
}

.tracklist-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tracklist-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 28, 0.58);
  transition: opacity 0.28s ease;
  opacity: 0;
}

.tracklist-panel.is-open .tracklist-panel__overlay {
  opacity: 1;
}

.tracklist-panel__drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  max-width: clamp(320px, 50vw, 420px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(24px, 5vw, 32px);
  background: linear-gradient(165deg, rgba(22, 24, 44, 0.95), rgba(16, 18, 34, 0.92));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -32px 0 72px rgba(6, 8, 24, 0.52);
  transform: translateX(105%);
  transition: transform 0.34s cubic-bezier(0.32, 0.12, 0.22, 0.96);
  overflow: hidden;
}

.tracklist-panel.is-open .tracklist-panel__drawer {
  transform: translateX(0);
}

body.tracklist-panel-open {
  overflow: hidden;
  touch-action: none;
}

.tracklist-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 2.8vw, 20px);
}

.tracklist-panel__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tracklist-panel__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.tracklist-panel__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.tracklist-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.22s ease;
}

.tracklist-panel__close:hover,
.tracklist-panel__close:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(10, 12, 34, 0.36);
  outline: none;
}

.tracklist-panel__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 26px);
  overflow: hidden;
}

.tracklist-panel__selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tracklist-select__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tracklist-select {
  display: block;
  width: 100%;
  height: clamp(46px, 6vw, 54px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(140deg, rgba(34, 36, 62, 0.94), rgba(22, 24, 44, 0.88));
  color: #ffffff;
  font-weight: 600;
  padding: 0 clamp(18px, 4vw, 24px);
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  background-image:
    linear-gradient(140deg, rgba(34, 36, 62, 0.94), rgba(22, 24, 44, 0.88)),
    linear-gradient(0deg, transparent 50%, rgba(255, 255, 255, 0.08) 50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tracklist-select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(140, 110, 255, 0.35);
}

.tracklist-panel__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 6px;
}

.tracklist-panel__content::-webkit-scrollbar {
  width: 6px;
}

.tracklist-panel__content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.tracklist-panel__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
}

.tracklist-panel__spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: #ffffff;
  animation: station-refresh-spin 0.9s linear infinite;
}

.tracklist-panel__load-more {
  align-self: center;
  border: 1px solid color-mix(in srgb, var(--brand-primary, #7a5cfe) 45%, rgba(255, 255, 255, 0.26));
  border-radius: 999px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.tracklist-panel__load-more:hover,
.tracklist-panel__load-more:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-primary, #7a5cfe) 70%, rgba(255, 255, 255, 0.32));
  background: color-mix(in srgb, var(--brand-primary, #7a5cfe) 32%, rgba(255, 255, 255, 0.16));
  box-shadow: 0 16px 32px rgba(10, 12, 34, 0.4);
  color: #ffffff;
  outline: none;
}

.tracklist-panel__error {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 80, 110, 0.14);
  border: 1px solid rgba(255, 120, 140, 0.3);
  color: #ffffff;
  text-align: center;
}

.tracklist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tracklist-list__item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(150deg, rgba(26, 28, 50, 0.9), rgba(18, 20, 36, 0.88));
  box-shadow: 0 16px 30px rgba(10, 12, 34, 0.3);
}

.tracklist-list__time {
  flex: 0 0 auto;
  min-width: 56px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.78);
}

.tracklist-list__info {
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.9);
}

.tracklist-empty {
  padding: 26px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tracklist-empty__image {
  width: 160px;
  max-width: 60%;
  align-self: center;
}

.tracklist-empty__text {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .tracklist-panel__drawer {
    max-width: clamp(320px, 60vw, 420px);
  }
}

@media (max-width: 767.98px) {
  .tracklist-panel__drawer {
    width: 100%;
    max-width: 100%;
    border-left: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(105%);
    transition: transform 0.34s cubic-bezier(0.32, 0.12, 0.22, 0.96);
    position: absolute;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .tracklist-panel.is-open .tracklist-panel__drawer {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tracklist-panel,
  .tracklist-panel__overlay,
  .tracklist-panel__drawer,
  .tracklist-panel__close,
  .tracklist-panel__load-more {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@keyframes station-refresh-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes station-eq {
  0% { transform: scaleY(0.28); opacity: 0.5; }
  60% { transform: scaleY(var(--eq-scale, 1.12)); opacity: 1; }
  100% { transform: scaleY(0.35); opacity: 0.6; }
}

@media (min-width: 768px) {
  .station-last-tracks .track-item {
    flex-direction: row;
    align-items: center;
  }
  .station-last-tracks .track-item[data-track-state="history"] {
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .radio-player.station-hero {
    --bubble-size: clamp(72px, 22vw, 95px);
  }
  .station-hero__controls-left {
    gap: clamp(20px, 6vw, 32px);
    justify-items: center;
    grid-template-columns: 1fr;
  }
  .station-hero__stream-toggle {
    width: 100%;
    min-width: clamp(180px, 65vw, 240px);
  }
  .station-last-tracks .track-item[data-track-state="now"] .cover-wrapper {
    width: 100%;
    min-width: 0;
    margin-inline: auto;
  }
}

.station-top-tracks {
  width: 100%;
  margin-top: clamp(36px, 6vw, 54px);
}

.station-top-tracks__surface {
  position: relative;
  padding: clamp(26px, 5vw, 40px);
  border-radius: 32px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 72%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(155deg,
      color-mix(in srgb, var(--color-surface-1) 94%, rgba(255, 255, 255, 0.08)) 0%,
      color-mix(in srgb, var(--color-surface-2) 82%, rgba(0, 0, 0, 0.52)) 100%);
  box-shadow: 0 36px 72px rgba(8, 12, 32, 0.52);
  overflow: hidden;
}

.station-top-tracks__surface::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto 35%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      color-mix(in srgb, var(--brand-primary) 34%, transparent) 0%,
      transparent 70%);
  opacity: 0.68;
  pointer-events: none;
}

.station-top-tracks__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 28px);
  flex-wrap: wrap;
  margin-bottom: clamp(22px, 4vw, 30px);
}

.station-top-tracks__title {
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.015em;
}


.station-top-tracks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(18px, 4vw, 30px);
}

.station-top-tracks__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3.5vw, 20px);
  padding: clamp(16px, 3.5vw, 24px);
  border-radius: 26px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 70%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--color-surface-1) 94%, rgba(255, 255, 255, 0.08)) 0%,
      color-mix(in srgb, var(--color-surface-2) 82%, rgba(8, 10, 26, 0.52)) 100%);
  box-shadow: 0 28px 58px rgba(10, 14, 36, 0.45);
  transition: transform 0.2s ease, border-color 0.22s ease, box-shadow 0.26s ease;
}

.station-top-tracks__item:hover,
.station-top-tracks__item:focus-within {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand-primary) 52%, rgba(255, 255, 255, 0.42));
  box-shadow: 0 34px 70px rgba(16, 18, 48, 0.52);
}

.station-top-tracks__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 14px 28px rgba(12, 10, 34, 0.32);
  z-index: 2;
}

.station-top-tracks__badge.rank-1 {
  background: linear-gradient(135deg, #f6c343, #f08a24);
  color: #2b1200;
}

.station-top-tracks__badge.rank-2 {
  background: linear-gradient(135deg, #c0c7ff, #7a86ff);
  color: #0d1235;
}

.station-top-tracks__badge.rank-3 {
  background: linear-gradient(135deg, #ffb8b3, #ff6d6d);
  color: #301012;
}

.station-top-tracks__cover {
  position: relative;
  width: clamp(64px, 11vw, 86px);
  min-width: clamp(64px, 11vw, 86px);
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 12, 24, 0.55);
  box-shadow: 0 24px 46px rgba(6, 10, 30, 0.48);
}

.station-top-tracks__cover .album-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.station-top-tracks__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
}

.station-top-tracks__track {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.station-top-tracks__artist {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 500;
}

.station-top-tracks__item--featured {
  border-color: color-mix(in srgb, var(--brand-primary) 45%, rgba(255, 255, 255, 0.28));
  box-shadow: 0 36px 72px rgba(18, 16, 56, 0.52);
}

.station-top-tracks__item--featured .station-top-tracks__badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  font-size: 0.88rem;
}

@media (max-width: 991.98px) {
  .station-top-tracks__surface {
    padding: clamp(22px, 6vw, 32px);
  }
  .station-top-tracks__item {
    padding: clamp(18px, 5vw, 26px);
  }
  .station-last-tracks__layout .station-ad-slot {
    display: block;
  }
}

@media (min-width: 992px) {
  .station-top-tracks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .station-last-tracks__layout {
    display: block;
  }
  .station-last-tracks__layout .station-last-tracks__surface {
    flex: 1 1 auto;
    min-width: 0;
  }
  .station-last-tracks__layout .station-ad-slot {
    display: block;
    flex: 0 0 300px;
    max-width: 300px;
    margin: 0;
    align-self: flex-start;
  }
}

@media (max-width: 767.98px) {
  .station-top-tracks__headline {
    flex-direction: column;
    align-items: flex-start;
  }
  .station-top-tracks__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .station-top-tracks__surface {
    padding: clamp(20px, 7vw, 28px);
  }
  .station-top-tracks__item {
    align-items: flex-start;
    padding: clamp(16px, 6vw, 22px);
  }
  .station-top-tracks__badge {
    top: 10px;
    left: 10px;
  }
  .station-top-tracks__cover {
    width: clamp(60px, 28vw, 80px);
    min-width: clamp(60px, 28vw, 80px);
  }
  .station-top-tracks__item--featured .station-top-tracks__badge {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }
}

.station-related {
  margin-top: clamp(40px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
}

.station-related__header {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 16px);
}

.station-related__description {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.station-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
  width: 100%;
}

@media (min-width: 992px) {
  .station-related__grid-list > :nth-child(n + 9) {
    display: none;
  }
}

.station-hero__now-playing {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  margin-bottom: clamp(6px, 1vw, 12px);
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
}

.station-hero__now-playing-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

.station-hero__now-playing-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.station-hero__now-playing-track {
  position: relative;
  display: block;
  font-weight: 600;
  color: #fff;
  min-height: 1.2em;
  overflow: hidden;
  text-align: left;
  max-width: 100%;
  width: 100%;
}

.station-hero__now-playing-track-inner {
  display: inline-flex;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
  white-space: nowrap;
  will-change: transform;
}

.station-hero__now-playing-segment {
  display: inline-block;
  min-width: max-content;
}

.station-hero__now-playing-track.is-marquee .station-hero__now-playing-track-inner {
  animation: station-hero-marquee var(--marquee-duration, 18s) linear infinite;
}

.station-hero__now-playing-track.is-marquee:hover .station-hero__now-playing-track-inner,
.station-hero__now-playing-track.is-marquee:focus-within .station-hero__now-playing-track-inner {
  animation-play-state: paused;
}

.station-hero__now-playing.is-muted .station-hero__now-playing-track {
  color: rgba(255, 255, 255, 0.7);
}

@keyframes station-hero-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-shift, 100%)));
  }
}

@media (max-width: 767.98px) {
  .station-hero__now-playing {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .station-hero__now-playing-body {
    align-items: center;
    text-align: center;
  }
  .station-hero__now-playing-track {
    text-align: center;
  }
}

.station-info-panel {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(18px, 3vw, 32px);
  row-gap: clamp(12px, 2vw, 18px);
  align-items: flex-start;
  margin-top: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(12px, 2vw, 24px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 32px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--color-surface-1) 90%, rgba(10, 14, 36, 0.35)),
    color-mix(in srgb, var(--color-surface-2) 78%, rgba(2, 6, 28, 0.6)));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(6, 8, 24, 0.55);
}

.station-info-panel__text {
  flex: 1 1 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: clamp(10px, 2vw, 18px);
}

.station-info-panel__sentence {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.station-info-panel__meta {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 32px);
}

.station-info-panel__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 0;
}

.station-inline-votes {
  margin-left: auto;
}

.station-inline-votes {
  display: inline-flex;
  gap: clamp(10px, 3vw, 18px);
  background: color-mix(in srgb, var(--color-surface-1) 88%, rgba(255, 255, 255, 0.03));
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 70%, rgba(255, 255, 255, 0.08));
}

.station-inline-votes__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.station-inline-votes__btn:focus-visible {
  outline: 2px solid var(--brand-primary, #7151ff);
  outline-offset: 2px;
}

.station-inline-votes__btn i {
  font-size: 0.95rem;
}

.station-inline-votes__btn.active,
.station-inline-votes__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(4, 8, 18, 0.45);
}

.station-inline-votes__btn--like {
  background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--bs-success) 82%, rgba(255, 255, 255, 0.22)) 0%,
      color-mix(in srgb, var(--bs-success) 64%, rgba(0, 0, 0, 0.35)) 100%);
  color: rgba(10, 16, 24, 0.95);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--bs-success) 46%, rgba(0, 0, 0, 0.45));
}

.station-inline-votes__btn--dislike {
  background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--bs-danger) 82%, rgba(255, 255, 255, 0.22)) 0%,
      color-mix(in srgb, var(--bs-danger) 64%, rgba(0, 0, 0, 0.35)) 100%);
  color: rgba(10, 16, 24, 0.95);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--bs-danger) 46%, rgba(0, 0, 0, 0.45));
}

.station-inline-votes__count {
  min-width: 1.5rem;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .station-info-panel {
    flex-direction: column;
    align-items: stretch;
  }
  .station-info-panel__meta {
    width: 100%;
    flex: 1 1 auto;
    align-items: flex-start;
    text-align: left;
    gap: clamp(10px, 2vw, 16px);
  }
  .station-info-panel__tags {
    justify-content: flex-start;
  }
  .station-inline-votes {
    align-self: flex-start;
  }
}

@media (max-width: 767.98px) {
  .station-info-panel {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(14px, 4vw, 20px);
    padding: clamp(16px, 4vw, 26px);
  }
  .station-info-panel__text {
    flex: 1 1 100%;
  }
  .station-info-panel__meta {
    width: 100%;
    flex: 1 1 auto;
    align-items: center;
    text-align: center;
    gap: clamp(10px, 3vw, 16px);
  }
  .station-info-panel__tags {
    justify-content: center;
  }
  .station-inline-votes {
    align-self: stretch;
    justify-content: center;
    padding-left: clamp(10px, 4vw, 18px);
    padding-right: clamp(10px, 4vw, 18px);
    margin-left: 0;
  }
}

@media (max-width: 991.98px) {
  .station-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .station-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .station-related__grid:not(.mobile-expanded) .station-related__card:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 399.98px) {
  .station-related__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.station-related__grid-list {
  display: contents;
}

.station-related__card {
  position: relative;
  display: flex;
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(18, 22, 44, 0.92), rgba(12, 16, 36, 0.78));
  border: 1px solid color-mix(in srgb, var(--color-divider) 68%, rgba(255, 255, 255, 0.1));
  background:
    linear-gradient(155deg,
      color-mix(in srgb, var(--color-surface-1) 94%, rgba(255, 255, 255, 0.08)) 0%,
      color-mix(in srgb, var(--color-surface-2) 82%, rgba(6, 10, 28, 0.55)) 100%);
  box-shadow: 0 28px 56px rgba(10, 12, 36, 0.46);
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.26s ease;
}

.station-related__card::before {
  content: "";
  position: absolute;
  inset: -32% 18% auto 18%;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      color-mix(in srgb, var(--brand-primary) 28%, transparent) 0%,
      transparent 70%);
  opacity: 0.58;
  pointer-events: none;
}

.station-related__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2.8vw, 20px);
  padding: clamp(20px, 4.6vw, 28px);
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  transition: transform 0.18s ease;
}

.station-related__logo-wrap {
  width: clamp(120px, 26vw, 150px);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 36%, rgba(255, 255, 255, 0.18));
  background: linear-gradient(
    150deg,
    color-mix(in srgb, var(--brand-primary) 30%, rgba(255, 255, 255, 0.16)) 0%,
    color-mix(in srgb, var(--brand-accent) 22%, rgba(4, 8, 24, 0.6)) 100%
  );
  box-shadow: 0 18px 34px rgba(12, 16, 42, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.station-related__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.station-related__name {
  color: var(--color-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.3;
}

.station-related__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 42%, rgba(255, 255, 255, 0.18));
  background: color-mix(in srgb, var(--brand-primary) 22%, rgba(255, 255, 255, 0.08));
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.76rem;
  box-shadow: 0 12px 28px rgba(8, 12, 32, 0.38);
}

.station-related__badge i {
  font-size: 0.9rem;
}

.station-related__badge--muted {
  border-color: color-mix(in srgb, var(--color-divider) 70%, rgba(255, 255, 255, 0.1));
  background: color-mix(in srgb, var(--surface-1) 88%, rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.72);
}

.station-related__metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  text-align: center;
}

.station-related__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.station-related__card:hover,
.station-related__card:focus-within {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--brand-primary) 48%, rgba(255, 255, 255, 0.24));
  box-shadow: 0 34px 62px rgba(14, 16, 44, 0.52);
}

.station-related__link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-primary) 46%, rgba(255, 255, 255, 0.26));
  outline-offset: 6px;
}

.station-related__more {
  margin-top: clamp(12px, 3vw, 20px);
}

.station-related__actions {
  margin-top: clamp(16px, 3vw, 28px);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.station-related__action-btn {
  min-width: 180px;
}

@media (max-width: 767.98px) {
  .station-hero__row {
    --bs-gutter-y: clamp(16px, 4vw, 24px);
  }
  .station-hero__info-col,
  .station-hero__name-row,
  .station-hero__chips-row {
    align-items: center;
    text-align: center;
  }
  .station-hero__tags {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .radio-player.station-hero {
    --bubble-size: clamp(78px, 22vw, 112px);
  }
  .station-hero__controls-left {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(22px, 7vw, 34px);
  }
  .station-hero__stream-menu {
    width: 100%;
    max-width: min(360px, 100%);
  }
  .station-hero__stream-toggle {
    width: 100%;
    justify-content: center;
    min-width: clamp(180px, 68vw, 240px);
  }
  .station-hero__volume-control {
    width: auto;
    max-width: none;
  }
}

.station-comments {
  margin-top: clamp(48px, 7vw, 78px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4.6vw, 36px);
}

.station-comments__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4.6vw, 36px);
}

.station-comments__form {
  position: relative;
  padding: clamp(24px, 5vw, 34px);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 70%, rgba(255, 255, 255, 0.1));
  background:
    linear-gradient(155deg,
      color-mix(in srgb, var(--color-surface-1) 94%, rgba(255, 255, 255, 0.08)) 0%,
      color-mix(in srgb, var(--color-surface-2) 82%, rgba(0, 0, 0, 0.5)) 100%);
  box-shadow: 0 34px 64px rgba(8, 12, 30, 0.48);
}

.station-comments__title {
  margin-bottom: clamp(14px, 3vw, 20px);
  color: #ffffff;
  letter-spacing: -0.01em;
}

.station-comments__form-body {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 22px);
}

.station-comments__textarea {
  min-height: clamp(180px, 34vw, 220px);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 62%, rgba(255, 255, 255, 0.08));
  background: color-mix(in srgb, var(--color-surface-1) 88%, rgba(255, 255, 255, 0.06));
  color: var(--color-heading);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1rem 1.2rem;
  box-shadow: 0 18px 36px rgba(7, 10, 28, 0.42);
  transition: border-color 0.16s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.station-comments__textarea:focus {
  border-color: color-mix(in srgb, var(--brand-primary) 60%, rgba(255, 255, 255, 0.12));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 28%, transparent);
  background: color-mix(in srgb, var(--color-surface-1) 96%, rgba(255, 255, 255, 0.12));
}

.station-comments__meta {
  color: var(--color-text-muted);
}

.station-comments__counter span {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-heading);
}

.station-comments__guest {
  flex: 1 1 200px;
}

.station-comments__input {
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 60%, rgba(255, 255, 255, 0.08));
  background: color-mix(in srgb, var(--color-surface-1) 88%, rgba(255, 255, 255, 0.06));
  color: var(--color-text);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: border-color 0.16s ease, background-color 0.18s ease;
}

.station-comments__input:focus {
  border-color: color-mix(in srgb, var(--brand-primary) 60%, rgba(255, 255, 255, 0.16));
  background: color-mix(in srgb, var(--color-surface-1) 95%, rgba(255, 255, 255, 0.1));
}

.station-comments__submit {
  align-self: flex-start;
  padding: 0.78rem clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 999px;
  border: 0;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 20px 38px color-mix(in srgb, var(--brand-primary) 34%, rgba(0, 0, 0, 0.52));
  transition: transform 0.16s ease, box-shadow 0.22s ease;
}

.station-comments__submit:hover,
.station-comments__submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 24px 44px color-mix(in srgb, var(--brand-primary) 42%, rgba(0, 0, 0, 0.55));
}

.station-comments__alert {
  margin-top: clamp(16px, 3vw, 22px);
}

.station-comments__feed {
  padding: clamp(24px, 5vw, 32px);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 68%, rgba(255, 255, 255, 0.1));
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--color-surface-1) 92%, rgba(255, 255, 255, 0.06)) 0%,
      color-mix(in srgb, var(--color-surface-2) 80%, rgba(6, 10, 30, 0.5)) 100%);
  box-shadow: 0 30px 60px rgba(8, 12, 32, 0.46);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 22px);
}

.station-comments__filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 18px);
}

.station-comments__filter .segmented {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface-1) 92%, rgba(255, 255, 255, 0.08));
  border: 1px solid color-mix(in srgb, var(--color-divider) 70%, rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.station-comments__filter .seg-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.48rem 1.1rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition: color 0.18s ease, background-color 0.2s ease, transform 0.18s ease, box-shadow 0.24s ease;
}

.station-comments__filter .seg-btn:hover {
  color: var(--color-heading);
  transform: translateY(-1px);
}

.station-comments__filter .seg-btn.active {
  color: #ffffff;
  background: var(--brand-gradient);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--brand-primary) 35%, rgba(0, 0, 0, 0.25));
  transform: translateY(-1px);
}

.station-comments__filter .seg-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-primary) 55%, rgba(255, 255, 255, 0));
  outline-offset: 3px;
  color: #ffffff;
}

.station-comments__filter .filter-label {
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.station-comments__list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.station-comments__list .comment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 18px);
  padding: clamp(18px, 3.4vw, 24px);
  border-radius: 26px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 70%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(165deg,
      color-mix(in srgb, var(--color-surface-1) 94%, rgba(255, 255, 255, 0.08)) 0%,
      color-mix(in srgb, var(--color-surface-2) 82%, rgba(0, 0, 0, 0.52)) 100%);
  box-shadow: 0 26px 52px rgba(8, 12, 34, 0.48);
}

.station-comments__list .comment-header {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 18px);
}

.station-comments__list .comment-avatar {
  width: clamp(48px, 8vw, 60px);
  height: clamp(48px, 8vw, 60px);
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(70% 70% at 30% 20%, color-mix(in srgb, var(--brand-accent) 18%, transparent) 0%, transparent 100%),
    color-mix(in srgb, var(--color-surface-2) 88%, rgba(255, 255, 255, 0.08));
  border: 1px solid color-mix(in srgb, var(--color-divider) 70%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 36px rgba(8, 12, 32, 0.42);
}

.station-comments__list .comment-avatar .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.station-comments__list .avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(150deg,
      color-mix(in srgb, var(--brand-primary) 26%, rgba(255, 255, 255, 0.24)) 0%,
      color-mix(in srgb, var(--brand-accent) 18%, rgba(12, 16, 36, 0.58)) 100%);
  box-shadow: 0 18px 32px rgba(16, 12, 38, 0.45);
  color: #ffffff;
}

.station-comments__list .avatar-fallback .avatar-initial {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.station-comments__list .avatar-fallback.friendly {
  color: #ffffff;
}

.station-comments__list .comment-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.station-comments__list .comment-author {
  color: var(--color-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.station-comments__list .comment-time {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.station-comments__list .comment-body {
  margin-left: clamp(0px, 6vw, 6px);
}

.station-comments__list .comment-text {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.station-comments__list .comment-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.station-comments__list .btn-reaction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 68%, rgba(255, 255, 255, 0.08));
  background: color-mix(in srgb, var(--color-surface-2) 88%, rgba(255, 255, 255, 0.08));
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.16s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.22s ease;
}

.station-comments__list .btn-reaction i {
  font-size: 1rem;
}

.station-comments__list .btn-reaction:hover,
.station-comments__list .btn-reaction:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-primary) 46%, rgba(255, 255, 255, 0.22));
  background: color-mix(in srgb, var(--brand-primary) 24%, rgba(255, 255, 255, 0.1));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(10, 14, 38, 0.45);
}

.station-comments__list .btn-reaction:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-primary) 42%, rgba(255, 255, 255, 0.2));
  outline-offset: 2px;
}

.station-comments__list .btn-reaction.active {
  color: #ffffff;
  border-color: color-mix(in srgb, var(--brand-primary) 60%, rgba(255, 255, 255, 0.32));
  background: var(--brand-gradient);
  box-shadow: 0 20px 36px rgba(12, 14, 40, 0.52);
}

.station-comments__list .btn-reaction .count {
  min-width: 1.6em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.station-comments__list > p {
  color: var(--color-text-muted);
  font-style: italic;
  margin: clamp(12px, 3vw, 18px) 0 0;
}

.station-comments__list .comments-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 18px);
  flex-wrap: wrap;
}

.station-comments__list .comments-pagination .pager,
.station-comments__list .comments-pagination .pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.station-comments__list .comments-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 68%, rgba(255, 255, 255, 0.08));
  background: color-mix(in srgb, var(--color-surface-2) 90%, rgba(255, 255, 255, 0.06));
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.station-comments__list .comments-pagination .page-link:hover,
.station-comments__list .comments-pagination .page-link:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-primary) 58%, rgba(255, 255, 255, 0.28));
  background: color-mix(in srgb, var(--brand-primary) 26%, rgba(255, 255, 255, 0.12));
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(12, 16, 38, 0.45);
}

.station-comments__list .comments-pagination .page-link.current {
  color: #ffffff;
  border-color: color-mix(in srgb, var(--brand-primary) 64%, rgba(255, 255, 255, 0.34));
  background: var(--brand-gradient);
  box-shadow: 0 20px 40px rgba(16, 12, 42, 0.52);
}

.station-comments__list .comments-pagination .page-link.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.station-info-card {
  margin-top: clamp(36px, 6vw, 56px);
  padding: clamp(24px, 5vw, 34px);
  border-radius: 32px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 68%, rgba(255, 255, 255, 0.12));
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--color-surface-1) 92%, rgba(255, 255, 255, 0.06)) 0%,
      color-mix(in srgb, var(--color-surface-2) 78%, rgba(6, 10, 30, 0.48)) 100%);
  box-shadow: 0 32px 64px rgba(8, 12, 30, 0.46);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 22px);
}

.station-info-card__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2.6vw, 18px);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}

.station-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 7vw, 54px);
  height: clamp(42px, 7vw, 54px);
  border-radius: 16px;
  background: color-mix(in srgb, var(--brand-primary) 26%, rgba(255, 255, 255, 0.16));
  color: #ffffff;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand-primary) 42%, transparent);
}

.station-info-card__title i {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

.station-info-card__icon svg,
.station-contacts-icon svg {
  width: clamp(1.2rem, 2.6vw, 1.6rem);
  height: clamp(1.2rem, 2.6vw, 1.6rem);
  display: block;
  fill: currentColor;
}

.station-info-card__body {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.station-contacts-card {
  margin-top: clamp(40px, 6.5vw, 64px);
  padding: clamp(26px, 5.5vw, 36px);
  border-radius: 32px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 68%, rgba(255, 255, 255, 0.12));
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--color-surface-1) 90%, rgba(255, 255, 255, 0.08)) 0%,
      color-mix(in srgb, var(--color-surface-2) 76%, rgba(8, 12, 32, 0.52)) 100%);
  box-shadow: 0 36px 72px rgba(6, 10, 32, 0.5);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 28px);
}

.station-contacts-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 20px);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 900;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}

.station-contacts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 8vw, 60px);
  height: clamp(48px, 8vw, 60px);
  border-radius: 18px;
  background:
    linear-gradient(200deg,
      color-mix(in srgb, var(--brand-primary) 28%, rgba(255, 255, 255, 0.22)) 0%,
      color-mix(in srgb, var(--brand-accent) 18%, rgba(8, 12, 32, 0.45)) 100%);
  color: #ffffff;
  box-shadow: 0 22px 36px rgba(10, 12, 34, 0.46);
}

.station-contacts-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 3vw, 24px);
}

.station-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(0.9rem, 2.6vw, 1.2rem);
  width: 100%;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 66%, rgba(255, 255, 255, 0.1));
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--color-surface-1) 90%, rgba(255, 255, 255, 0.08)) 0%,
      color-mix(in srgb, var(--color-surface-2) 82%, rgba(9, 12, 32, 0.48)) 100%);
  box-shadow: 0 20px 42px rgba(8, 12, 32, 0.38);
  color: var(--color-text);
  transition: transform 0.18s ease, box-shadow 0.24s ease, border-color 0.18s ease;
}

.station-contact-item:hover,
.station-contact-item:focus-within {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand-primary) 42%, rgba(255, 255, 255, 0.2));
  box-shadow: 0 24px 54px rgba(10, 14, 40, 0.46);
}

.station-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    linear-gradient(200deg,
      color-mix(in srgb, var(--brand-primary) 30%, rgba(255, 255, 255, 0.18)) 0%,
      color-mix(in srgb, var(--brand-accent) 20%, rgba(10, 14, 34, 0.55)) 100%);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand-primary) 45%, transparent);
  flex: 0 0 auto;
}

.station-contact-icon i {
  font-size: 1.05rem;
}

.station-contact-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  fill: currentColor;
}

.station-contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
}

.station-contact-label {
  display: block;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
}

.station-contact-value,
.station-contact-link {
  color: var(--color-text-muted);
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}

.station-contact-link:hover,
.station-contact-link:focus-visible {
  color: var(--bs-link-hover-color);
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .station-comments__submit {
    width: 100%;
    justify-content: center;
  }
  .station-comments__filter {
    flex-direction: column;
    align-items: flex-start;
  }
  .station-comments__list .comment-card {
    padding: clamp(16px, 6vw, 22px);
  }
  .station-comments__list .comment-avatar {
    width: clamp(44px, 18vw, 56px);
    height: clamp(44px, 18vw, 56px);
  }
  .station-comments__list .comment-actions {
    gap: 8px;
  }
}

.station-votes {
  margin: clamp(18px, 4vw, 38px) 0 clamp(26px, 4vw, 42px);
  padding: clamp(20px, 4vw, 30px);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--color-divider) 72%, rgba(255, 255, 255, 0.08));
  background: linear-gradient(
      150deg,
      color-mix(in srgb, var(--color-surface-1) 96%, rgba(255, 255, 255, 0.04)) 0%,
      color-mix(in srgb, var(--color-surface-2) 88%, rgba(0, 0, 0, 0.45)) 100%);
  box-shadow: 0 32px 68px rgba(8, 12, 32, 0.4);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.station-votes__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(12px, 2.8vw, 20px);
}

.station-votes__score {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.station-votes__value {
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
}

.station-votes__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.station-votes__buttons {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.station-votes__seg {
  display: inline-flex;
  align-items: stretch;
  background: none;
  border: 0;
  box-shadow: none;
  gap: clamp(12px, 2.8vw, 20px);
  padding: 0;
  flex-wrap: wrap;
}

.station-votes__seg .seg-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  color: rgba(18, 24, 36, 0.95);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.station-votes__seg .seg-item.like {
  background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--bs-success) 86%, rgba(255, 255, 255, 0.16)) 0%,
      color-mix(in srgb, var(--bs-success) 68%, rgba(0, 0, 0, 0.32)) 100%);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--bs-success) 52%, rgba(0, 0, 0, 0.4));
}

.station-votes__seg .seg-item.dislike {
  background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--bs-danger) 86%, rgba(255, 255, 255, 0.16)) 0%,
      color-mix(in srgb, var(--bs-danger) 68%, rgba(0, 0, 0, 0.32)) 100%);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--bs-danger) 52%, rgba(0, 0, 0, 0.4));
}

.station-votes__seg .seg-item:hover,
.station-votes__seg .seg-item:focus-within {
  transform: translateY(-1px);
}

.station-votes__seg .seg-btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
}

.station-votes__seg .seg-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.station-votes__seg .seg-count {
  font-weight: 700;
  color: inherit;
  font-variant-numeric: tabular-nums;
}

.station-votes__bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.station-votes__bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.station-votes__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  transition: width 0.3s ease;
}

.station-votes__bar--likes span {
  background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--bs-success) 88%, rgba(255, 255, 255, 0.12)) 0%,
      color-mix(in srgb, var(--bs-success) 64%, rgba(0, 0, 0, 0.3)) 100%);
  box-shadow: 0 0 24px color-mix(in srgb, var(--bs-success) 45%, rgba(0, 0, 0, 0.35));
}

.station-votes__bar--dislikes span {
  background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--bs-danger) 88%, rgba(255, 255, 255, 0.12)) 0%,
      color-mix(in srgb, var(--bs-danger) 64%, rgba(0, 0, 0, 0.3)) 100%);
  box-shadow: 0 0 24px color-mix(in srgb, var(--bs-danger) 45%, rgba(0, 0, 0, 0.35));
}

.station-votes__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 16px);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.station-votes__detail {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.station-votes__detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.station-votes__detail-value {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.station-votes__detail-percent {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.56);
}

.station-comments .station-votes {
  margin: 0 0 clamp(24px, 4.6vw, 36px);
}

@media (max-width: 767.98px) {
  .station-votes__summary {
    justify-content: center;
    text-align: center;
  }
  .station-votes__buttons {
    justify-content: center;
  }
  .station-votes__details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.station-volume__mute {
  margin-left: calc(-1 * clamp(14px, 2.2vw, 20px));
}
