body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
  color: white;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("background_comingsoon.jpg") no-repeat center center/cover;
  z-index: -1;
}

.coming-soon {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  padding: 20px;
}

.glow {
  /* Text Coming Soon */
  font-size: 84px;
  animation: glowMove 3s infinite ease-in-out;
  text-shadow: 0 0 10px #00e6e6, 0 0 20px #00e6e6, 0 0 30px #00e6e6,
    0 0 40px #00ffff, 0 0 70px #00ffff, 0 0 80px #00ffff;
}

@keyframes glowMove {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

p {
  font-size: 30px;
  color: #ccc;
  margin-top: -30px;
}

#countdown {
  margin-top: -10px;
  font-size: 18px;
  color: #ffd700;
}

.back-button {
  margin-top: 30px;
  padding: 10px 24px;
  font-size: 1rem;
  background-color: rgba(0, 255, 255, 0.2);
  color: white;
  border: 1px solid #00ffff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-button:hover {
  background-color: rgba(0, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .glow {
    font-size: 2.5rem;
  }

  p,
  #countdown {
    font-size: 1rem;
    margin-top: -10px;
  }

  .back-button {
    font-size: 0.95rem;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .glow {
    font-size: 2rem;
  }

  p,
  #countdown {
    font-size: 0.95rem;
  }

  .back-button {
    font-size: 0.9rem;
    padding: 7px 16px;
  }
}
