/* Custom CSS Extensions & Smooth Scrolling Polish */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a192f;
    color: #ffffff;
}

/* Custom scrollbar styling matching SportsValy branding */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a192f;
}

::-webkit-scrollbar-thumb {
    background: #0051ed;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6600;
}

/* Custom Hover Effects and Soft Gradients */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ff6600;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}