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

body {
  font-family: 'Quicksand', sans-serif;
  background: #fbdddc;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #3a3a3a;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}

.countdown div {
  background: #b094c4;
  padding: 10px 15px;
  border-radius: 10px;
  min-width: 60px;
}

.countdown span {
  display: block;
  font-size: 1.5rem;
  color: #fbdddc;
}

.countdown small {
  font-size: 0.75rem;
  color: #fbdddc;
}

.email-form {
  margin: 20px auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-form input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 60%;
  min-width: 200px;
}

.email-form button {
  padding: 10px 20px;
  background-color: #2d3e50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.email-form button:hover {
  background-color: #1b2b3a;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  margin: 0 10px;
  color: #2d3e50;
  text-decoration: none;
  font-weight: 600;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer {
  font-size: 0.95rem;
  color: #999;
  margin-top: 1rem;
}

.logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo-container img {
  height: 80px;
}
