/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  color: white;
}

.background-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #1c1c1c, #ffcc00, #333, #ff9900);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  z-index: -1;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Centered Card */
.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.card h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  color: #ffcc00;
}

.tagline {
  font-size: 1.1rem;
  margin: 10px 0 25px;
  color: #ffffffcc;
}

/* Countdown */
#countdown {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

#countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  width: 70px;
}

#countdown span {
  font-size: 1.8rem;
  display: block;
  font-weight: bold;
}

#countdown label {
  font-size: 0.8rem;
  color: #ccc;
}

/* Email Form */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notify-form input {
  padding: 12px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.notify-form button {
  padding: 12px;
  border-radius: 5px;
  background-color: #ffcc00;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.notify-form button:hover {
  background-color: #e6b800;
}

/* Social Icons */
.social-icons {
  margin-top: 25px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
  transform: scale(1.1);
}
