/* Masquer le curseur système par défaut sur Desktop uniquement */
@media (min-width: 981px) {
    body, a, button, input, textarea, select {
        cursor: none !important;
    }
}

/* Le Point Central */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--cursor-dot-color); /* Dynamique */
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

/* Le Cercle Extérieur (Outline) */
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--cursor-outline-color); /* Dynamique */
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, opacity 0.3s;
    opacity: 0;
}

/* État Hover (Agrandissement) */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: var(--cursor-hover-bg); /* Dynamique */
    border-color: transparent;
}

body.hovering .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
}