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



.pulse-highlight {
    animation: pulse 1.5s ease-in-out infinite;
    background-color: rgba(0, 255, 0, 0.5) !important;
}

.tile-highlight {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pulse-button {
    animation: pulse 2s infinite;
}

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

/* Add to existing animations.css */
video {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
}

video::-webkit-media-controls-enclosure {
    border-radius: 0;
    border: none;
}

video::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.7);
}
