@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

/*  Universal Reset & Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
  background: linear-gradient(to right, #2c5364, #203a43, #0f2027);
}
/*  Entry Animation  */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* No Scrollbar  */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Responsive  */
@media (max-width: 600px) {
  .card {
    width: 90%;
    font-size: 13px;
  }
}
/* Fade-out animation */
.fade-out {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Map Background   */
.map-background {
  height: 100vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 90px rgba(0, 255, 255, 0.05);
}

/*  Map Styling  */
#map {
  height: 90vh;
  width: 90%;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
  z-index: 1;
}
/*  Loader Styling */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #0a0a19;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.456s ease;
}

.loader-text {
  font-size: 28px;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  animation: neonPulse 1.5s infinite ease-in-out;
}

/* Loader Animation */
@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #00ffff;
  }
  50% {
    text-shadow: 0 0 15px #00ffff, 0 0 25px #00ffff, 0 0 30px #00ffff;
  }
}

/*  Playcard Styling  */
.card {
  width: 300px;
  background: rgba(10, 10, 25, 0.85);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(14px);
  color: #ffffff;
  padding: 20px;
  animation: fadeInUp 0.6s ease-out;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  transform: translateY(-4px);
}

.card h3 {
  color: #00ffff;
  font-size: 22px;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0;
}

.card .btn {
  background: #00ffff;
  color: #0a0a19;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.card .btn:hover {
  background: #00bdbd;
  color: #ffffff;
}

.card .flag,
.card .icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

