body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
  filter: brightness(0.5);
}

.container {
  background: rgba(0,0,0,0.6);
  color: #fff;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 16px;
  padding: 40px 30px 30px 30px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.subtitle {
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #e0e0e0;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label {
  font-size: 1rem;
  color: #ffb366;
  margin-top: 0.2rem;
}

.info {
  margin-bottom: 1rem;
  color: #ccc;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.email-form input[type="email"] {
  padding: 0.7rem;
  border: none;
  border-radius: 4px 0 0 4px;
  width: 220px;
  font-size: 1rem;
}

.email-form button {
  padding: 0.7rem 1.5rem;
  border: none;
  background: #ffb366;
  color: #222;
  font-size: 1rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.2s;
}

.email-form button:hover {
  background: #ffa94d;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #bbb;
}

footer a {
  color: #ffb366;
  text-decoration: none;
} 