:root {
  --bg: #0b1220;
  --surface: #131c2e;
  --text: #e6ebf4;
  --muted: #8a96ab;
  --accent: #4f8cff;
  --ok: #2ecc71;
  --warn: #f1c40f;
  --danger: #e74c3c;
  --radius: 12px;
}
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
}
h1, h2, h3 { line-height: 1.2; }
a { color: var(--accent); }
.muted { color: var(--muted); }
.warn  { color: var(--warn); }
.err   { color: var(--danger); min-height: 1.2em; }
.pad   { padding: 16px; }
.center { display: grid; place-items: center; min-height: 70vh; }
