.map-simulator {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-card, #e2e8f0);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 480px;
  overflow: hidden;
  position: relative;
}
.map-grid {
  background-image: linear-gradient(var(--border-card, #e2e8f0) 1px, transparent 0),
                    linear-gradient(90deg, var(--border-card, #e2e8f0) 1px, transparent 0);
  background-size: 30px 30px;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.map-grid,
.map-topo {
  pointer-events: none;
  position: absolute;
}
.map-topo {
  background-color: var(--border-card, #e2e8f0);
  border: 1px dashed var(--border-card, #e2e8f0);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  height: 250px;
  width: 250px;
}
.topo-1 {
  left: 50px;
  top: 40px;
}
.topo-2 {
  bottom: 60px;
  height: 300px;
  right: 40px;
  width: 300px;
}
.map-pin {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: absolute;
  transition: all 0.3s ease;
  z-index: 100;
}
.map-pin.pin-active .map-pin-pulse {
  background-color: var(--moss, #3a7d52);
  box-shadow: 0 0 15px #fff;
}
.map-pin-pulse {
  background-color: var(--moss, #3a7d52);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--moss, #3a7d52);
  height: 14px;
  position: relative;
  width: 14px;
}
.map-pin-pulse:after {
  animation: pinPulse 2s infinite;
  background-color: var(--border-card, #e2e8f0);
  border-radius: 50%;
  content: "";
  height: 32px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
}
.map-pin-pulse.amber {
  background-color: var(--accent, #f59e0b);
  box-shadow: 0 0 10px var(--accent, #f59e0b);
}
.map-pin-pulse.amber:after {
  background-color: rgba(245, 158, 11, 0.25);
}
@keyframes pinPulse {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.3); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}
.map-pin-label {
  background-color: var(--bg-card, #fff);
  border: 1px solid var(--border-card, #e2e8f0);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  color: var(--text-main, #1a1209);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.35rem;
  padding: 0.25rem 0.6rem;
  white-space: nowrap;
}
