/* Shared styling for the legal pages. A real stylesheet rather than a copied
   <style> block, so the two documents cannot drift apart visually — and so the
   Content-Security-Policy can keep style-src to 'self' here. */
@font-face {
  font-family: 'Pixelify Sans';
  src: url('./fonts/PixelifySans.ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --bg: #1a1423; --panel: #241d33; --ink: #efeaf7;
  --muted: #a99fc4; --accent: #e8b93c; --pink: #e86a7a; --line: #3a3350;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.7 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: 'Pixelify Sans', system-ui, sans-serif; line-height: 1.15; }
h1 { font-size: 36px; margin: 0 0 6px; }
h2 { font-size: 23px; margin: 40px 0 10px; }
h3 { font-size: 18px; margin: 26px 0 6px; }

header.bar {
  border-bottom: 1px solid var(--line); background: rgba(26, 20, 35, .9);
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px);
}
header.bar .wrap { display: flex; align-items: center; gap: 16px; height: 58px; max-width: 1040px; }
.logo { font-family: 'Pixelify Sans', system-ui, sans-serif; font-size: 21px;
        font-weight: 700; color: var(--ink); text-decoration: none; }
.logo span { color: var(--pink); }
header.bar nav { margin-left: auto; display: flex; gap: 20px; }
header.bar nav a { color: var(--muted); text-decoration: none; font-size: 15px; }
header.bar nav a:hover { color: var(--ink); }

main { padding: 48px 0 60px; }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.lead { color: var(--muted); font-size: 17px; }
p, li { color: #ded6ee; }
ul, ol { padding-left: 22px; }
li { margin: 6px 0; }
strong { color: var(--ink); }

.callout {
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 16px 18px; margin: 22px 0;
}
.callout p:first-child { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

.tablewrap { overflow-x: auto; margin: 18px 0; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--ink); font-family: 'Pixelify Sans', system-ui, sans-serif; font-weight: 400; white-space: nowrap; }
td { color: #ded6ee; }

/* Placeholders the operator still has to fill in. Deliberately loud: a legal
   page that ships with "[your registered name]" in body text is worse than no
   page at all, so these must be impossible to miss in review. */
.todo { color: var(--pink); border-bottom: 1px dashed var(--pink); font-style: normal; }

footer { border-top: 1px solid var(--line); padding: 26px 0 40px; color: var(--muted); font-size: 14px; }
footer a { color: var(--muted); }
footer .row { display: flex; flex-wrap: wrap; gap: 8px 18px; }
