:root {
  color-scheme: dark;
  --bg: #070f2c;
  --bg-deep: #050b22;
  --panel: #111f43;
  --panel-strong: #172b58;
  --text: #f7f8ff;
  --muted: #d8e3ff;
  --soft: #aebce1;
  --cyan: #55edf0;
  --aqua: #78f0d3;
  --blue: #4e7cff;
  --violet: #8b5cf6;
  --coral: #ff6f82;
  --yellow: #ffd166;
  --line: rgba(115, 226, 255, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(85, 237, 240, 0.16), transparent 30%),
    radial-gradient(circle at 88% 26%, rgba(139, 92, 246, 0.2), transparent 32%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  content: "";
  pointer-events: none;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--cyan);
  color: #061227;
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(115, 226, 255, 0.14);
  background: rgba(5, 10, 30, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
  color: #061227;
  font-weight: 1000;
}

.brand-name {
  display: block;
  font-size: 1.35rem;
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
}

.brand-name span {
  color: var(--cyan);
}

.brand-subline {
  display: block;
  margin-top: 5px;
  color: #86f7f7;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #e8edff;
  font-size: 0.92rem;
  font-weight: 900;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.main-nav .login-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(85, 237, 240, 0.45);
  border-radius: 999px;
  background: rgba(20, 42, 78, 0.7);
}

.breadcrumb {
  padding: 24px 0 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--cyan);
}

.topic-hero {
  padding: 72px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: transparent;
  background: linear-gradient(120deg, #ff6f82, #ffd166 33%, #78f0d3 64%, #55edf0);
  background-clip: text;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  font-weight: 1000;
  letter-spacing: -0.045em;
  line-height: 0.98;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(85, 237, 240, 0.46);
  border-radius: 8px;
  font-weight: 1000;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  color: #061227;
}

.button.secondary {
  background: rgba(20, 42, 78, 0.76);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(85, 237, 240, 0.11), transparent 52%),
    rgba(17, 31, 67, 0.9);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(139, 92, 246, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-symbol {
  width: 74px;
  height: 74px;
  display: grid;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(85, 237, 240, 0.26);
  border-radius: 10px;
  background: rgba(85, 237, 240, 0.1);
  color: var(--cyan);
  font-size: 1.6rem;
  font-weight: 1000;
}

.hero-panel h2 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.hero-panel ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li,
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.hero-panel li::before,
.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--aqua);
  content: "✓";
  font-weight: 1000;
}

.topic-section {
  padding: 72px 0;
  border-top: 1px solid rgba(115, 226, 255, 0.1);
}

.topic-section.alt {
  background: rgba(11, 23, 55, 0.46);
}

.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-head h2,
.text-panel h2,
.crosslinks h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
}

.section-head p,
.text-panel p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.feature-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(115, 226, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(85, 237, 240, 0.1), transparent 46%),
    rgba(18, 32, 68, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:nth-child(2) {
  border-color: rgba(255, 111, 130, 0.34);
  background:
    linear-gradient(155deg, rgba(255, 111, 130, 0.12), transparent 46%),
    rgba(43, 32, 76, 0.82);
}

.feature-card:nth-child(3) {
  border-color: rgba(139, 92, 246, 0.4);
  background:
    linear-gradient(155deg, rgba(139, 92, 246, 0.16), transparent 46%),
    rgba(35, 34, 88, 0.82);
}

.feature-card::before {
  position: absolute;
  top: -58px;
  right: -54px;
  width: 154px;
  height: 154px;
  border: 26px solid rgba(85, 237, 240, 0.08);
  border-radius: 50%;
  content: "";
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.feature-card:nth-child(2)::before {
  border-color: rgba(255, 111, 130, 0.09);
}

.feature-card:nth-child(3)::before {
  border-color: rgba(139, 92, 246, 0.12);
}

.feature-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--coral));
  content: "";
  opacity: 0.78;
}

.feature-card:hover {
  border-color: rgba(85, 237, 240, 0.62);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26), 0 0 30px rgba(85, 237, 240, 0.1);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  border-color: rgba(85, 237, 240, 0.17);
  transform: scale(1.12) rotate(12deg);
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(115, 226, 255, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(85, 237, 240, 0.23), rgba(78, 124, 255, 0.13)),
    rgba(7, 18, 45, 0.76);
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), inset 0 0 18px rgba(85, 237, 240, 0.08);
}

