/* Cursor Follower Styles */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 230px;
    /* Adjust size as needed */
    height: auto;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    /* Hidden initially */
    transition: opacity 0.5s ease;
    mix-blend-mode: difference;
}

/* Ensure it sits on top of everything but doesn't block clicks */
/* Ensure it sits on top of everything but doesn't block clicks */
body.using-mobile-browser #cursor {
    display: block;
    /* Show on mobile */
}