/*=============================================
=      Creative Image Hover Effects — CSS     =
=============================================*/

/* Particle effect: floating particles */
@keyframes particleFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
}

/* Hologram effect: vertical scan line */
@keyframes hologramScan {
    0% {
        top: 0%;
    }
    100% {
        top: 100%;
    }
}
