body {
  font-family: "Arial", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

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

.container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
}

h1 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2.5em;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.logo {
  font-size: 3em;
  margin-bottom: 20px;
  color: #3498db;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  color: #3498db;
  font-size: 1.5em;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: translateY(-5px);
}

.countdown {
  font-size: 1.5em;
  margin: 20px 0;
  font-weight: bold;
  color: #e74c3c;
}

.progress-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 5px;
  margin: 20px 0;
}

.progress-bar {
  height: 20px;
  border-radius: 5px;
  background-color: #3498db;
  width: 0%;
  transition: width 0.5s ease;
}
