.hero-globe-wrap {
  position: relative;
  width: min(100%, 460px);
  height: clamp(320px, 44vw, 520px);
  margin-left: auto;
}

#hero-globe-canvas,
#hero-globe-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

#hero-globe-canvas {
  position: relative;
  z-index: 12;
  border-radius: 12px;
  overflow: hidden;
}

#hero-globe-labels {
  position: absolute;
  inset: 0;
  z-index: 13;
  pointer-events: auto;
}

.hero-globe-wrap .marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00bfa6;
  box-shadow: 0 0 14px rgba(0, 191, 166, 0.9);
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}

.hero-globe-wrap .marker .marker-tooltip {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(5, 10, 10, 0.92);
  border: 1px solid rgba(0, 191, 166, 0.65);
  border-radius: 8px;
  color: #00bfa6;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero-globe-wrap .marker:hover .marker-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991.98px) {
  .hero-globe-wrap {
    display: none;
  }
}
