/* BFC Fight - Custom styles beyond Tailwind utilities */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar (optional, matches dark theme) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
    background: #e6252b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b81e23;
}