:root {
  --bg: #0a0a0c;
  --surface: #0e0e14;
  --fg: #f0ece0;
  --fg-muted: #8a8780;
  --accent: #f5a623;
  --border: rgba(255,255,255,0.08);
}
*, *::before, *::after { 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;
}
::selection { background: rgba(245,166,35,0.3); color: var(--fg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }
img { max-width: 100%; }
button { cursor: pointer; border: none; outline: none; }
a { color: inherit; }
