:root{
--bgc:#0d0d0d;
--bg2:#151515;
--bg3:#2a2a2a;
--bc1:#333;
--bc2:#666;
--cl1:#eee;
--cl2:#999;
--cl3:#666;
--ac1:#f05533;
--ac1-dark:color-mix(in srgb,var(--ac1),black 20%);
--ac1-light:color-mix(in srgb,var(--ac1),white 15%);
--lnk:#66b1ff;
--ff1:"Inter",system-ui,-apple-system,sans-serif;
--br1:12px;
--br2:8px;
--mw:800px;
--gap:24px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{font-size:16px;}
body{
font-family:var(--ff1);
background:var(--bgc);
color:var(--cl1);
min-height:100vh;
display:flex;
flex-direction:column;
-webkit-font-smoothing:antialiased;
}
a{color:var(--lnk);text-decoration:none;}
a:hover{text-decoration:underline;}
::selection{background:var(--ac1);color:#fff;}
::-webkit-scrollbar{width:6px;height:6px;}
::-webkit-scrollbar-track{background:var(--bgc);}
::-webkit-scrollbar-thumb{background:var(--bc1);border-radius:3px;}
::-webkit-scrollbar-thumb:hover{background:var(--bc2);}