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

:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --font-game: 'Graduate', serif;
}

html,
body {
  min-height: 100%;
  background: #021c24;
  color: #f8f9fa;
  font-family: var(--font-game);
}

.site-shell {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  color: #f8f9fa;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(0, 210, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 90% 30%, rgba(255, 94, 54, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, #052832 0%, #033844 48%, #021c24 100%);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: max(16px, var(--safe-top)) max(20px, var(--safe-right)) 12px max(20px, var(--safe-left));
}

.site-nav-brand img {
  height: 42px;
  width: auto;
  display: block;
}

.site-nav-version {
  margin-right: auto;
  color: rgba(248, 249, 250, 0.4);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-nav-links a {
  color: rgba(248, 249, 250, 0.78);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav-links a.is-active,
.site-nav-links a:hover {
  color: #ffd200;
}

.site-nav-play {
  padding: 8px 14px;
  border: 2px solid #000;
  background: #ffd200;
  color: #1a1a24 !important;
  box-shadow: 3px 3px 0 #ff5e36;
  font-weight: 900;
}

.site-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  min-height: min(88vh, 920px);
  padding: 12px max(24px, var(--safe-right)) 40px max(24px, var(--safe-left));
}

.site-kicker {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: #00d2ff;
  margin-bottom: 12px;
}

.site-hero-logo {
  width: min(520px, 88vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

.site-hero-tag {
  margin-top: 18px;
  max-width: 34ch;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.35;
  color: #f8f9fa;
}

.site-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-cta-primary,
.site-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid #000;
}

.site-cta-primary {
  background: #ff5e36;
  color: #fff;
  box-shadow: 4px 4px 0 #00d2ff;
}

.site-cta-secondary {
  background: transparent;
  color: #f8f9fa;
  box-shadow: 4px 4px 0 rgba(255, 210, 0, 0.55);
}

.site-hero-shot {
  justify-self: end;
  width: min(340px, 42vw);
}

.site-hero-shot img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
}

.site-section {
  padding: 48px max(24px, var(--safe-right)) 24px max(24px, var(--safe-left));
}

.site-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 10px;
}

.site-section-lead {
  max-width: 52ch;
  color: rgba(248, 249, 250, 0.78);
  margin-bottom: 28px;
  line-height: 1.45;
}

.site-shot-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.site-shot-card {
  scroll-snap-align: start;
  margin: 0;
}

.site-shot-card img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid rgba(0, 210, 255, 0.35);
  box-shadow: 6px 6px 0 rgba(255, 94, 54, 0.35);
}

.site-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 960px;
}

.site-feature-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  border-left: 3px solid #ffd200;
  background: rgba(0, 0, 0, 0.22);
}

.site-feature-list strong {
  color: #ffd200;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.site-feature-list span {
  color: rgba(248, 249, 250, 0.8);
  line-height: 1.4;
}

.site-article {
  max-width: 720px;
  padding: 24px max(24px, var(--safe-right)) 48px max(24px, var(--safe-left));
  line-height: 1.55;
}

.site-article h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.site-article h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #00d2ff;
  font-size: 22px;
}

.site-article a {
  color: #ffd200;
}

.site-article ul {
  padding-left: 1.2em;
  margin: 10px 0 16px;
}

.site-muted {
  color: rgba(248, 249, 250, 0.55);
  font-size: 13px;
  margin-bottom: 18px;
}

.site-faq {
  margin-top: 12px;
}

.site-faq dt {
  margin-top: 16px;
  color: #ffd200;
  font-weight: 900;
}

.site-faq dd {
  margin: 6px 0 0;
  color: rgba(248, 249, 250, 0.82);
}

.site-footer {
  padding: 28px max(24px, var(--safe-right)) max(28px, var(--safe-bottom)) max(24px, var(--safe-left));
  border-top: 1px solid rgba(0, 210, 255, 0.2);
  color: rgba(248, 249, 250, 0.55);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer a {
  color: #00d2ff;
}

@media (max-width: 860px) {
  .site-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
  }

  .site-hero-shot {
    justify-self: center;
    width: min(280px, 70vw);
    order: -1;
  }

  .site-feature-list {
    grid-template-columns: 1fr;
  }
}
