:root {
  /* Backgrounds */
  --bg:        #0F1117;
  --bg-1:      #13151F;
  --card:      #181B27;
  --card-hover:#1E2133;
  --border:    #242738;
  --border-2:  #2C3048;

  /* Text */
  --text-1: #EEF2FF;
  --text-2: #9BA3BE;
  --text-3: #545C7A;

  /* Brand */
  --accent:     #D97757;
  --accent-2:   #E8906D;
  --accent-dim: rgba(217, 119, 87, 0.15);

  /* Semantic */
  --green:      #4CAF82;
  --green-dim:  rgba(76, 175, 130, 0.15);
  --red:        #E05260;
  --red-dim:    rgba(224, 82, 96, 0.15);
  --yellow:     #F5A623;
  --yellow-dim: rgba(245, 166, 35, 0.15);
  --blue:       #5B8FFF;
  --blue-dim:   rgba(91, 143, 255, 0.15);
  --purple:     #9B6DFF;
  --purple-dim: rgba(155, 109, 255, 0.15);

  /* Layout */
  --sidebar-w: 220px;

  /* Spacing */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s5: 20px; --s6: 24px; --s7: 28px; --s8: 32px;

  /* Radius */
  --r1: 6px; --r2: 10px; --r3: 16px; --r4: 24px;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

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

html, body {
  height: 100%;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app { height: 100%; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }
