/* Beacon marker styles */
.war-beacon-marker {
  position: relative;
}

.war-beacon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.4);
  animation: war-beacon-pulse 2s ease-in-out infinite;
  z-index: 0;
}

.war-beacon-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 20px;
  z-index: 1;
}

.war-beacon-attack .war-beacon-icon {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.war-beacon-defense .war-beacon-icon {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.war-beacon-scout .war-beacon-icon {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.war-beacon-sos .war-beacon-icon {
  background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
  animation: war-beacon-sos-blink 1s ease-in-out infinite;
}

@keyframes war-beacon-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes war-beacon-sos-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/* Beacon popup styles */
.war-beacon-popup {
  min-width: 200px;
}
.war-beacon-popup h6 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: #ffc107;
}
.war-beacon-popup p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

/*# sourceMappingURL=beacon.css.map */