.countdown-container {
  width: 100%;
  padding: 2rem;
  background: white;
  height: 350px;
  color: black;
  font-family: Arial, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown-container h1 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
}

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

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  position: relative;
}

.circle {
  display: block;
}

.circle circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.bg {
  stroke: #ccc;
}

.progress {
  stroke: green;
  transition: stroke-dashoffset 0.5s ease;
}

.number {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
}

.label {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
  position: static;
}

@media (max-width: 500px) {
  .countdown-container {
    height: 200px;
    padding: 1rem;
  }

  .time-box {
    flex: 1;
    width: 70px;
  }

  .circle {
    display: none;
  }

  .countdown {
    gap: 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .number {
    font-size: 1.5rem;
    position: static;
    transform: none;
  }

  .label {
    font-size: 0.8rem;
    color: #333;
    border-bottom: 4px solid #039c0d;
    padding-bottom: 5px;
  }
}

@media (min-width: 501px) and (max-width: 900px) {
  .time-box {
    width: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .circle {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
  }

  .number {
    font-size: 1.8rem;
  }

  .label {
    font-size: 0.9rem;
    color: #333;
    margin-top: 15px;
  }
}

@media (min-width: 901px) {
  .circle {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
  }

  .number {
    font-size: 2rem;
  }

  .label {
    font-size: 1rem;
    margin-top: 15px;
  }
}
