/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0f2214;
  --bg-card: #183420;
  --bg-surface: #1e4028;
  --bg-light: #244a30;
  --text-primary: #f4f8f0;
  --text-secondary: #a0c8a0;
  --text-muted: #6a9a70;
  --accent: #ffd040;
  --accent-dim: #c09828;
  --green: #60e890;
  --border: #2a4e30;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: #fff;
}
