/* ================================================================
   EVORIA — Base Styles v3
   Reset · Typography · Global defaults
   ================================================================ */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-y: scroll;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    min-height: 100vh;
}

/* ── Links ─────────────────────────────────────────────────────── */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

/* ── Code ──────────────────────────────────────────────────────── */
code,
pre,
kbd {
    font-family: var(--font-mono);
    font-size: 0.9em;
}

/* ── Selection ─────────────────────────────────────────────────── */
::selection {
    background: rgba(255, 200, 0, .2);
    color: var(--text);
}

/* ── Scrollbar — minimal gold-tint ─────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 200, 0, .08);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 200, 0, .16);
}