@font-face {
  font-family: 'FinalFrontier';
  src: url('../../Final_Frontier.ttf') format('truetype');
}

body {
  margin: 0;
  background-color: black;
  font-family: 'FinalFrontier', sans-serif;
  overflow: auto;
}

.destination {
  position: absolute;
  top: 100px;
  left: 100px;
  color: #00cfff;
  text-shadow: 0 0 5px #00ffff;
  font-size: 18px;
}

#map-container {
  position: relative;
  width: 2000px;
  height: 1500px;
  background-image: url('bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: auto;
}
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 5px #00cfff, 0 0 10px #00ffff;
    color: #00ffff;
  }
  50% {
    text-shadow: 0 0 15px #00ffff, 0 0 30px #00cfff;
    color: #00cfff;
  }
  100% {
    text-shadow: 0 0 5px #00cfff, 0 0 10px #00ffff;
    color: #00ffff;
  }
}

#map-title {
  font-family: 'FinalFrontier', sans-serif;
  text-align: center;
  font-size: 36px;
  margin: 20px 0;
  animation: glowPulse 2.5s infinite;
}
@keyframes warpPulse {
  0% {
    box-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px #00e3ff, 0 0 30px #00e3ff;
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff;
    transform: scale(1);
  }
}

.destination.warping {
  animation: warpPulse 2s infinite ease-in-out;
  border-radius: 50%;
  padding: 8px;
}

@keyframes risaGlow {
  0% {
    box-shadow: 0 0 5px #ffe29e, 0 0 10px #ffd68c;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px #ffc45a, 0 0 30px #ffb84d;
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 5px #ffe29e, 0 0 10px #ffd68c;
    transform: scale(1);
  }
}

.destination.risa-glow {
  animation: risaGlow 2.5s infinite ease-in-out;
  border-radius: 12px;
  padding: 6px;
}