:root {
  --bg: #0A1F14;
  --fg: #ffffff;
  --accent: #C9942A;
}

* { 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;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050E08; }
::-webkit-scrollbar-thumb { background: rgba(201,148,42,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C9942A; }

::selection { background: rgba(201,148,42,0.25); color: #fff; }

html { scroll-behavior: smooth; }

img { max-width: 100%; height: auto; }

a { color: inherit; }
