:root {
  --bg: #0f1419;
  --surface: #1a222c;
  --surface2: #232d3a;
  --border: #2f3d4d;
  --text: #e8eef4;
  --muted: #8b9aab;
  --accent: #3d9cf5;
  --accent-dim: #2a7bc4;
  --danger: #e85d5d;
  --radius: 10px;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

#root {
  min-height: 100vh;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input {
  font-family: inherit;
}

a {
  color: var(--accent);
}
