:root {
  --bg: #0a1820;
  --surface: rgba(10, 24, 32, 0.7);
  --surface-solid: #0d1f2b;
  --accent: #ee8625;
  --accent-dim: rgba(238, 134, 37, 0.15);
  --text: #faeecf;
  --text-muted: rgba(250, 238, 207, 0.45);
  --border: rgba(238, 134, 37, 0.25);
  --success: #4ade80;
  --error: #ef4444;
  --warning: #fbbf24;
  --info: #38bdf8;
  --teal: #2dd4bf;

  --radius: 14px;
  --blur: 14px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
