:root { --fg:#1d2330; --muted:#667085; --bg:#f5f6f8; --card:#fff; --accent:#1f5eff; --error:#b42318; }
@media (prefers-color-scheme: dark) { :root { --fg:#e6e8ec; --muted:#98a2b3; --bg:#101318; --card:#1a1f27; --accent:#6d9bff; --error:#f97066; } }
* { box-sizing: border-box; }
body { margin:0; font:15px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif; color:var(--fg); background:var(--bg); }
.page { max-width: 960px; margin: 0 auto; padding: 24px 16px; }
.card { background:var(--card); border-radius:10px; padding:24px; box-shadow:0 1px 3px rgba(0,0,0,.08); }
.narrow { max-width: 420px; margin: 10vh auto; text-align:center; }
.muted { color:var(--muted); }
.error { color:var(--error); }
.button { display:inline-block; background:var(--accent); color:#fff; padding:10px 18px; border-radius:8px; text-decoration:none; }
.topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.inline { display:inline; }
button.link { background:none; border:0; color:var(--accent); cursor:pointer; font:inherit; }
.footer { text-align:center; color:var(--muted); font-size:12px; padding:16px; }
