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

:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-2: #111111;
  --border: #1a1a1a;
  --border-bright: #333333;
  --text: #cccccc;
  --text-muted: #666666;
  --text-bright: #ffffff;
  --yellow: #ffcc00;
  --yellow-dim: #aa8800;
  --red: #ff3333;
  --red-dim: #aa2222;
  --green: #33ff33;
  --mono: 'JetBrains Mono', 'Fira Code', 'Source Code Pro', 'Cascadia Code', 'SF Mono', 'Consolas', monospace;
}

html {
  height: 100%;
}

body {
  font-family: var(--mono);
  background: var(--bg);
  color: var(--text);
  height: 100%;
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border-bright);
}
