body {
  font-family: sans-serif;
  background: linear-gradient(135deg, #a18cd1, #fbc2eb);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

h1 {
  font-size: 35px;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

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

.time-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  min-width: 110px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.time-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.3);
}

.time-box span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.label {
  font-size: 20px; 
  margin-top: 8px;
  color: #fdfdfd;
}

.footer {
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
}