/* Effet Glow sur texte - STABLE */
.text-glow {
    text-shadow:
        0 0 10px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2);
}

/* Animation pulse douce (optionnelle) */
.text-glow-pulse {
    text-shadow:
        0 0 10px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2);
    animation: glow-pulse-soft 3s ease-in-out infinite;
}

@keyframes glow-pulse-soft {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(0, 212, 255, 0.5),
            0 0 20px rgba(0, 212, 255, 0.3),
            0 0 30px rgba(0, 212, 255, 0.2);
    }
    50% {
        text-shadow:
            0 0 15px rgba(0, 212, 255, 0.6),
            0 0 25px rgba(0, 212, 255, 0.4),
            0 0 35px rgba(0, 212, 255, 0.3);
    }
}

/* Float animation */
.float {
    animation: float 6s ease-in-out infinite;
}

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