/* Qore Custom Cursor Styles */
/* Unique class names to prevent conflicts with existing styles */

/* Hide default cursor when custom cursor is active */
.qore-cursor-active {
    cursor: none !important;
}

/* Custom Cursor Wrapper */
.qore-cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

/* Cursor Dot */
.qore-cursor-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* Cursor Corners */
.qore-cursor-corner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    will-change: transform;
}

/* Corner positions */
.qore-corner-tl {
    transform: translate(-150%, -150%);
    border-right: none;
    border-bottom: none;
}

.qore-corner-tr {
    transform: translate(50%, -150%);
    border-left: none;
    border-bottom: none;
}

.qore-corner-br {
    transform: translate(50%, 50%);
    border-left: none;
    border-top: none;
}

.qore-corner-bl {
    transform: translate(-150%, 50%);
    border-right: none;
    border-top: none;
}

/* Hover target styles - add this class to elements you want the cursor to interact with */
.qore-cursor-target {
    cursor: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .qore-cursor-wrapper {
        display: none;
    }
    
    .qore-cursor-active {
        cursor: auto !important;
    }
    
    .qore-cursor-target {
        cursor: pointer !important;
    }
}
