:root {
  --ink: #f7f8fb;
  --muted: #a8b0be;
  --line: rgba(255, 255, 255, 0.1);
  --paper: #07080d;
  --panel: #11131a;
  --coral: #ff4f5e;
  --coral-dark: #ff7a83;
  --teal: #25d0c8;
  --gold: #ffc857;
  --charcoal: #05060a;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 94, 0.14), transparent 28rem),
    radial-gradient(circle at top right, rgba(37, 208, 200, 0.12), transparent 30rem),
    var(--paper);
  padding-bottom: 96px;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(7, 8, 13, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(239, 77, 79, 0.22);
}

.brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(247, 248, 251, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  border-radius: 8px;
  padding: 11px 15px;
}

.main-nav .nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 70vh, 760px);
  overflow: hidden;
  background: var(--charcoal);
}

.hero-track,
.hero-slide {
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(78px, 12vw, 132px) clamp(20px, 6vw, 92px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms ease;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 22, 28, 0.88), rgba(21, 22, 28, 0.46) 52%, rgba(21, 22, 28, 0.18)),
    linear-gradient(0deg, rgba(21, 22, 28, 0.52), rgba(21, 22, 28, 0.02) 46%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-slide .eyebrow {
  color: var(--gold);
}

.hero-slide h1,
.hero-slide h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-slide h2 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.hero-slide p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow: 0 16px 32px rgba(239, 77, 79, 0.25);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.slider-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(21, 22, 28, 0.45);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.slider-control:hover {
  background: rgba(239, 77, 79, 0.86);
}

.slider-control span {
  margin-top: -3px;
  font-size: 2.2rem;
  line-height: 1;
}

.slider-control--prev {
  left: clamp(14px, 2vw, 26px);
}

.slider-control--next {
  right: clamp(14px, 2vw, 26px);
}

.slider-dots {
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  bottom: clamp(22px, 5vw, 46px);
  z-index: 3;
  display: flex;
  gap: 9px;
}

.slider-dot {
  width: 28px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--gold);
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(800px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading--inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  width: min(1120px, 100%);
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.now-on-air {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 79, 94, 0.13), transparent 26rem),
    radial-gradient(circle at 80% 60%, rgba(37, 208, 200, 0.1), transparent 30rem),
    #090b11;
}

.on-air-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 120px;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(13, 154, 154, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 19, 26, 0.98), rgba(9, 11, 17, 0.96)),
    radial-gradient(circle at 85% 20%, rgba(255, 79, 94, 0.16), transparent 22rem);
  box-shadow: var(--shadow);
}

.on-air-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 5px solid var(--coral);
  pointer-events: none;
}

