@keyframes zdm-game-share-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.04);
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, 0.95),
            0 0 0 6px rgba(224, 221, 40, 0.75);
        filter: brightness(1.08);
    }
}

.zdm-game-share-cta:not(:disabled) {
    position: relative;
    z-index: 1;
    animation: zdm-game-share-pulse 1.2s ease-in-out 4;
    transform-origin: center;
}

.zdm-game-share-cta:not(:disabled):active {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .zdm-game-share-cta:not(:disabled) {
        animation: none;
        outline: 3px solid rgba(224, 221, 40, 0.75);
        outline-offset: 3px;
    }
}
