/* Styles pour le compteur de fraudes */
.fraud-counter, .money-counter {
    position: relative;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.fraud-alert {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, rgba(239, 68, 68, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.fraud-pulse {
    animation: fraudPulse 0.5s ease-out;
}

@keyframes fraudPulse {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 0.9; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.1); }
}

.pulse-red {
    animation: pulseRed 2s ease-in-out infinite alternate;
}

@keyframes pulseRed {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 0.6;
    }
}

.pulse-opacity {
    animation: pulseOpacity 3s ease-in-out infinite;
}

@keyframes pulseOpacity {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.impact-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(239, 68, 68, 0.1);
    opacity: 0;
    animation: impactFlash 0.3s ease-out forwards;
    pointer-events: none;
}

@keyframes impactFlash {
    0% { opacity: 0.3; }
    100% { opacity: 0; }
}
