/* e-Population — standalone legal pages
   Served from Firebase Hosting at /privacy /terms /support /about
   Used by App Store Connect + Play Console listings. */

:root {
  --bg: #0b1220;
  --panel: #121a2e;
  --text: #e6edf7;
  --muted: #9aa7bd;
  --accent: #6aa1ff;
  --border: #1f2a44;
  --max-width: 780px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f7f9fc;
    --panel: #ffffff;
    --text: #0f1a2e;
    --muted: #556378;
    --accent: #2a63d8;
    --border: #e3e8f2;
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

header.page-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

header.page-header a.home {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

h1 {
  font-size: 28px;
  margin: 12px 0 4px;
  letter-spacing: -0.01em;
}

.updated {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

section h2 {
  font-size: 18px;
  margin: 0 0 8px;
}

section p, section li {
  color: var(--text);
  font-size: 15px;
}

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

ul { padding-left: 20px; margin: 8px 0; }
li { margin-bottom: 6px; }

footer.page-footer {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
