.ccp-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.ccp-cursor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}


/* Hide on mobile if disabled */
@media (max-width: 768px) {
    .ccp-cursor {
        display: none !important;
    }
}

.ccp-cursor-tracker {
    display: none; /* Hidden but still functional */
}

/* Make sure interactive elements don't interfere */
a, button, input, [role="button"] {
    position: relative;
    display: inline-block;
    z-index: 1;
}