:root {
  --bg: #08080B;
  --fg: #fff;
  --accent: #FF4D00;
  --muted: rgba(255,255,255,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #08080B;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #08080B; }
::-webkit-scrollbar-thumb { background: #FF4D00; border-radius: 3px; }

::selection { background: rgba(255,77,0,0.3); color: #fff; }

html { scroll-behavior: smooth; }

a { color: inherit; }

*:focus-visible {
  outline: 2px solid #FF4D00;
  outline-offset: 3px;
  border-radius: 4px;
}
