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

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #2b5876, #4e4376);
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.loader {
  margin: 30px 0;
  width: 80px;
  height: 80px;
  border: 10px solid rgba(255, 255, 255, 0.3);
  border-top: 10px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.countdown {
  font-size: 1.5rem;
  margin-top: 15px;
  font-weight: bold;
}

footer {
  position: absolute;
  bottom: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .loader {
    width: 60px;
    height: 60px;
    border-width: 8px;
  }
  .countdown {
    font-size: 1.2rem;
  }
}
