/* Animations */
@keyframes profileGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(236, 72, 153, 0.3); 
    }
    50% { 
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.7), 0 0 60px rgba(236, 72, 153, 0.5); 
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-profile-glow { 
    animation: profileGlow 3s ease-in-out infinite; 
}

.animate-float { 
    animation: float 3s ease-in-out infinite; 
}

.animate-slide-in { 
    animation: slideInDown 0.6s ease-out; 
}