:root {
  --bg: #0A0A0A;
  --code-bg: #f6f8fa;
  --surface: #131313;
  --surface-2: #1A1A1A;
  --surface-3: #222222;
  --line: #262626;
  --line-bright: #333333;
  --text: #EDEDED;
  --text-dim: #A1A1A1;
  --text-faint: #525252;
  --accent: #00DC82;
  --accent-dim: #00A862;
  --accent-glow: rgba(0, 220, 130, 0.15);
  --warn: #FFB000;
  --warn-glow: rgba(255, 176, 0, 0.18);
  --danger: #FF4747;
  --max-width: 900px;
  --radius: 4px;
  --radius-sm: 2px;
  --sidebar-w: 360px;
  --sidebar-gap: 16px;
  --sidebar-offset: 392px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

hr {
  border-top: 3px solid #fff;
}
