
        body { margin: 0; overflow: hidden; }
        canvas { display: block; }


    body {
    touch-action: none;
}


.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
    color: rgb(230, 54, 54);
    font-size: 24px;
}

#hotspots-container {
    position: fixed; /* 🔥 change from absolute */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
}

.hotspot-icon {
    position: absolute;
    background: #ffffffd2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
}
.dropdown-toggle::after {
    display: none !important;
}
#fadeOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 999;
}