:root {
  color-scheme: light dark;
  --bg: #101314;
  --panel: #181d1f;
  --text: #f2f6f3;
  --muted: #b9c3bd;
  --line: #2c3530;
  --accent: #91e6ad;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.page {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.eyebrow,
.updated {
  color: var(--accent);
  font-size: 0.95rem;
  margin: 0 0 12px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 8vw, 5rem);
  line-height: 1.05;
}

.site-logo {
  display: block;
  width: min(280px, 100%);
  height: auto;
  image-rendering: pixelated;
  margin: 0 auto;
}

.hero-logo {
  margin: 0 auto 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h2 {
  margin: 40px 0 12px;
  font-size: 1.3rem;
}

h3 {
  margin: 0 0 8px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.lead {
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.2rem;
}

section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.game {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 28px);
}

.game h3 {
  font-size: clamp(1.35rem, 4vw, 1.65rem);
}

.game-description {
  max-width: 646px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 20px;
  padding: 12px;
}

.trailer {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 24px 0 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #000;
}

.trailer iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}



.stove-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  min-height: 48px;
  padding: 6px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  color: #ff855e;
  text-decoration: none;
}

.stove-link:hover {
  background: #eee;
}

.stove-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.stove-link img {
  display: block;
  width: 100px;
  height: auto;
}

.app-store-badge {
  display: inline-block;
  border-radius: 10px;
}

.app-store-badge img {
  display: block;
  width: 144px;
  height: auto;
}

.google-play-badge {
  display: inline-block;
  flex-shrink: 0;
  margin-block: -12px;
  border-radius: 10px;
}

.google-play-badge img {
  display: block;
  width: 186px;
  height: auto;
}

.app-store-badge:focus-visible,
.google-play-badge:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.steam-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  min-height: 48px;
  border: 1px solid #657382;
  border-radius: 10px;
  background: #171d25;
}

.steam-link:hover {
  background: #263545;
}

.steam-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.steam-link img {
  display: block;
  width: 108px;
  height: auto;
}

.links {
  padding-left: 20px;
}

a {
  color: var(--accent);
}

nav {
  margin-bottom: 36px;
}

.business-info {
  padding-top: 28px;
  font-size: 0.85rem;
}

.business-info p {
  margin-bottom: 4px;
}

.business-info strong {
  color: var(--text);
}
