@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg:#14110D;
  --bg-soft:#1A1712;
  --card:#1D1914;
  --line:#2C261E;
  --line-strong:#3D352A;
  --fg:#EDE8DF;
  --fg-soft:#B8B0A3;
  --mut:#948B7B;
  --acc:#FF7A1A;
  --acc-hover:#FF8F3C;
  --acc-ink:#1B0C00;
  --ok:#3FBF6F;
  --no:#F05A4E;
  --gold:#E8B44A;
  --overlay:rgba(6,4,2,0.7);
  --shadow:none;
}
[data-theme="light"]{
  --bg:#FAF6EF;
  --bg-soft:#F2ECE1;
  --card:#FFFFFF;
  --line:#E5DCCB;
  --line-strong:#D3C6AF;
  --fg:#201B12;
  --fg-soft:#5C5546;
  --mut:#8A7F6B;
  --acc:#DE5C00;
  --acc-hover:#C74F00;
  --acc-ink:#FFFFFF;
  --ok:#16884C;
  --no:#D2372B;
  --gold:#B98A2E;
  --overlay:rgba(70,55,35,0.35);
  --shadow:0 1px 2px rgba(32,27,18,.04),0 8px 24px rgba(32,27,18,.05);
}

body{font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;-webkit-font-smoothing:antialiased;transition:background .2s ease,color .2s ease;}
h1,h2,h3,h4,h5,h6{font-family:"Sora",system-ui,sans-serif;letter-spacing:-.02em;}
.logo{font-family:"Sora",system-ui,sans-serif;letter-spacing:-.02em;}
a{color:var(--acc);}

.theme-fab{position:fixed;right:16px;bottom:16px;z-index:99999;width:44px;height:44px;border-radius:50%;border:1px solid var(--line-strong);background:var(--card);color:var(--fg);cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 20px rgba(0,0,0,.28);transition:transform .15s ease,border-color .15s ease,color .15s ease}
.theme-fab:hover{border-color:var(--acc);color:var(--acc);transform:translateY(-1px)}
.theme-fab:focus-visible{outline:2px solid var(--acc);outline-offset:2px}
