body {
  background: linear-gradient(-45deg, #0b1120, #1f2a40, #00bfff, #0b1120);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Heading */
h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

/* Launch Date */
.launch-date {
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Countdown timer */
.countdown {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-top: 10px;
  color: #ffffff;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Subtitle */
p {
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* Loader wrapper */
.loader-wrapper {
  margin-top: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

/* Loader spinner */
.loader {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* Loading text */
.loading-text {
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.3s forwards;
  margin-top: 10px;
}

/* Company name */
.company-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.6s forwards;
  margin-top: 50px;
}

/* Creator line */
.creator {
  text-decoration: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.9s forwards;
  letter-spacing: 0.5px;
}
.creator:hover {
  color: #00bfff;
  text-shadow: 0 0 8px #00bfff;
  transition: 0.3s ease;
  cursor: default;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
