 
:root {
    --marker-color: #0e2385;
    --marker-core: #484301;
    --pulse-duration: 3.2s;
    --tooltip-text: #1f2a44;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.world-map {
    position: relative;
    width: 100%;
    max-width: 2048px;
    margin: 0 auto;
    overflow: visible;
}

.world-map__image {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    z-index: 5;
}

.map-marker__core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: var(--marker-color);
    border: 2px solid #fff;
    box-shadow:
        0 0 0 1px rgba(148,124,0,.18),
        0 0 12px rgba(251,236,107,.72);
    z-index: 3;
}

.map-marker::before,
.map-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1.5px solid var(--marker-color);
    transform: translate(-50%, -50%) scale(.55);
    opacity: 0;
    pointer-events: none;
    animation: mapPulse var(--pulse-duration) cubic-bezier(.22,.61,.36,1) infinite;
	z-index: 1
}

.map-marker::after {
    animation-delay: calc(var(--pulse-duration) / 2);	z-index: 1
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(.55);
        opacity: .62;
    }
    70% {
        opacity: .12;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.map-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translate(-50%, 6px) scale(.96);
    padding: 6px 9px;
    background: rgba(255,255,255,.97);
    color: var(--tooltip-text);
    border: 1px solid rgba(31,42,68,.07);
    border-radius: 6px;
    box-shadow: 0 5px 18px rgba(31,42,68,.10);
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .2s ease,
        transform .25s cubic-bezier(.22,1,.36,1),
        visibility .2s ease;
 z-index: 99999
}

.map-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 7px;
    height: 7px;
    background: #fff;
    border-right: 1px solid rgba(31,42,68,.07);
    border-bottom: 1px solid rgba(31,42,68,.07);
    transform: translate(-50%, -4px) rotate(45deg);
	z-index: 99999
}

.map-marker:hover .map-tooltip,
.map-marker:focus-visible .map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);z-index: 99999
}

.map-marker:hover .map-marker__core {
    transform: translate(-50%, -50%) scale(1.18);
    transition: transform .22s ease;
}

@media (max-width: 768px) {
    .map-marker {
        width: 11px;
        height: 11px;
    }

    .map-marker__core {
        width: 8px;
        height: 8px;
    }

    .map-marker::before,
    .map-marker::after {
        width: 11px;
        height: 11px;
    }

    .map-tooltip {
        font-size: 12px;
        padding: 5px 7px;
		z-index: 99999
    }
}

@media (prefers-reduced-motion: reduce) {
    .map-marker::before,
    .map-marker::after {
        animation: none;
        opacity: .25;
        transform: translate(-50%, -50%) scale(1.8);
    }
}
 