/* The policy pages, styled to read rather than to impress.

   Deliberately not the app's design system: this page is opened in a browser
   by a store reviewer and by a player following a link, and it has to be
   legible with no fonts to load, no script, and no network beyond the HTML
   itself. System fonts, one column, and colours that survive a dark browser. */

:root {
  color-scheme: light dark;
  --ink: #2a261f;
  --ink-soft: #5c554a;
  --paper: #fdfcfa;
  --rule: #e6e1d8;
  --link: #8a5a20;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ece7df;
    --ink-soft: #a9a196;
    --paper: #1a1815;
    --rule: #35312b;
    --link: #e0a962;
  }
}

* { box-sizing: border-box; }

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

h1 { font-size: 1.9rem; line-height: 1.2; margin: 0 0 0.35rem; }
h2 { font-size: 1.25rem; margin: 2.5rem 0 0.6rem; }
h3 { font-size: 1.02rem; margin: 1.6rem 0 0.4rem; }

.updated { color: var(--ink-soft); margin: 0 0 2rem; font-size: 0.95rem; }
.lede { font-size: 1.08rem; }

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

ul { padding-left: 1.2rem; }
li { margin: 0.35rem 0; }

dt { font-weight: 600; margin-top: 0.9rem; }
dd { margin: 0.15rem 0 0 0; color: var(--ink-soft); }

hr { border: 0; border-top: 1px solid var(--rule); margin: 2.5rem 0; }

.lang {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.contact {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
}

footer { margin-top: 3rem; color: var(--ink-soft); font-size: 0.9rem; }
