/* One stylesheet for all three pages. Deliberately plain: these exist so
   App Store Connect has a support URL and a privacy URL that resolve, and so
   a player who taps through from Settings finds a real answer quickly. */

:root {
  --ink: #292e42;
  --muted: #6b7191;
  --bg: #f5f5f8;
  --card: #ffffff;
  --accent: #e08c26;
  --rule: #e3e3ec;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8e9f2;
    --muted: #a0a4bd;
    --bg: #14161f;
    --card: #1d202b;
    --rule: #2c3040;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 2.5rem 1.25rem 3rem;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 44rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 18px;
  padding: 2rem 1.75rem;
}

h1 { font-size: 1.9rem; line-height: 1.2; margin: 0 0 0.25rem; }
h2 { font-size: 1.2rem; margin: 2rem 0 0.5rem; }
h3 { font-size: 1rem; margin: 1.5rem 0 0.35rem; }
p, ul { margin: 0.6rem 0; }
ul { padding-left: 1.25rem; }
li { margin: 0.3rem 0; }

a { color: var(--accent); }
a:hover { text-decoration: none; }

.hero { text-align: center; margin-bottom: 1.5rem; }
.hero h1 { font-size: 2.3rem; }
.tagline { color: var(--muted); margin-top: 0; }

.lede { font-size: 1.05rem; }
.updated { color: var(--muted); font-size: 0.85rem; margin-top: 0; }
.back { font-size: 0.9rem; margin: 0 0 1rem; }

.links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

footer {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
