:root {
  color-scheme: dark;
  --ink: #f7f8f8;
  --muted: #b9c5c8;
  --night: #0b1113;
  --panel: #111a1d;
  --line: #344448;
  --teal: #48d2bd;
  --yellow: #f4c64d;
  --red: #ef5a52;
  --blue: #70a5e8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font: 17px/1.55 system-ui, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-underline-offset: 3px; }
img { max-width: 100%; }
.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--yellow);
  color: #111;
}
.skip:focus { top: 12px; }
.site-header {
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  background: #0b1113;
}
.header-inner,
.band-inner,
.page-main,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}
.brand img { width: 36px; height: 36px; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 4px 18px; }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 650; }
.language { color: var(--yellow); }
.hero {
  position: relative;
  min-height: min(76vh, 700px);
  display: flex;
  align-items: flex-end;
  background: #080d0f url("scattersparks-gameplay.png") center / cover no-repeat;
  border-bottom: 6px solid var(--yellow);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 9, 0.62);
}
.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 60px;
}
.eyebrow { margin: 0 0 10px; color: var(--yellow); font: 750 0.9rem/1.2 ui-monospace, monospace; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; }
h1 { max-width: 920px; margin: 0 0 16px; font-size: 6rem; white-space: nowrap; }
.hero-copy { max-width: 690px; margin: 0 0 26px; font-size: 1.25rem; color: #eef4f4; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 17px;
  border: 2px solid var(--teal);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.button.primary { background: var(--teal); color: #07100f; }
.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.band { padding: 58px 0; border-bottom: 1px solid var(--line); }
.band.light { background: #f1f5f4; color: #142023; }
.band h2, .page-main h1 { margin: 0 0 16px; font-size: clamp(2rem, 5vw, 3rem); }
.lead { max-width: 760px; margin: 0 0 30px; font-size: 1.12rem; }
.columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.columns section { padding: 24px 28px 12px 0; }
.columns section + section { padding-left: 28px; border-left: 1px solid var(--line); }
.columns h3 { margin: 0 0 8px; color: #08756e; font-size: 1.18rem; }
.columns p { margin: 0 0 12px; }
.status-line { max-width: 850px; padding: 18px 0 0; border-top: 4px solid var(--red); }
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; padding-top: 30px; padding-bottom: 38px; color: var(--muted); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.page-main { min-height: calc(100vh - 180px); padding: 64px 0 80px; }
.page-main h1 { color: var(--teal); }
.page-main h2 { margin: 42px 0 12px; font-size: 1.45rem; }
.page-main p, .page-main ul { max-width: 780px; }
.notice { max-width: 820px; margin: 26px 0; padding: 18px 20px; border-left: 5px solid var(--yellow); background: var(--panel); }
.light .notice { background: #fff; }
.meta { color: var(--muted); }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .header-inner { align-items: flex-start; flex-direction: column; gap: 4px; padding: 10px 0; }
  .site-nav { justify-content: flex-start; width: 100%; gap: 0 18px; }
  .hero { min-height: min(72vh, 620px); background-position: 55% center; }
  .hero-inner { padding: 52px 0 42px; }
  h1 { font-size: 2.75rem; }
  .hero-copy { font-size: 1.08rem; }
  .band { padding: 42px 0; }
  .columns { grid-template-columns: 1fr; }
  .columns section { padding: 20px 0; }
  .columns section + section { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 360px) {
  h1 { font-size: 2.25rem; }
}

@media (max-width: 220px) {
  h1 { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
