/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #003b2f, #7ebf36);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

/* Container */
.coming-soon {
  text-align: center;
  max-width: 800px;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Headline */
.coming-soon h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #fefefe;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(#00a4ff, #92fe9d);

}

/* Subheading */
.coming-soon p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #e0f2f1;
  margin-bottom: 1.5rem;
}

/* Attribution */
.coming-soon .signature {
  font-style: italic;
  color: #b2dfdb;
  font-size: 1.1rem;
}

/* Optional animation */
.fade-in {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 600px) {
  .coming-soon h1 {
    font-size: 2.8rem;
  }

  .coming-soon p {
    font-size: 1.1rem;
  }
}
