body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top right, #1e1e2f, #111);
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.coming-soon .content {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 2s ease-in;

}

.coming-soon h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ccc;
}

.coming-soon p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #007aff;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #005bb5;
}

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