@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0d1324;
  --surface: #111827;
  --surface-2: #1a2236;
  --accent: #8b5cf6;
  --accent-2: #3b82f6;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #eab308;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(139, 92, 246, 0.2);
  --radius: 16px;
  --transition: 0.2s ease;
  --font: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}
