/* EXODYNE — the legal and support pages.
   Deliberately one small stylesheet with no webfont and no third-party anything: these pages exist
   partly to state that the game loads nothing from anywhere, and a page that contradicts that
   while saying it would be worse than no page. */
:root {
  --void: #04070b;
  --plate: #0a1018;
  --line: rgba(120,150,180,.22);
  --amber: #f0a63c;
  --amber-soft: #ffd489;
  --text: #cfd9e2;
  --muted: #8fa0b0;
  --ui: 'Rajdhani', 'Eurostile', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--void); }
body {
  color: var(--text);
  font: 16px/1.75 var(--ui);
  padding: 0 20px 96px;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 760px; margin: 0 auto; }

header { padding: 56px 0 28px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.brand svg { width: 34px; height: 34px; flex: none; }
.brand b {
  font-size: 19px; letter-spacing: .34em; font-weight: 600; color: var(--text);
}
.eyebrow {
  margin: 26px 0 6px; font-size: 11.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--amber);
}
h1 { margin: 0; font-size: 30px; line-height: 1.25; font-weight: 600; letter-spacing: .01em; }
.updated { margin: 10px 0 0; font-size: 13px; color: var(--muted); }

h2 {
  margin: 40px 0 12px; font-size: 15px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--amber); font-weight: 600;
}
h3 { margin: 26px 0 8px; font-size: 17px; font-weight: 600; }
p, li { color: var(--text); }
p { margin: 0 0 14px; }
ul { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 7px; }
strong { color: #fff; font-weight: 600; }
a { color: var(--amber-soft); text-decoration-color: rgba(240,166,60,.45); text-underline-offset: 3px; }
a:hover { color: #fff; }
code {
  font: 13.5px/1.5 ui-monospace, Menlo, Consolas, monospace;
  background: rgba(120,150,180,.1); padding: 2px 6px; border-radius: 3px; color: var(--amber-soft);
}

.card {
  background: var(--plate); border: 1px solid var(--line);
  border-radius: 6px; padding: 20px 22px; margin: 0 0 22px;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.lead { font-size: 17.5px; color: var(--text); }

table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
th, td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--amber); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; font-weight: 600; }
td:first-child { color: #fff; white-space: nowrap; }
.scroll { overflow-x: auto; }

.mail {
  display: inline-block; margin: 4px 0 2px; padding: 13px 20px;
  border: 1px solid rgba(240,166,60,.5); background: rgba(240,166,60,.12);
  border-radius: 5px; color: var(--amber-soft); text-decoration: none;
  font-size: 16px; letter-spacing: .04em;
}
.mail:hover { background: rgba(240,166,60,.2); color: #fff; }

footer {
  margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--muted);
}
footer a { margin-right: 18px; }

@media (max-width: 620px) {
  body { font-size: 15.5px; padding-bottom: 64px; }
  header { padding-top: 34px; }
  h1 { font-size: 25px; }
}
