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

:root {
  --bg: #0A0A0A;
  --fg: #ffffff;
  --accent: #F5A623;
  --accent-dim: rgba(245,166,35,0.15);
  --muted: rgba(255,255,255,0.45);
  --subtle: rgba(255,255,255,0.15);
  --border: rgba(255,255,255,0.06);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,166,35,0.4); }

/* Selection */
::selection { background: rgba(245,166,35,0.25); color: #fff; }

/* Focus */
:focus-visible { outline: 2px solid rgba(245,166,35,0.5); outline-offset: 3px; }

/* Links */
a { color: inherit; text-decoration: none; }

/* Images */
img { max-width: 100%; height: auto; display: block; }
