/* THEME — colors, fonts, base reset.
   Edit this file to change the brand look (orange accent, dark background, font choices). */

:root{
  --bg:#0a0a0a;
  --s1:#141414;
  --s2:#1c1c1c;
  --s3:#242424;
  --bd:#2c2c2c;
  --bd2:#3a3a3a;
  --ac:#ff6b00;
  --ac2:#ffb800;
  --ac3:#9333ea;
  --gn:#22c55e;
  --yw:#eab308;
  --rd:#ef4444;
  --or:#ff6b00;
  --tx:#f5f5f5;
  --tx2:#a3a3a3;
  --tx3:#525252;
  --mono:'JetBrains Mono',monospace;
  --sans:'DM Sans',sans-serif;
  --display:'Bebas Neue',sans-serif
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--tx);font-family:var(--sans);min-height:100vh;font-size:14px}
body::before{content:'';position:fixed;inset:0;background:radial-gradient(ellipse 80% 50% at 50% -20%,rgba(255,107,0,.06),transparent);pointer-events:none;z-index:0}
.z1{position:relative;z-index:1}

/* Scrollbar */
::-webkit-scrollbar{width:4px;height:4px}
::-webkit-scrollbar-track{background:var(--s1)}
::-webkit-scrollbar-thumb{background:rgba(255,107,0,.3);border-radius:2px}

/* Tooltip cursor */
[title]{cursor:help}
