/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.coming-soon-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  width: 100px;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.countdown span:last-child {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 5px;
}

form {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

input[type="email"] {
  padding: 10px;
  width: 250px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

button {
  padding: 10px 20px;
  border: none;
  background: #2575fc;
  color: #fff;
  font-size: 1rem;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

button:hover {
  background: #1b5fd9;
}

.footer {
  font-size: 0.9rem;
  opacity: 0.8;
}