:root {
  --bg: #0c0c0e;
  --fg: #f0ede8;
  --accent: #e8890c;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0c0c0e; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::selection { background: rgba(232,137,12,0.2); color: #f0ede8; }
