@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #000000, #1e1e1e);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 500px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.logo {
  font-size: 2.2rem;
  color: gold;
  margin-bottom: 10px;
  animation: fadeIn 2s ease-in-out;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 25px;
}

.countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  width: 22%;
}

.countdown span {
  font-size: 1.5rem;
  color: gold;
  display: block;
}

.subscribe {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 65%;
  outline: none;
}

.subscribe button {
  background: gold;
  color: black;
  font-weight: 600;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe button:hover {
  background: #d4af37;
}

footer {
  margin-top: 25px;
  font-size: 0.8rem;
  color: #999;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
