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

html, body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-base);
    min-height: 100vh;
    font-size: 15px;
    line-height: 1.5;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
* { scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent; }
