body {
    cursor: none;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: white; /* Se invertirá gracias al mix-blend-mode */
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    /* Este es el truco de magia */
    mix-blend-mode: difference;
    transition: transform 0.3s ease-out;
}

/* Estado cuando pasas sobre un link */
.cursor-dot.is-hovering {
    transform: scale(3.5);
}