/* Shared styling for the standalone legal pages (privacy, terms, support).
   Deliberately plain static HTML rather than SPA routes: App Review and Play
   Console fetch these URLs directly, sometimes without running JavaScript, and a
   policy page that renders blank is a rejection. */
:root {
  --bg: #0b1220;
  --panel: #121a2b;
  --line: #223049;
  --txt: #e6ecf5;
  --mut: #8ea0bd;
  --blue: #60a5fa;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 40px 20px 80px;
  background: var(--bg);
  color: var(--txt);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
main { max-width: 760px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.brand img { width: 40px; height: 40px; }
.brand span { font-size: 20px; font-weight: 800; }
h1 { font-size: 30px; margin: 18px 0 6px; }
h2 { font-size: 18px; margin: 34px 0 8px; }
.updated { color: var(--mut); font-size: 14px; margin: 0 0 28px; }
p, li { color: #cfd9ea; font-size: 15.5px; }
ul { padding-left: 22px; }
li { margin-bottom: 7px; }
a { color: var(--blue); }
.box {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 20px; margin: 22px 0;
}
.box p:first-child { margin-top: 0; }
.box p:last-child { margin-bottom: 0; }
footer {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--mut); font-size: 13px;
}
footer a { margin-right: 16px; }
