/* Explain: Base reset and typography defaults */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
    /* Proportional scaling on mobile viewports below max-w-md (448px) */
    font-size: min(3.57vw, 16px);
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Elegant Scrollbar for desktop (if viewed there) */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--background-color);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}