.feature-card:nth-child(2) .feature-icon {
  border-color: rgba(255, 111, 130, 0.32);
  background: linear-gradient(135deg, rgba(255, 111, 130, 0.2), rgba(139, 92, 246, 0.16));
  color: #ffafbd;
}

.feature-card:nth-child(3) .feature-icon {
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.23), rgba(78, 124, 255, 0.14));
  color: #bca7ff;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: 48px;
}

.info-box {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(120, 240, 211, 0.3);
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(120, 240, 211, 0.11), transparent 52%),
    rgba(18, 38, 69, 0.88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.info-box::after {
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(120, 240, 211, 0.08);
  border-radius: 50%;
  content: "";
}

.info-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(120, 240, 211, 0.34);
  border-radius: 9px;
  background: rgba(120, 240, 211, 0.1);
  color: var(--aqua);
  font-weight: 1000;
}

.info-box strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 1.1rem;
}

.info-box p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.radio-live-section {
  padding: 0 0 76px;
}

.topic-radio-shell {
  overflow: hidden;
  border: 1px solid rgba(115, 226, 255, 0.26);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 8%, rgba(85, 237, 240, 0.14), transparent 31%),
    radial-gradient(circle at 92% 88%, rgba(255, 111, 130, 0.14), transparent 34%),
    rgba(11, 23, 55, 0.9);
  box-shadow: var(--shadow);
}

.topic-radio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px 24px;
}

.topic-radio-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.topic-radio-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.topic-radio-ticker {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(115, 226, 255, 0.14);
  border-bottom: 1px solid rgba(115, 226, 255, 0.14);
  background: rgba(4, 13, 38, 0.86);
  color: #e8fcff;
}

.topic-radio-ticker::before,
.topic-radio-ticker::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 72px;
  content: "";
  pointer-events: none;
}

.topic-radio-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #07142f, transparent);
}

.topic-radio-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #07142f, transparent);
}

.topic-radio-ticker-track {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  padding-left: 100%;
  white-space: nowrap;
  animation: topicRadioTicker 28s linear infinite;
}

.topic-radio-ticker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 16px rgba(255, 111, 130, 0.85);
}

@keyframes topicRadioTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.topic-radio-body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 22px;
  padding: 28px 32px 24px;
}

.topic-radio-player {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(120, 240, 211, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(85, 237, 240, 0.12), transparent 46%),
    rgba(8, 20, 52, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 20px 44px rgba(0, 0, 0, 0.2);
}

.topic-radio-play {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: conic-gradient(from -35deg, var(--cyan) 0 43%, transparent 43% 48%, var(--coral) 48% 88%, transparent 88%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(85, 237, 240, 0.25), 0 0 28px rgba(255, 111, 130, 0.18);
}

.topic-radio-play::before {
  position: absolute;
  inset: 13px;
  border: 2px solid rgba(230, 249, 255, 0.68);
  border-radius: inherit;
  background: linear-gradient(145deg, #101f4b, #24174f);
  content: "";
}

.topic-radio-play-icon {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}

.topic-radio-player.is-playing .topic-radio-play-icon {
  width: 21px;
  height: 25px;
  margin-left: 0;
  border: 0;
  border-right: 7px solid #fff;
  border-left: 7px solid #fff;
}

.topic-radio-core {
  min-width: 0;
}

.topic-radio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-radio-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}

.topic-radio-live::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 14px rgba(255, 111, 130, 0.9);
  content: "";
}

.topic-radio-name {
  display: block;
  color: #ff91a1;
  font-size: 1.35rem;
  font-weight: 1000;
}

.topic-radio-track {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--cyan);
  font-size: 0.96rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topic-radio-wave {
  height: 24px;
  display: flex;
  align-items: end;
  gap: 3px;
  margin: 12px 0 9px;
}

.topic-radio-wave span {
  flex: 1 1 0;
  min-width: 2px;
  max-width: 4px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--coral));
  opacity: 0.78;
  transform-origin: bottom;
  animation: topicRadioWave 1.35s ease-in-out infinite alternate;
}

.topic-radio-wave span:nth-child(3n+1) { height: 8px; animation-delay: -0.16s; }
.topic-radio-wave span:nth-child(4n+2) { height: 13px; animation-delay: -0.34s; }
.topic-radio-wave span:nth-child(5n) { height: 18px; animation-delay: -0.58s; }
.topic-radio-wave span:nth-child(7n+3) { height: 22px; animation-delay: -0.74s; }

@keyframes topicRadioWave {
  from { transform: scaleY(0.55); opacity: 0.52; }
  to { transform: scaleY(1.08); opacity: 1; }
}

