* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  max-width: 800px;
  padding: 20px;
}

.logo {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

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

form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 250px;
}

button {
  padding: 10px 20px;
  border: none;
  background: #00c6ff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0076a3;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
}
