/* fak.css — shared design system for the fak Live demo pages.
   One source of truth for the light theme palette + base elements, so every page
   stays visually consistent and the theme changes in exactly one place. */
:root{
  --bg:#f6f8fa; --panel:#ffffff; --ink:#1f2328; --dim:#57606a; --line:#d0d7de;
  --allow:#1a7f37; --deny:#cf222e; --accent:#0969da; --accent2:#8250df;
  --cpu:#8250df; --gpu:#1a7f37;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--ink);
     font:16px/1.55 ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial}
a{color:var(--accent);text-decoration:none}
code{font:13px ui-monospace,Menlo,Consolas,monospace;background:#f0f3f6;border:1px solid var(--line);
     border-radius:6px;padding:2px 6px;color:#24292f}
.wrap{max-width:980px;margin:0 auto;padding:24px 20px 64px}
