/* Shared by privacy.html and terms.html. Standalone rather than part of the app bundle: these
   have to resolve for anyone, including Google's crawler, without loading a megabyte of WASM. */
:root {
  --bg: #101216;
  --panel: #191c22;
  --line: #2c313b;
  --text: #dfe3ea;
  --dim: #8b93a3;
  --accent-2: #9ba91d;
  color-scheme: dark;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 48px 24px 96px;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.65 ui-sans-serif, -apple-system, 'Segoe UI', system-ui, sans-serif;
}
main { max-width: 660px; margin: 0 auto; }
a { color: var(--accent-2); }
h1 { font-size: 26px; margin: 0 0 4px; letter-spacing: -0.01em; }
h2 { font-size: 16px; margin: 34px 0 8px; letter-spacing: 0.01em; }
.updated { color: var(--dim); font-size: 13px; margin: 0 0 28px; }
.home { display: inline-block; margin-bottom: 28px; font-size: 13px; }
ul { padding-left: 20px; }
li { margin: 6px 0; }
.note {
  border-left: 2px solid var(--line);
  background: var(--panel);
  padding: 12px 16px;
  margin: 18px 0;
  border-radius: 0 6px 6px 0;
}
.note strong { color: var(--text); }
footer { color: var(--dim); font-size: 13px; margin-top: 44px; border-top: 1px solid var(--line); padding-top: 16px; }
