/* Base (Bolt) */
:root{
  --max-w:1200px;
  --accent-red:#ef3b3b;
  --accent-blue:#0f69d6;
  --text:#e8eef3;
  --muted:#9fb0c4;
  --bg:#070707;
  --panel:#0f1113;
  --radius:14px;
  --gap:22px;
  --header-h:76px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  color:var(--text);
  background:linear-gradient(180deg,#060607,#0b0c0d);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:var(--accent-blue);text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:28px}
