/* Standalone styling for /privacy and /terms — same tokens and type as the
   game, but a long-form reading layout rather than the single-screen app.
   Kept in sync with the token block in src/style.css by hand; these pages
   never load the app bundle. */
:root {
  --bg: #fff3e0;
  --ink: #3a322e;
  --accent: #ff8a65;
  --rule: color-mix(in srgb, var(--ink) 14%, transparent);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #211b16;
    --ink: #efe6dc;
    --accent: #ff8a65;
    --rule: color-mix(in srgb, var(--ink) 18%, transparent);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2.5rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

main {
  max-width: 42rem;
  margin: 0 auto;
}

h1 {
  font-family: 'Fraunces Wonk', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 2rem;
  margin: 0 0 0.25rem;
}

h2 {
  font-size: 1.15rem;
  margin: 2.25rem 0 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.updated {
  margin: 0 0 2rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--ink) 65%, transparent);
}

a {
  color: color-mix(in srgb, var(--accent) 78%, var(--ink));
}

ul {
  padding-left: 1.25rem;
}

li {
  margin: 0.25rem 0;
}

.back {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.9rem;
}
