/* One stylesheet for every legal page. Deliberately plain: these pages are read by
   Play reviewers and by learners looking for one specific sentence, not browsed. */
:root {
  color-scheme: light dark;
  --bg: #f8f9fa;
  --surface: #ffffff;
  --text: #191c1d;
  --muted: #434654;
  --border: #c3c6d6;
  --accent: #003d9b;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111416;
    --surface: #1a1d1f;
    --text: #e3e2e6;
    --muted: #a9adbb;
    --border: #33363d;
    --accent: #b2c5ff;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 32px 20px 64px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
main { max-width: 720px; margin: 0 auto; }
header { border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 28px; }
h1 { font-size: 28px; line-height: 1.25; margin: 0 0 8px; }
h2 { font-size: 19px; margin: 32px 0 8px; }
h3 { font-size: 16px; margin: 22px 0 6px; }
p, li { color: var(--text); }
.meta { color: var(--muted); font-size: 14px; margin: 0; }
.lede { color: var(--muted); }
a { color: var(--accent); }
ul { padding-left: 22px; }
li { margin-bottom: 6px; }
table { border-collapse: collapse; width: 100%; margin: 12px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); vertical-align: top; }
th { background: var(--surface); font-weight: 600; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
}
.steps { counter-reset: step; list-style: none; padding-left: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 1px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
nav.pagelinks { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 14px; }
nav.pagelinks a { margin-right: 18px; }
footer { margin-top: 12px; color: var(--muted); font-size: 13px; }
