/* ==========================================
   PROFESSIONAL CURSOR STYLES
   ========================================== */

/* Hide default cursor */
body {
    cursor: none;
}

/* Main Cursor Circle */
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, transform 0.1s;
}

/* Trailing Dot (Optional, kept minimal) */
.cursor-dot {
    display: none;
    /* Hiding the dot for a cleaner look */
}

/* Hover State - Expands and becomes a spotlight */
body.hovering .cursor-outline {
    width: 50px;
    height: 50px;
    background-color: white;
    mix-blend-mode: difference;
}

/* Text Selection Cursor */
body.text-select .cursor-outline {
    width: 4px;
    height: 24px;
    border-radius: 2px;
}

/* Hide on mobile/touch devices */
@media (max-width: 768px) {
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}