@keyframes animate-text-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

@keyframes animate-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes animate-social-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(6deg);
    }
}

@keyframes animate-spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-text-glow {
    animation: animate-text-glow 2s ease-in-out infinite;
}

.animate-float {
    animation: animate-float 3s ease-in-out infinite;
}

.animate-social-float {
    animation: animate-social-float 2s ease-in-out infinite;
}

.animate-spin-slow {
    animation: animate-spin-slow 8s linear infinite;
}