/*
 * Shared chrome for the two text pages Google Play requires a public URL for: the privacy policy
 * and the account-deletion request page. Same palette and dark-mode handling as card.html, but
 * none of its card geometry — these are documents, not renderings.
 */
:root {
  color-scheme: light dark;
  --page-bg: #f5f6f8;
  --page-fg: #14161a;
  --page-muted: #565b66;
  --page-surface: #ffffff;
  --page-border: #d8dbe3;
  --accent: #3355d8;
}
@media (prefers-color-scheme: dark) {
  :root {
    --page-bg: #14161a;
    --page-fg: #edeff4;
    --page-muted: #c2c6d0;
    --page-surface: #1b1e24;
    --page-border: #383c45;
    --accent: #4c6fff;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0 auto;
  padding: 48px 22px 80px;
  max-width: 46rem;
  background: var(--page-bg);
  color: var(--page-fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.01em; text-decoration: none; color: var(--page-fg);
  margin-bottom: 34px;
}
.brand svg { width: 30px; height: 30px; border-radius: 7px; }
h1 { font-size: 2rem; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 6px; }
h2 { font-size: 1.2rem; letter-spacing: -0.01em; margin: 2.4rem 0 0.5rem; }
h3 { font-size: 1rem; margin: 1.6rem 0 0.4rem; }
.updated { color: var(--page-muted); font-size: 0.92rem; margin: 0 0 2rem; }
p, li { color: var(--page-fg); }
.muted { color: var(--page-muted); }
a { color: var(--accent); }
ul { padding-left: 1.2rem; }
li { margin: 0.35rem 0; }
code, .path {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--page-surface);
  border: 1px solid var(--page-border);
  border-radius: 5px;
  padding: 1px 5px;
}
.panel {
  background: var(--page-surface);
  border: 1px solid var(--page-border);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 1.4rem 0;
}
table { border-collapse: collapse; width: 100%; margin: 1rem 0; font-size: 0.95rem; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--page-border); vertical-align: top; }
th { color: var(--page-muted); font-weight: 600; }
footer { margin-top: 3.5rem; padding-top: 1.4rem; border-top: 1px solid var(--page-border); color: var(--page-muted); font-size: 0.9rem; }