.on-air-card__image {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(150px, 18vw, 214px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  background:
    linear-gradient(#07080d, #07080d) padding-box,
    conic-gradient(from 160deg, var(--coral), var(--gold), var(--teal), var(--coral)) border-box;
  border: 3px solid transparent;
  box-shadow: 0 18px 40px rgba(21, 22, 28, 0.16);
}

.on-air-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.on-air-badge {
  position: absolute;
  right: 6px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  color: #fff;
  background: var(--charcoal);
  border: 2px solid #07080d;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(21, 22, 28, 0.18);
}

.on-air-card__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.on-air-card__content h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.on-air-host {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.on-air-card__content p:not(.eyebrow, .on-air-host) {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.on-air-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.on-air-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(13, 154, 154, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--teal);
  background: rgba(37, 208, 200, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.on-air-wave {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 110px;
}

.on-air-wave span {
  display: block;
  width: 8px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--coral), var(--teal));
  animation: wavePulse 1.15s ease-in-out infinite;
}

.on-air-wave span:nth-child(2) {
  height: 54px;
  animation-delay: 120ms;
}

.on-air-wave span:nth-child(3) {
  height: 82px;
  animation-delay: 240ms;
}

.on-air-wave span:nth-child(4) {
  height: 48px;
  animation-delay: 360ms;
}

.on-air-wave span:nth-child(5) {
  height: 66px;
  animation-delay: 480ms;
}

@keyframes wavePulse {
  0%,
  100% {
    transform: scaleY(0.62);
    opacity: 0.58;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.host-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.host-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.host-card__body {
  padding: 18px;
}

.host-card__time {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.host-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.host-card__body p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

.section--schedule {
  background: #07080d;
}

.schedule-tabs {
  display: flex;
  gap: 8px;
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 26, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  scrollbar-width: thin;
}

.schedule-tab {
  position: relative;
  flex: 1 0 auto;
  min-width: 128px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 15px;
  color: rgba(247, 248, 251, 0.68);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.schedule-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.schedule-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  box-shadow: 0 12px 24px rgba(13, 154, 154, 0.2);
  transform: translateY(-1px);
}

.schedule-tab:focus-visible {
  outline: 3px solid rgba(239, 77, 79, 0.28);
  outline-offset: 3px;
}

.schedule-panels {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 14, 20, 0.96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
}

.schedule {
  display: grid;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.schedule[hidden] {
  display: none;
}

.schedule-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 94px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 26, 0.9);
}

.schedule-row.is-live {
  border-color: rgba(239, 77, 79, 0.42);
  background: linear-gradient(90deg, rgba(255, 79, 94, 0.13), rgba(37, 208, 200, 0.08));
}

.schedule-row time {
  color: var(--coral-dark);
  font-size: 1.24rem;
  font-weight: 800;
}

.schedule-row h3 {
  margin: 0;
  font-size: 1.1rem;
}

.schedule-row p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.schedule-row span {
  justify-self: end;
  min-width: 86px;
  border: 1px solid rgba(13, 154, 154, 0.18);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--teal);
  background: rgba(37, 208, 200, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.top10-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 94, 0.1), transparent 26rem),
    #07080d;
}

.top10-board {
  display: grid;
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(228, 230, 234, 0.92);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 94, 0.12), transparent 25rem),
    rgba(17, 19, 26, 0.94);
  box-shadow: var(--shadow);
}

.top10-now {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(13, 154, 154, 0.15);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 208, 200, 0.1), rgba(255, 200, 87, 0.1));
}

