﻿/* Estilos Customizados & Efeitos Visuais */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
    }
    50% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.45);
    }
}

.unlocked-glow {
    animation: pulseGlow 2.5s infinite ease-in-out;
}

/* Transições suaves */
* {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilo do scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #020617;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
