* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

svg {
  width: 100%;
  height: auto;
  max-width: 100%;
}

svg a {
  pointer-events: none;
  cursor: default;
}

svg path {
  fill: #334155;
  stroke: #475569;
  stroke-width: 0.5;
  transition: all 0.3s ease;
  pointer-events: all;
}

svg path:hover {
  fill: rgb(3, 106, 162);
  stroke: rgb(3, 106, 162);
  cursor: default;
}

/* Yanıp sönen lokasyon noktaları */
.location-dot {
  fill: #f59e0b;
  stroke: #fbbf24;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px #f59e0b);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
