/*
 * Shared styling for the static, crawlable info pages (about / scenarios /
 * how-to-play / privacy / terms). These pages are plain HTML — NO app bundle,
 * NO login — so search engines and the AdSense reviewer can read real content.
 * The look echoes the app's broadcast/CRT theme so the site reads as one piece.
 */
:root {
  --bg: #0b0d12;
  --panel: #12151d;
  --ink: #e8eaf0;
  --muted: #9aa3b2;
  --line: #232838;
  --red: #e23b3b;
  --amber: #e0a13b;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  font-size: 17px;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 22px 64px;
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0e1118, #0b0d12);
}
.topbar-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.wordmark {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark b {
  color: var(--red);
}
.topnav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}
.topnav a {
  color: var(--muted);
  text-decoration: none;
}
.topnav a:hover {
  color: var(--ink);
}
h1,
h2,
h3 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #fff;
}
h1 {
  font-size: 34px;
  margin: 38px 0 8px;
}
h2 {
  font-size: 23px;
  margin: 40px 0 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
h3 {
  font-size: 18px;
  margin: 26px 0 6px;
  color: var(--amber);
}
.lede {
  font-size: 19px;
  color: var(--muted);
  margin: 6px 0 20px;
}
a {
  color: #7fb3ff;
}
a:hover {
  color: #a9ccff;
}
.kicker {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--red);
  margin-top: 32px;
}
.cta {
  display: inline-block;
  margin: 22px 0 8px;
  padding: 12px 22px;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
}
.cta:hover {
  background: #f04a4a;
  color: #fff;
}
.scenario {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 6px;
  padding: 14px 18px;
  margin: 12px 0;
}
.scenario h3 {
  margin: 0 0 4px;
  color: #fff;
}
.scenario .when {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--amber);
}
.scenario p {
  margin: 6px 0 0;
  color: var(--muted);
}
.muted {
  color: var(--muted);
}
.sitefoot {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding-top: 20px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.sitefoot a {
  color: var(--muted);
  text-decoration: none;
}
.sitefoot a:hover {
  color: var(--ink);
}
.sitefoot .copy {
  flex-basis: 100%;
  margin-top: 8px;
  color: #5e6779;
}
