:root {
  --bg-primary: #05060a;
  --bg-secondary: #0c1020;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f7ff;
  --text-secondary: #a8b2d1;
  --accent-purple: #a855f7;
  --accent-blue: #38bdf8;
  --danger: #ef4444;
  --safe: #22c55e;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  margin: 0;
  background: #191b23;
  color: var(--text-primary);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}
