/* Global Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  max-width: 90%;
  margin: auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px 15px;
  width: 80px;
  text-align: center;
}

.time-box span {
  font-size: 2rem;
  display: block;
  font-weight: bold;
}

.time-box p {
  font-size: 1rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .time-box {
    width: 70px;
    padding: 15px 10px;
  }

  .time-box span {
    font-size: 1.5rem;
  }

  .time-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }

  .time-box {
    width: 60px;
    padding: 10px;
  }

  .time-box span {
    font-size: 1.2rem;
  }

  .time-box p {
    font-size: 0.8rem;
  }
}
