*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; -webkit-text-size-adjust: 100%; }
body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-ui);
  background: var(--c-bg);
  background-image: var(--bg-abyss);
  color: var(--c-text);
}
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-surface-light); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent); }
