:root {
  --bg: #0d0e0f;
  --panel: #1c1d20;
  --cheat: #40fa9e;
  --metal: #c7c9d1;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.1);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  line-height: 1.55;
}
a { color: var(--cheat); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 44rem; margin: 0 auto; padding: 1.25rem 1.25rem 4rem; }
nav {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--line); padding: .85rem 0 1rem; margin-bottom: 2rem;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
}
nav .brand { color: var(--text); font-weight: 650; letter-spacing: .14em; }
nav .links a { color: var(--muted); margin-left: 1.1rem; }
nav .links a:hover { color: var(--cheat); text-decoration: none; }
    h1 { font-size: 1.45rem; font-weight: 650; margin: 0 0 .4rem; }
h2 { font-size: 1.02rem; margin: 1.7rem 0 .4rem; color: var(--cheat); font-weight: 600; }
.muted { color: var(--muted); }
.legal { max-width: 40rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.2rem 0; }
