* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: url("./map.jpg") no-repeat center center / cover;
  color: white;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.6);
  z-index: -1;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 2px;
  color: #00e1ff;
}

.logo span {
  display: block;
  font-size: 25px;
  letter-spacing: 4px;
  color: #00e1ff;
}

.content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  font-size: 30px;
  font-weight: bold;
}

.circle p {
  font-size: 15px;
  margin-top: 4px;
  color: #ffffff;
  font-weight: 400;
}

.red {
  border-color: #e74c3c;
}
.purple {
  border-color: #9b59b6;
}
.blue {
  border-color: #3498db;
}
.cyan {
  border-color: #1abc9c;
}

/* Intro Animation */
#intro-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  font-size: 90px;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: hideIntro 6s ease-in-out forwards;
}

@keyframes hideIntro {
  0%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.animated-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.animated-line {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.letter {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(270deg, #ff3c3c, #ffbb00, #00e1ff, #0099ff, #ff3c3c);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(100px);
  opacity: 0;
  animation: slideLetterIn 0.5s forwards, rainbowFlow 8s linear infinite;
}

@keyframes slideLetterIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rainbowFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Rotating Text Gradient + Animation */
.gradient-animated-text {
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(270deg, white);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowFlow 5s ease infinite, fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  20% {
    opacity: 1;
    transform: translateY(0px);
  }
  80% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .animated-text-wrapper {
    flex-direction: column;
  }
  .letter {
    font-size: 40px;
  }
  .logo {
    font-size: 60px;
  }
  .logo span {
    font-size: 22px;
    margin-top: 8px;
  }
  .content h1 {
    font-size: 40px;
  }
  .tagline {
    font-size: 35px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
  }
  .content h2 {
    font-size: 16px;
  }
  .circle {
    width: 100px;
    height: 100px;
    font-size: 24px;
  }
  .gradient-animated-text {
    font-size: 36px;
  }
}
.tagline {
font-size: 35px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
}
