/* ========================================
   CUSTOM CURSOR (FUTURISTIC EFFECT)
   ======================================== */

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(74, 131, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, border-color 0.2s ease;
    mix-blend-mode: difference;
}

/* Hide default cursor on desktop */
@media (min-width: 1024px) {
    body {
        cursor: none;
    }
    
    a, button, input, textarea, select {
        cursor: none;
    }
}

/* Show default cursor on mobile/tablet */
@media (max-width: 1023px) {
    .custom-cursor {
        display: none;
    }
}
