:root {
  --bg: #061126;
  --bg-soft: #0b1734;
  --panel: rgba(8, 20, 45, 0.86);
  --panel-2: rgba(10, 28, 64, 0.92);
  --text: #eef6ff;
  --muted: #bfd3ee;
  --primary: #1e90ff;
  --primary-2: #22d3ee;
  --border: rgba(34, 211, 238, 0.22);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 144, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.12), transparent 22%),
    linear-gradient(180deg, #040b18 0%, #071127 35%, #0a1630 100%);
}

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

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #dff7ff;
  background: linear-gradient(90deg, rgba(30, 144, 255, 0.28), rgba(34, 211, 238, 0.16));
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.section-tag.small {
  font-size: 11px;
  padding: 5px 10px;
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 0;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 28px rgba(30, 144, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(4, 11, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.14;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,11,24,0.96) 0%, rgba(4,11,24,0.90) 42%, rgba(4,11,24,0.72) 100%),
    linear-gradient(180deg, rgba(4,11,24,0.25), rgba(4,11,24,0.88));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 620px);
  padding: 92px 0 76px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary-2);
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-slogan {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: #def7ff;
}

.hero-text {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.live-section,
.about-section,
.program-section,
.cta-section {
  padding: 90px 0;
}

.live-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.live-copy,
.about-copy,
.player-card,
.about-image,
.cta-box {
  padding: 34px;
}

.live-copy h2,
.about-copy h2,
.section-head h2,
.cta-box h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.05;
}

.live-copy p,
.about-copy p,
.section-head p,
.cta-box p,
.program-card p {
  color: var(--muted);
  line-height: 1.75;
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  color: #dff2ff;
}

.check-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  top: -1px;
  color: var(--primary-2);
}

.live-actions {
  margin-top: 26px;
}

.player-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.player-card-head img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  flex: 0 0 82px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.player-card-head h3 {
  margin: 0 0 6px;
  font-size: 30px;
}

.player-card-head p {
  margin: 0;
  color: var(--muted);
}

.player-frame-wrap {
  overflow: hidden;
  min-height: 390px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10, 28, 64, 0.82), rgba(4, 12, 26, 0.95));
}

.player-frame-wrap iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  background: transparent;
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(14, 34, 80, 0.88), rgba(6, 17, 38, 0.98));
}

.card-image img {
  width: min(100%, 360px);
  object-fit: contain;
}

.section-head.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.program-card {
  padding: 26px;
}

.program-time {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary-2);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.program-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(8, 21, 48, 0.95), rgba(15, 58, 126, 0.78));
}

.site-footer {
  padding: 50px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(4, 10, 20, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 28px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
}

.footer-slogan {
  color: var(--muted);
  max-width: 340px;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #9cb7d9;
  text-align: center;
}

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(6, 17, 38, 0.97);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .live-grid,
  .about-grid,
  .footer-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
  }

  .player-card-head h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 82px 0 58px;
  }

  .live-copy,
  .about-copy,
  .player-card,
  .about-image,
  .cta-box,
  .program-card {
    padding: 24px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .player-frame-wrap,
  .player-frame-wrap iframe {
    min-height: 320px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img,
  .footer-brand img {
    width: 48px;
    height: 48px;
  }

  .player-card-head {
    align-items: flex-start;
  }

  .player-card-head img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }
}
