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

body {
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: linear-gradient(to right, #5a3e2b, #a1866f);
  color: #fff;
}

.container {
  max-width: 600px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.logo {
  width: 100px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin-top: 1.0rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.countdown {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
}

#countdowndiv {
  text-align: center;
  visibility: hidden;
}

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

.notify-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.notify-form input {
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  width: 60%;
}

.notify-form button {
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #5a3e2b;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.notify-form button:hover {
  background: #ddd;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-email {
  margin-top: 2rem;
}

.email-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  margin-top: 1rem;
  background: #fff;
  color: #5a3e2b;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.email-btn:hover {
  background: #ddd;
}
