@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);
background: linear-gradient(135deg, rgba(0, 21, 36, 0.9), rgba(32, 58, 67, 0.9));
  padding: 30px 0;
}

/*  Map Styling  */
#map {

    border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  width: 90%;
  height: 600px;
  margin: auto;
}
/*  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);
}
/* Landing Section Styling */
#landing {
  position: relative;
  height: 100vh;
  width: 100%;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 2rem;
  overflow: hidden;
  z-index: 5;
}

.landing-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  padding: 30px;
  max-width: 600px;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out;
}

.landing-card h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  margin-bottom: 16px;
  font-size: 26px;
}

.landing-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.landing-card li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

#scrollBtn {
  background: #00ffff;
  color: #0a0a19;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

#scrollBtn:hover {
  background: #00bdbd;
  color: #ffffff;
}

.contact-card {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  max-width: 320px;
  background: rgba(10, 10, 25, 0.85);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
  .contact-card {
    bottom: 20px;
    right: 20px;
    max-width: 90%;
  }
}
/* Contact Us Toggle Button */
.contact-toggle-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00ffff;
  color: #0a0a19;
  border: none;
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s ease;
}

.contact-toggle-btn:hover {
  background: #00bdbd;
  color: #ffffff;
}

/* Contact Form Playcard */
.contact-form-card {
  position: fixed;
  bottom: 90px;
  right: 30px;
  max-width: 320px;
  background: rgba(10, 10, 25, 0.92);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 20px;
  z-index: 1000;
  animation: fadeInUp 0.6s ease-out;
  backdrop-filter: blur(14px);
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin: 10px 0;
  font-family: 'Outfit', sans-serif;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: 2px solid #00ffff;
  background-color: rgba(0, 255, 255, 0.05);
}

.contact-form-card label {
  font-size: 14px;
  color: #00ffff;
}

#contact-section {
  padding: 20px;
  margin: 40px auto;
  max-width: 600px;
}

#contact-form input,
#contact-form textarea {
  width: 90%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

#contact-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  background: #4caf50;
  color: white;
  cursor: pointer;
}

#contact-form button:hover {
  background: #45a049;
}



