/* =========================
   DYNAMIC CURSOR STYLES
========================= */

/* Default: Hidden on Mobile/Tablet */
.cursor, 
.cursor-trail {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference; /* Ensures visibility on light/dark backgrounds */
}

/* Desktop Logic */
@media (min-width: 992px) {
    body {
        cursor: auto; /* Restore system cursor */
    }
}

.cursor {
    width: 10px;
    height: 10px;
    background-color: #fff;
}

.cursor-trail {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: opacity 0.3s ease;
    will-change: transform;
}