/**
 * Interactive Cursor Effect Styles
 */

/* Hide cursor on touch devices to avoid weird artifacts */
@media (hover: none) and (pointer: coarse) {
    .angie-cursor-follower {
        display: none !important;
    }
}

.angie-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--angie-cursor-size, 40px);
    height: var(--angie-cursor-size, 40px);
    background-color: var(--angie-cursor-color, #ffffff);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: var(--angie-cursor-blend-mode, difference);
    transform: translate(-50%, -50%);
    will-change: transform;
    /* Hardware acceleration */
    backface-visibility: hidden; 
    
    /* Initial state off-screen to avoid jump */
    opacity: 0; 
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.angie-cursor-follower.is-active {
    opacity: 1;
}

/* Hover effect on interactive elements */
.angie-cursor-follower.is-hovering {
    width: calc(var(--angie-cursor-size, 40px) * 1.5);
    height: calc(var(--angie-cursor-size, 40px) * 1.5);
    opacity: 0.8;
}