.topic-radio-volume {
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 900;
}

.topic-radio-volume input {
  width: 100%;
  accent-color: var(--cyan);
}

.topic-radio-sync {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(120, 240, 211, 0.32);
  border-radius: 10px;
  background: rgba(120, 240, 211, 0.08);
  color: var(--cyan);
  cursor: pointer;
  font-size: 1.4rem;
}

.topic-radio-play:hover,
.topic-radio-play:focus-visible,
.topic-radio-sync:hover,
.topic-radio-sync:focus-visible {
  outline: 2px solid rgba(85, 237, 240, 0.56);
  outline-offset: 3px;
}

.topic-radio-quicklinks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.topic-radio-quicklink {
  position: relative;
  min-height: 170px;
  display: grid;
  align-content: end;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.36);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.2), transparent 58%),
    rgba(27, 27, 73, 0.86);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.topic-radio-quicklink:nth-child(2) {
  border-color: rgba(255, 111, 130, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 111, 130, 0.18), transparent 58%),
    rgba(45, 28, 70, 0.86);
}

.topic-radio-quicklink:hover,
.topic-radio-quicklink:focus-visible {
  border-color: var(--cyan);
  outline: none;
  transform: translateY(-3px);
}

.topic-radio-quicklink small {
  margin-bottom: 8px;
  color: var(--cyan);
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-radio-quicklink strong {
  font-size: 1.12rem;
}

.topic-schedule {
  padding: 0 32px 32px;
}

.topic-schedule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.topic-schedule-head h3 {
  margin: 0;
  font-size: 1.3rem;
}

.topic-schedule-head a {
  color: var(--cyan);
  font-weight: 1000;
}

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

.topic-schedule-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid rgba(115, 226, 255, 0.22);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  background: rgba(16, 31, 66, 0.74);
}

.topic-schedule-card:nth-child(2) {
  border-left-color: var(--coral);
}

.topic-schedule-card.is-live {
  border-color: rgba(255, 96, 151, 0.72);
  box-shadow: 0 16px 36px rgba(255, 96, 151, 0.14);
}

.topic-schedule-card.is-live .topic-schedule-day {
  color: #ff7ab0;
}

.topic-schedule-card:hover,
.topic-schedule-card:focus-visible {
  border-color: rgba(85, 237, 240, 0.58);
  outline: none;
}

.topic-schedule-when {
  min-width: 88px;
  padding-right: 14px;
  border-right: 1px solid rgba(167, 184, 236, 0.2);
}

.topic-schedule-day,
.topic-schedule-start,
.topic-schedule-end,
.topic-schedule-title,
.topic-schedule-dj {
  display: block;
}

.topic-schedule-day {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.topic-schedule-start {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.1;
}

.topic-schedule-end,
.topic-schedule-dj {
  color: var(--soft);
  font-size: 0.78rem;
}

.topic-schedule-title {
  overflow: hidden;
  color: #fff;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topic-schedule-arrow {
  color: var(--cyan);
  font-size: 1.3rem;
}

.topic-schedule-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
  border: 1px dashed rgba(115, 226, 255, 0.26);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.crosslinks {
  padding: 60px 0 76px;
}

.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.crosslink-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 32, 68, 0.76);
}

.crosslink-card:hover,
.crosslink-card:focus-visible {
  border-color: var(--cyan);
  outline: none;
  transform: translateY(-2px);
}

.crosslink-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.12rem;
}

.crosslink-card span {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(115, 226, 255, 0.12);
  color: var(--soft);
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 920px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

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

  .main-nav a {
    white-space: nowrap;
  }

  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

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

  .topic-radio-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .topic-schedule-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .topic-hero {
    padding: 48px 0 56px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .crosslink-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 238px;
  }

  .topic-radio-head,
  .topic-radio-body,
  .topic-schedule {
    padding-right: 18px;
    padding-left: 18px;
  }

  .topic-radio-player {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .topic-radio-play {
    width: 66px;
    height: 66px;
  }

  .topic-radio-play::before {
    inset: 10px;
  }

  .topic-radio-sync {
    grid-column: 1 / -1;
    justify-self: end;
  }

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

  .topic-radio-quicklink {
    min-height: 130px;
  }

  .topic-schedule-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .topic-schedule-card {
    gap: 11px;
    padding: 12px;
  }

  .topic-schedule-when {
    min-width: 76px;
    padding-right: 11px;
  }

  .topic-section {
    padding: 56px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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