:root {
  color-scheme: dark;
  --ink: #f7f9ff;
  --muted: #a8b4d6;
  --bg: #07122b;
  --panel: rgba(10, 24, 55, 0.78);
  --panel-strong: rgba(5, 13, 32, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --red: #e1062c;
  --yellow: #ffd300;
  --orange: #ff7a00;
  --blue: #163a8c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(115deg, rgba(225, 6, 44, 0.18), transparent 31%),
    linear-gradient(245deg, rgba(255, 211, 0, 0.12), transparent 28%),
    radial-gradient(circle at 73% 11%, rgba(22, 58, 140, 0.7), transparent 33rem),
    var(--bg);
  overflow-x: hidden;
}

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

.page-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 58px);
  margin: 0 auto;
  padding: 22px 0 34px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(225, 6, 44, 0.95) 0 43%, transparent 43%),
    linear-gradient(315deg, rgba(255, 211, 0, 0.95) 0 28%, transparent 28%),
    var(--blue);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.youtube-link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  align-items: end;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(42px, 9vh, 92px) 0 0;
}

.hero-copy {
  display: grid;
  align-content: end;
  gap: 18px;
  padding-bottom: clamp(14px, 3vw, 44px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(225, 6, 44, 0.16);
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 4.85rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.55;
}

.stream-card {
  position: relative;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.stream-card::before {
  position: absolute;
  inset: -1px -1px auto;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  content: "";
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(225, 6, 44, 0.26), transparent),
    #020715;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.stream-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 6px 4px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stream-meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}

.stream-meta span:first-child::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  content: "";
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 20px;
  color: rgba(247, 249, 255, 0.58);
  font-size: 0.76rem;
}

@media (max-width: 820px) {
  .page-shell {
    min-height: auto;
    padding-bottom: 26px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    padding-top: 34px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    max-width: 9ch;
  }

  .stream-card {
    padding: 8px;
  }

  .site-footer {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .page-shell,
  .site-footer {
    width: min(100% - 22px, 1160px);
  }

  .site-header {
    gap: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .youtube-link {
    min-width: 78px;
    padding: 0 12px;
  }

  .stream-meta {
    font-size: 0.7rem;
  }
}
