* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-in-out;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease-in-out;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.timer div {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  width: 80px;
}

.timer span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.timer small {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer a {
  color: #00ffff;
  text-decoration: none;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .timer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .timer div {
    width: 60px;
  }

  .timer span {
    font-size: 1.5rem;
  }
}
