/* Animações gerais */
@keyframes aura {
    0% { box-shadow: 0 0 5px rgba(249, 202, 36, 0.5); }
    50% { box-shadow: 0 0 20px rgba(249, 202, 36, 0.8); }
    100% { box-shadow: 0 0 5px rgba(249, 202, 36, 0.5); }
}

.animate-aura {
    animation: aura 3s infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Animações específicas para elementos */
.main-title {
    animation: fadeInDown 1s ease-out, pulse 2s infinite 1s;
}

.btn-explore:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Efeito de Nen nos badges */
.badge.bg-enhancer {
    animation: aura 3s infinite, pulse 2s infinite;
}

/* Transições suaves */
.character-card, .wallpaper-card, .nen-type-card {
    transition: all 0.3s ease;
}

/* Animação de loading */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    border: 5px solid rgba(249, 202, 36, 0.3);
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}