/* Reset + font */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #001f3f, #0074d9);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.countdown {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}

a {
  color: #ffd700;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
