:root {
  --bg: #0F0F0F;
  --fg: #F5F0E8;
  --accent: #D4A843;
  --accent-dim: rgba(212,168,67,0.15);
  --muted: #8A8070;
  --border: rgba(255,255,255,0.06);
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html { scroll-behavior: smooth; }
::selection { background: rgba(212,168,67,0.25); color: #F5F0E8; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0F0F0F; }
::-webkit-scrollbar-thumb { background: #3A3530; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #4A4540; }
