/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ── Selection ── */
::selection {
    background: var(--red);
    color: var(--white);
}

/* ── Smooth scrolling ── */
html {
    scroll-behavior: smooth;
}

/* ── Focus outline ── */
:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}
