:root {
  --bg: #0d1117;
  --bg-alt: #161b22;
  --bg-darker: #0a0e14;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.1);
  --text: #e6edf3;
  --text-muted: #8b949e;
  --text-dim: #484f58;
  --border: rgba(139, 148, 158, 0.1);
  --danger: #ff6b6b;
}

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

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

::selection {
  background: rgba(57, 255, 20, 0.2);
  color: #e6edf3;
}

a {
  color: var(--accent);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
}

img { max-width: 100%; display: block; }
