/* ============================================================
   Base — reset, tipografi, scrollbar
   ============================================================ */

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss03';
}

button {
  font-family: inherit;
  cursor: pointer;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent-2); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
  background: #d8dbe1;
  border-radius: 5px;
  border: 2px solid var(--surface);
}
::-webkit-scrollbar-thumb:hover { background: #c5c9d1; }
::-webkit-scrollbar-track { background: transparent; }
