body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.coming-soon-main {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.soon-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
}
.glow-heading {
  font-size: 3rem;
  color: #ff4c4c;
  text-shadow: 0 0 10px #ff4c4c, 0 0 20px #ff4c4c88;
  margin-bottom: 20px;
  animation: glowText 2s ease-in-out infinite alternate;
}
@keyframes glowText {
  0% { text-shadow: 0 0 10px #ff4c4c; }
  100% { text-shadow: 0 0 30px #ff4c4c; }
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.countdown div {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  border: 1px solid #ff4c4c44;
  box-shadow: 0 0 20px #ff4c4c22;
}
.countdown span {
  font-size: 2rem;
  color: #ff4c4c;
  font-weight: bold;
}
.countdown label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #fff;
}
