/* Fuchsjagd Animationen */

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 60px #ff0000;
        transform: scale(1.05);
    }
    100% {
        text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hilfsklasse für animierte Elemente */
.animate-glow {
    animation: glow 0.8s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 0.5s ease-in-out infinite;
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-in;
}
