::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0F0F0F;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37 0%, #B8961A 100%);
    border-radius: 10px;
    border: 2px solid #0F0F0F;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #E6C158 0%, #D4AF37 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #C9A432 0%, #A68515 100%);
}

::-webkit-scrollbar-corner {
    background: #0F0F0F;
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #0F0F0F;
}


*:hover {
    scrollbar-color: #E6C158 #0F0F0F;
}


.thin-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.thin-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37 0%, #B8961A 100%);
    border-radius: 4px;
}

.light-scrollbar::-webkit-scrollbar-track {
    background: #F5F5F5;
}

.light-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37 0%, #B8961A 100%);
    border: 2px solid #F5F5F5;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    ::-webkit-scrollbar-thumb {
        border-width: 1px;
    }
}

.scrollbar-glow::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37 0%, #B8961A 100%);
    border-radius: 10px;
    border: 2px solid #0F0F0F;
    box-shadow: 
        inset 0 0 6px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
}

.scrollbar-glow::-webkit-scrollbar-thumb:hover {
    box-shadow: 
        inset 0 0 6px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;  
}