.top10-now__label {
  min-height: 32px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.top10-now strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top10-now span:last-child {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.top10-list {
  display: grid;
  gap: 10px;
}

.top-track {
  display: grid;
  grid-template-columns: 48px 46px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(12, 14, 20, 0.92);
  cursor: pointer;
  text-align: left;
  transition: border 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.top-track:hover {
  border-color: rgba(13, 154, 154, 0.34);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.top-track.is-playing {
  border-color: rgba(239, 77, 79, 0.38);
  background: linear-gradient(90deg, rgba(255, 79, 94, 0.13), rgba(37, 208, 200, 0.08));
}

.top-track__rank {
  color: var(--coral-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.top-track__play {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(239, 77, 79, 0.2);
}

.top-track__info {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.top-track__info strong,
.top-track__info small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-track__info strong {
  font-size: 1.05rem;
}

.top-track__info small,
.top-track__time {
  color: var(--muted);
  font-weight: 700;
}

.top-track__time {
  justify-self: end;
}

.form-section {
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.08), transparent 34rem),
    #07080d;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.request-shell {
  position: relative;
  min-width: 0;
}

.request-shell.is-closed .form-panel {
  pointer-events: none;
  filter: saturate(0.7);
}

.request-closed {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: #11131a;
  background: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(4px);
}

.form-panel {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 26, 0.94);
  box-shadow: var(--shadow);
}

.form-panel--accent {
  border-color: rgba(239, 77, 79, 0.24);
}

.form-panel__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.form-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 800;
}

.form-panel--accent .form-icon {
  background: var(--coral);
}

.form-panel h3 {
  margin: 0;
  font-size: 1.35rem;
}

.form-panel__head p {
  margin: 4px 0 0;
  color: var(--muted);
}

.form-panel label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-panel input,
.form-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(7, 8, 13, 0.86);
  outline: none;
  resize: vertical;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.form-panel input:focus,
.form-panel textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 154, 154, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px) 144px;
  color: var(--muted);
  background: #05060a;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--coral-dark);
  font-weight: 800;
}

.install-notice {
  width: min(760px, 100%);
  margin: 90px auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.install-notice h1 {
  margin-top: 0;
}

.install-notice p {
  color: var(--muted);
  line-height: 1.6;
}

.radio-player {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 14px clamp(16px, 4vw, 56px);
  color: var(--ink);
  background: rgba(7, 8, 13, 0.94);
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.radio-player__station {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  grid-column: 2;
  justify-self: center;
}

.radio-player__station div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.radio-player__station strong,
.radio-player__station span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-player__station span,
.radio-player__meta,
.volume-control span {
  color: var(--muted);
  font-size: 0.9rem;
}

.player-button {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(239, 77, 79, 0.28);
}

.player-button span {
  margin-left: 2px;
  font-size: 1.05rem;
}

.radio-player__meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  white-space: nowrap;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #29d789;
  box-shadow: 0 0 0 7px rgba(41, 215, 137, 0.12);
}

.volume-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: min(240px, 100%);
  min-width: 0;
}

.volume-control input {
  width: 100%;
  accent-color: var(--coral);
}

@media (max-width: 980px) {
  .host-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading--inline {
    display: block;
  }

  .on-air-card {
    grid-template-columns: auto 1fr;
  }

  .on-air-wave {
    display: none;
  }

  .schedule-row {
    grid-template-columns: 90px 1fr;
  }

  .schedule-row span {
    grid-column: 2;
    justify-self: start;
  }

  .top10-now {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .radio-player__station,
  .radio-player__meta,
  .volume-control {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }

  .radio-player__meta {
    order: 2;
  }

  .volume-control {
    order: 3;
    width: min(360px, 100%);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 184px;
  }

  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(13, 154, 154, 0.08);
  }

  .hero-slider {
    min-height: 620px;
  }

  .hero-slide {
    align-items: end;
    padding: 96px 20px 82px;
    background-position: 58% center;
  }

  .hero-slide__overlay {
    background:
      linear-gradient(0deg, rgba(21, 22, 28, 0.92), rgba(21, 22, 28, 0.44) 70%, rgba(21, 22, 28, 0.18)),
      linear-gradient(90deg, rgba(21, 22, 28, 0.4), rgba(21, 22, 28, 0.08));
  }

  .hero-slide h1,
  .hero-slide h2 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .slider-control {
    top: auto;
    bottom: 22px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .slider-control--prev {
    left: auto;
    right: 72px;
  }

  .slider-control--next {
    right: 20px;
  }

  .slider-dots {
    left: 20px;
    bottom: 38px;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .on-air-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .on-air-card::before {
    border-top: 5px solid var(--coral);
    border-left: 0;
  }

  .on-air-card__image {
    justify-self: center;
  }

  .on-air-stats {
    justify-content: center;
  }

  .host-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .schedule-tabs {
    margin-right: -16px;
    margin-left: -16px;
    width: auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .schedule-tab {
    flex-basis: auto;
    min-width: 118px;
  }

  .schedule-panels {
    padding: 10px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .schedule-row span {
    grid-column: auto;
  }

  .top10-board {
    padding: 12px;
  }

  .top-track {
    grid-template-columns: 42px 42px minmax(0, 1fr);
    min-height: 76px;
  }

  .top-track__time {
    display: none;
  }

  .site-footer {
    display: grid;
    padding-bottom: 218px;
  }

  .radio-player {
    gap: 12px;
    min-height: 160px;
    padding: 14px 16px;
  }

  .volume-control {
    grid-template-columns: 44px 1fr;
  }
}

@media (max-width: 430px) {
  .brand__text {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .radio-player__meta {
    white-space: normal;
  }
}
