:root {
  --bg: #0d1220;
  --fg: #f8f6f0;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(245,158,11,0.3); border-radius: 3px; }

::selection {
  background: rgba(245,158,11,0.25);
  color: #f8f6f0;
}

:focus-visible {
  outline: 2px solid rgba(245,158,11,0.5);
  outline-offset: 3px;
}

img { max-width: 100%; display: block; }
button { cursor: pointer; }
a { color: inherit; }
