/* Force Custom Animated Cursor */

/* * Apply the animation directly to EVERY element. 
 * This is a more forceful approach that bypasses tricky CSS inheritance issues,
 * ensuring the animated cursor appears correctly on all elements, including links.
 * The performance impact for the 'cursor' property is negligible.
*/
* {
    animation: cursor_ani 1.5s infinite;
}

@keyframes cursor_ani {
    0% {
        cursor: url(https://applchu.art/wp-content/uploads/2024/12/applcursor_0000.png), auto;
    }
    14% {
        cursor: url(https://applchu.art/wp-content/uploads/2024/12/applcursor_0001.png), auto;
    }
    29% {
        cursor: url(https://applchu.art/wp-content/uploads/2024/12/applcursor_0002.png), auto;
    }
    43% {
        cursor: url(https://applchu.art/wp-content/uploads/2024/12/applcursor_0003.png), auto;
    }
    57% {
        cursor: url(https://applchu.art/wp-content/uploads/2024/12/applcursor_0004.png), auto;
    }
    71% {
        cursor: url(https://applchu.art/wp-content/uploads/2024/12/applcursor_0005-1.png), auto;
    }
    86% {
        cursor: url(https://applchu.art/wp-content/uploads/2024/12/applcursor_0006.png), auto;
    }
    100% {
        cursor: url(https://applchu.art/wp-content/uploads/2024/12/applcursor_0000.png), auto;
    }
}

