/* ============================================================
   BASE — Reset, scrollbar, body defaults
   ============================================================ */

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

html {
  height: 100%;
}

body {
  height: 100%;
  background:  var(--bg-0);
  color:       var(--text-primary);
  font-family: var(--font-mono);
  font-size:   13px;
  line-height: 1.6;
  overflow:    hidden;
  transition:  background 0.3s, color 0.3s;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: var(--bg-1); }
::-webkit-scrollbar-thumb  { background: var(--bg-4); border-radius: 3px; }
