/* Exos AI BSS — base overrides layered on top of Tailwind CDN */
:root {
    color-scheme: dark;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(212, 168, 87, 0.3);
}

/* Thin dark scrollbars */
* {
    scrollbar-width: thin;
    scrollbar-color: #2a2a3a #0f0f17;
}
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
*::-webkit-scrollbar-track {
    background: #0f0f17;
}
*::-webkit-scrollbar-thumb {
    background: #2a2a3a;
    border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
    background: #3a3a4a;
}

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #d4a857;
    outline-offset: 2px;
}
