.world-map-wrapper {
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Map takes all available space above the ad */
.map-ad-layout {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ad block — fixed height below map, centred */
.map-ad-block {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.world-map-image-container {
  position: relative;
  width: 100%;
  max-width: min(740px, 100%, calc(100vh - 220px));
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.world-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* Hotspots — invisible clickable zones over the map */
.map-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
}

.map-hotspot--active {
  pointer-events: auto;
  cursor: pointer;
}

.map-hotspot--active:hover {
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25) 0%, transparent 70%);
}

/* hotspot is now the <a> directly — no inner link needed */

/* Inactive hotspots show a subtle "coming soon" cursor */
.map-hotspot--inactive:hover {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: auto;
  cursor: not-allowed;
}

@media (min-width: 900px) {
  .world-map-image-container {
    max-width: min(820px, 100%);
    width: auto;
    height: 100%;
  }
  .world-map-image {
    width: auto;
    height: 100%;
    max-width: 100%;
  }
  .map-hotspot { width: 100px; height: 100px; }
}
