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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(-45deg, #1e3c72, #2a5298, #6a11cb, #2575fc);
  background-size: 400% 400%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}

.logo .highlight {
  color: #ffdd40;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeIn 3s ease-in-out;
}

.countdown {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  animation: slideUp 1.5s ease-in-out;
}

#timer {
  display: flex;
  justify-content: space-around;
  font-size: 1.5rem;
  margin-top: 10px;
}

#timer span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}

.subscription-form {
  margin-bottom: 30px;
  animation: slideUp 2s ease-in-out;
}

.subscription-form input {
  padding: 10px;
  width: 70%;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 1rem;
}

.subscription-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #ffdd40;
  color: #1e3c72;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscription-form button:hover {
  background: #ffcc00;
}

.form-message {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ffdd40;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffdd40;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}