@keyframes hotspot-pop-in {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.hotspot-wrapper {
    position: relative !important;
    display: block;
    width: 100%;
}

.hotspot-wrapper:hover .hotspot-dot {
    visibility: visible;
    animation: hotspot-pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hotspot-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    visibility: hidden;
    text-decoration: none !important;
}

.hotspot-dot:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: hotspot-pulse 2s infinite;
}

.hotspot-dot:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.2);
}

.hotspot-tooltip {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    width: 180px;
    font-size: 13px;
    line-height: 1.4;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 11;
}

.hotspot-tooltip h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.hotspot-tooltip p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.hotspot-dot:hover .hotspot-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 40px;
}

@keyframes hotspot-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
