body, a, button, input, textarea, select, .elementor-button, [role="button"] {
    cursor: none !important;
}

.custom-cursor-67a099c7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    will-change: transform;
    /* This ensures dynamic visibility: it inverts the color based on the background */
    mix-blend-mode: difference;
}

/* Hover state for interactive elements */
.custom-cursor-67a099c7.is-hovering {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hide custom cursor on touch devices where it's not needed */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor-67a099c7 {
        display: none !important;
    }
    
    /* Restore native cursor on touch devices */
    body, a, button, input, textarea, select, .elementor-button, [role="button"] {
        cursor: auto !important;
    }
}