#nbm-cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483647;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    /* Initially hidden */

    /* Center "GO" text */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 0;
    /* Helps with vertical centering */
    text-align: center;
}

#nbm-cursor-circle span {
    mix-blend-mode: difference;
    display: block;
}

.nbm-center-spot {
    background-color: #ffffff;
    border-radius: 50%;
    display: none;
}

body.nbm-cursor-hidden,
body.nbm-cursor-hidden * {
    cursor: none !important;
}

#nbm-cursor-circle.nbm-has-border {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Effect: Invert */
#nbm-cursor-circle.nbm-effect-invert {
    backdrop-filter: invert(1);
    -webkit-backdrop-filter: invert(1);
}

/* Effect: Grayscale */
#nbm-cursor-circle.nbm-effect-grayscale {
    backdrop-filter: grayscale(1);
    -webkit-backdrop-filter: grayscale(1);
}

/* Hide on mobile and tablets */
@media (max-width: 1024px) or (pointer: coarse) {
    #nbm-cursor-circle {
        display: none !important;
    }
}