/* BcMovie Custom Cursor */
.bcmovie-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    pointer-events: none;
    z-index: 2147483647;
    transform: translate3d(-100px, -100px, 0);
    opacity: 0;
    transition: opacity .2s ease;
    will-change: transform;
}

.bcmovie-cursor.is-visible {
    opacity: 1;
}

.bcmovie-cursor-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #b45cff;
    box-shadow:
        0 0 8px rgba(180, 92, 255, .95),
        0 0 18px rgba(130, 36, 227, .85);
}

.bcmovie-cursor-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(130, 36, 227, .9);
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(130, 36, 227, .55),
        inset 0 0 8px rgba(180, 92, 255, .18);
    transform: scale(1);
    transition:
        transform .22s ease,
        border-color .22s ease,
        background-color .22s ease,
        box-shadow .22s ease;
}

.bcmovie-cursor.is-hover .bcmovie-cursor-ring {
    transform: scale(1.45);
    border-color: rgba(180, 92, 255, 1);
    background: rgba(130, 36, 227, .10);
    box-shadow:
        0 0 18px rgba(130, 36, 227, .75),
        0 0 32px rgba(130, 36, 227, .25);
}

.bcmovie-cursor.is-clicking .bcmovie-cursor-ring {
    transform: scale(.82);
}

html.bcmovie-custom-cursor-active,
html.bcmovie-custom-cursor-active body,
html.bcmovie-custom-cursor-active a,
html.bcmovie-custom-cursor-active button,
html.bcmovie-custom-cursor-active input,
html.bcmovie-custom-cursor-active textarea,
html.bcmovie-custom-cursor-active select {
    cursor: none !important;
}

/* Restore the native cursor on touch devices. */
@media (hover: none), (pointer: coarse) {
    .bcmovie-cursor {
        display: none !important;
    }

    html.bcmovie-custom-cursor-active,
    html.bcmovie-custom-cursor-active body,
    html.bcmovie-custom-cursor-active a,
    html.bcmovie-custom-cursor-active button,
    html.bcmovie-custom-cursor-active input,
    html.bcmovie-custom-cursor-active textarea,
    html.bcmovie-custom-cursor-active select {
        cursor: auto !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bcmovie-cursor-ring {
        transition: none;
    }
}
