.aurea-world-map {
  --aurea-blue: #06121b;
  --aurea-gold: #DCC08A;
  --aurea-gold-2: #DCC08A;
  width: 100%;
  max-width: 100%;
  color: #fff;
}

.aurea-world-map__stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: var(--aurea-map-height, 620px);
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  background: #071521;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .42), 0 28px 70px rgba(0, 0, 0, .28);
}

.aurea-world-map__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #071521;
}

.aurea-world-map__bg > ymaps,
.aurea-world-map__bg iframe,
.aurea-world-map__bg canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}

.aurea-country-marker {
  position: relative;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #fff !important;
  outline: none;
  pointer-events: auto;
}

.aurea-country-marker__dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--aurea-gold);
  border: 2px solid rgba(255, 255, 255, .95);
  box-shadow: 0 0 0 8px rgba(220, 192, 138, .15), 0 0 30px rgba(220, 192, 138, .95);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.aurea-country-marker__label {
  position: absolute;
  left: 28px;
  top: -14px;
  min-width: max-content;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(5, 14, 22, .94);
  border: 1px solid rgba(220, 192, 138, .7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .32);
  font-size: 14px;
  line-height: 1.1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}

.aurea-country-marker:hover,
.aurea-country-marker:focus { z-index: 20; }

.aurea-country-marker:hover .aurea-country-marker__dot,
.aurea-country-marker:focus .aurea-country-marker__dot {
  transform: scale(1.26);
  background: var(--aurea-gold-2);
  box-shadow: 0 0 0 12px rgba(220, 192, 138, .18), 0 0 42px rgba(220, 192, 138, 1);
}

.aurea-country-marker:hover .aurea-country-marker__label,
.aurea-country-marker:focus .aurea-country-marker__label {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.aurea-world-map__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.aurea-country-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(6, 18, 27, .9);
  border: 1px solid rgba(220, 192, 138, .55);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.aurea-country-filter:hover,
.aurea-country-filter:focus {
  background: rgba(220, 192, 138, .22);
  border-color: rgba(220, 192, 138, .95);
  transform: translateY(-1px);
}

.aurea-country-filter--no-coords { opacity: .62; }

.aurea-world-map__empty {
  position: absolute;
  z-index: 10;
  left: 24px;
  top: 24px;
  right: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(5, 14, 22, .86);
  border: 1px solid rgba(220, 192, 138, .55);
  font-size: 15px;
}

@media (max-width: 767px) {
  .aurea-world-map__stage {
    height: min(var(--aurea-map-height, 620px), 430px);
    border-radius: 18px;
  }
  .aurea-country-marker__dot { width: 15px; height: 15px; }
  .aurea-country-marker__label { font-size: 12px; left: 22px; }
  .aurea-world-map__filters { gap: 8px; }
  .aurea-country-filter { min-height: 36px; padding: 9px 12px; font-size: 13px; }
}
