/* Nascondi il cursore di default su desktop */
@media (pointer: fine) {
    body, a, button, .list-row, .work-card, .logo, .more-works-link {
        cursor: none !important;
    }
}

/* Punto centrale del cursore */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    will-change: transform;
}

/* Cerchio esterno (scia fluida) */
.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid white;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 99998;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    will-change: transform, width, height, background-color, border-color;
}

/* Effetti Hover */
.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: transparent;
}

.cursor-dot.hover {
    width: 0;
    height: 0;
    opacity: 0;
}

iframe { cursor: auto !important; }
