:root {
  --bg: #08111f;
  --bg-soft: #10223a;
  --panel: rgba(10, 20, 34, 0.88);
  --panel-2: rgba(17, 33, 53, 0.92);
  --line: rgba(118, 185, 255, 0.18);
  --text: #eef5ff;
  --muted: #a9bdd8;
  --accent: #39c0ff;
  --accent-2: #6fe6c8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(57, 192, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(111, 230, 200, 0.12), transparent 30%),
    linear-gradient(180deg, #06101a, #0b1627 55%, #08111f);
}

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

.page-shell {
  width: min(calc(100% - 24px), 1240px);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 15, 28, 0.66);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05121f;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy small,
.eyebrow,
.player-text,
.section-head p,
.info-card p,
.schedule-card p,
.about-panel p,
.contact-card span,
.footer {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover {
  background: rgba(57, 192, 255, 0.12);
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-copy,
.player-card,
.info-card,
.schedule-card,
.about-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(57, 192, 255, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(15, 31, 52, 0.95), rgba(7, 16, 28, 0.96));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy h1,
.section-head h2,
.about-panel h2 {
  margin: 0 0 14px;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

.hero-copy p {
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.button,
.mini-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button {
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05121f;
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-stats li {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats strong,
.player-card h2,
.schedule-card h3,
.contact-card strong {
  display: block;
}

.player-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(14, 28, 46, 0.96), rgba(6, 16, 27, 0.98));
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4f6d;
  box-shadow: 0 0 0 8px rgba(255, 79, 109, 0.12);
}

.player-box {
  margin: 22px 0 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

audio {
  width: 100%;
}

.player-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.mini-button {
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04111d;
  font-weight: 700;
}

.mini-button-alt {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.now-playing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.grid-strip,
.schedule-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.grid-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 32px;
}

.info-card,
.schedule-card,
.contact-card {
  padding: 24px;
  background: var(--panel);
}

.section-head {
  margin-bottom: 18px;
}

.schedule-section,
.about-section,
.contact-section {
  margin-bottom: 34px;
}

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

.schedule-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 700;
}

.about-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(111, 230, 200, 0.08), transparent 44%),
    var(--panel-2);
}

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

.contact-card:hover {
  border-color: rgba(57, 192, 255, 0.32);
  transform: translateY(-3px);
}

.footer {
  text-align: center;
  padding: 20px;
}

@media (max-width: 1040px) {
  .hero,
  .about-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .topbar,
  .nav,
  .player-actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .grid-strip,
  .schedule-grid,
  .contact-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .page-shell {
    width: min(calc(100% - 18px), 1240px);
  }

  .hero-copy,
  .player-card,
  .info-card,
  .schedule-card,
  .about-panel,
  .contact-card {
    padding: 20px;
  }
}
