/* Gawkin policy/support pages — styles matching the Gamebok site (dark zinc/indigo, fixed
   pill header, the site's Geist typeface). Geist loads from the site's own font file (shared
   with the Next.js build); if a rebuild renames it, it falls back to a metric-matched Arial
   ("Geist Fallback") then the system sans stack — so text stays readable either way. */

/* Geist — the Gamebok site's typeface, from its own self-hosted font file. */
@font-face { font-family: Geist; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url(../_next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2) format("woff2"); }
@font-face { font-family: Geist; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url(../_next/static/media/7178b3e590c64307-s.11.cyxs5p-0z~.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Geist Fallback"; src: local("Arial");
  ascent-override: 95.94%; descent-override: 28.16%; line-gap-override: 0%; size-adjust: 104.76%; }

:root {
  --bg: #05060a;
  --border: rgba(255, 255, 255, 0.10);
  --text: #e4e4e7;     /* zinc-200 */
  --muted: #a1a1aa;    /* zinc-400 */
  --dim: #71717a;      /* zinc-500 */
  --faint: #52525b;    /* zinc-600 */
  --accent: #a5b4fc;   /* indigo-300 */
  --accent-hover: #c7d2fe;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--muted);
  font: 15px/1.7 "Geist", "Geist Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; min-height: 100vh;
  display: flex; flex-direction: column;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

header { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; justify-content: center; padding: 24px 16px; pointer-events: none; }
.pill {
  pointer-events: auto; display: flex; width: 100%; max-width: 64rem; align-items: center; justify-content: space-between;
  border: 1px solid var(--border); background: rgba(0, 0, 0, 0.4); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-radius: 9999px; padding: 10px 20px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.brand { color: #fff; font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.pill nav { display: flex; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.pill nav a { color: var(--muted); font-size: 13px; font-weight: 500; padding: 6px 12px; border-radius: 9999px; }
.pill nav a:hover { background: rgba(255, 255, 255, 0.05); color: #f4f4f5; }

main { width: 100%; max-width: 42rem; margin: 0 auto; flex: 1; padding: 132px 24px 80px; }
.back { display: inline-block; margin-bottom: 36px; font-size: 14px; font-weight: 500; }
h1 { color: #fff; font-size: 30px; font-weight: 600; letter-spacing: -0.02em; margin: 0; line-height: 1.2; }
.meta { color: var(--dim); font-size: 14px; margin: 10px 0 0; }
.content { margin-top: 36px; }
.content > * + * { margin-top: 18px; }
h2 { color: #fff; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 38px 0 0; }
p, li { font-size: 15px; line-height: 1.7; color: var(--muted); }
strong { color: var(--text); font-weight: 600; }
ul { padding-left: 20px; margin: 8px 0 0; }
li { margin: 7px 0; }

footer { border-top: 1px solid var(--border); background: rgba(0, 0, 0, 0.4); padding: 56px 0 28px; margin-top: 48px; }
.foot { max-width: 64rem; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 640px) { .foot { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.foot .name { color: #fff; font-weight: 600; font-size: 14px; margin: 0; }
.foot .desc { color: var(--dim); margin: 8px 0 0; max-width: 24rem; line-height: 1.6; font-size: 14px; }
.foot .links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.foot .links a { color: var(--muted); }
.foot .links a:hover { color: #fff; }
.copy { max-width: 64rem; margin: 40px auto 0; padding: 0 24px; color: var(--faint); font-size: 12px; }
