:root {
  --bg: #0d0d15; --card: rgba(255,255,255,0.03); --accent: #7B61FF; --accent-glow: rgba(123,97,255,0.15);
  --text: #F0F0F5; --text2: #A0A0B8; --muted: #6B7280;
  --border: rgba(255,255,255,0.06); --border-glow: rgba(255,255,255,0.08);
  --green: #34D399; --orange: #FB923C; --red: #F87171; --blue: #38BDF8;
  --purple: #A78BFA; --yellow: #FBBF24; --emerald: #10B981;
  --radius: 14px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { min-height:100vh; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: radial-gradient(ellipse at center, #1e1e2f 0%, #0d0d15 100%);
  color: var(--text);
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width:6px; height:6px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.1); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:rgba(255,255,255,0.2); }
* { scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.1) transparent; }
