/* Efeito de clique: partículas no site inteiro (vermelho Blaze / verde Jonbet) */
.click-particles-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 99999;
}
.click-particle {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
    border-radius: 50%;
    opacity: 1;
    transform: translate(0, 0);
}
.click-particles-wrap--red .click-particle {
    background: rgba(220, 53, 69, 0.95);
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.7);
}
.click-particles-wrap--green .click-particle {
    background: rgba(11, 214, 30, 0.95);
    box-shadow: 0 0 8px rgba(11, 214, 30, 0.7);
}
.click-particles-active .click-particle {
    animation: click-particle-burst 0.5s ease-out forwards;
}
@keyframes click-particle-burst {
    to {
        transform: translate(var(--tx, 0), var(--ty, 0));
        opacity: 0;
    }
}
