* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

:root {
  --bg: #05070d;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f7fa;
  --muted: rgba(245, 247, 250, 0.68);
  --muted-2: rgba(245, 247, 250, 0.5);
  --blue: #2f6bff;
  --red: #ff4d4d;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 32px;
  --max: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(47, 107, 255, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 77, 77, 0.12), transparent 24%),
    linear-gradient(to bottom, rgba(255,255,255,0.02), transparent 20%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(5, 7, 13, 0.78);
  border-bottom: 1px solid var(--border);
}

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

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.domain {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}

.brand h1 {
  font-size: 1.5rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

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

.button-light {
  background: #ffffff;
  color: #000000;
}

.button-dark {
  background: rgba(255,255,255,0.05);
  border-color: var(--border);
  color: var(--text);
}

.hero {
  padding-top: 42px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-left {
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 45%);
  pointer-events: none;
}

.hero-left > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted-2);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 22px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(255, 77, 77, 0.8);
}

.hero-left h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 900;
  max-width: 800px;
}

.hero-copy {
  margin-top: 24px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-badge {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}

.hero-badge span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
}

.hero-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-right {
  display: grid;
  gap: 16px;
}

.image-card,
.countdown-card,
.series-main,
.side-panel,
.broadcast-card,
.feature-stack,
.info-banner,
.schedule-card,
.mini-feature {
  padding: 24px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 214, 102, 0.22);
  background: rgba(255, 214, 102, 0.08);
  color: #ffe7a6;
}

.image-placeholder,
.video-placeholder,
.large-placeholder {
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  position: relative;
  overflow: hidden;
}

.large-placeholder {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.large-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1), transparent);
}

.large-placeholder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to top, rgba(47, 107, 255, 0.24), transparent);
}

.placeholder-text {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.placeholder-text h3,
.placeholder-text h4 {
  font-size: 1rem;
  font-weight: 700;
}

.placeholder-text p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-feature {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.mini-feature h3 {
  margin-top: 10px;
  font-size: 1.35rem;
  font-weight: 900;
}

.mini-feature p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 26px 0 40px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.section-heading h2,
.series-main h2,
.broadcast-card h2,
.info-banner h3 {
  margin-top: 8px;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-note,
.series-copy,
.panel-copy,
.broadcast-copy,
.feature-item p,
.timeline-box p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.countdown-heading {
  margin-bottom: 24px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.countdown-box {
  padding: 24px 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  text-align: center;
}

.countdown-box span {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.countdown-box p {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted-2);
}

.countdown-footer {
  margin-top: 18px;
  color: var(--muted);
}

.series-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.series-copy {
  margin-top: 16px;
  max-width: 800px;
}

.series-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.series-side,
.broadcast-side {
  display: grid;
  gap: 16px;
}

.series-list {
  margin-top: 16px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.series-list li {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  color: var(--muted);
  line-height: 1.7;
}

.stat-panel h3 {
  margin-top: 10px;
  font-size: 1.7rem;
  font-weight: 900;
}

.broadcast-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.video-placeholder {
  margin-top: 20px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: end;
  padding: 18px;
  background: rgba(0,0,0,0.25);
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-item {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}

.feature-item h3 {
  margin-top: 8px;
  font-size: 1.45rem;
  font-weight: 900;
}

.info-banner {
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.16), rgba(255, 77, 77, 0.12));
}

.info-banner h3 {
  max-width: 500px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.timeline-box {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}

.timeline-box h3 {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 10px;
}

.footer-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .series-grid,
  .broadcast-grid,
  .countdown-grid,
  .schedule-grid,
  .hero-badges,
  .mini-feature-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .section-heading,
  .countdown-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

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

  .hero-left,
  .image-card,
  .countdown-card,
  .series-main,
  .side-panel,
  .broadcast-card,
  .feature-stack,
  .info-banner,
  .schedule-card,
  .mini-feature {
    padding: 20px;
  }

  .hero-left h2,
  .series-main h2,
  .broadcast-card h2,
  .section-heading h2,
  .info-banner h3 {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 18px 0;
  }
}