/* CSS pour le curseur personnalisé */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
    /* Mode jour par défaut - rond noir */
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Mode nuit - rond blanc */
[data-theme="dark"] .cursor-follower {
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Effet de grossissement au survol */
.cursor-follower.hover {
    width: 40px;
    height: 40px;
}

/* Masquer le curseur sur les appareils mobiles et tablettes */
@media screen and (max-width: 1023px) {
    .cursor-follower {
        display: none;
    }
} 