#custom-countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  background-color: #fff2f4;
  padding: 20px;
  flex-wrap: wrap;
}

#custom-countdown .countdown-box {
  position: relative;
  width: 200px;
  height: 200px;
  background: #ffffff;
  border: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Offset thin black outline */
#custom-countdown .countdown-box::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  z-index: -1;
  background: transparent;
  box-sizing: border-box;
}

/* Countdown numbers */
#custom-countdown .countdown-box span {
  font-size: 3rem;
  color: black;
  line-height: 1;
}

/* Countdown labels */
#custom-countdown .countdown-box .label {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: black;
}

/* 🔁 Mobile responsiveness */
@media screen and (max-width: 600px) {
  #custom-countdown {
    gap: 15px;
    padding: 15px;
  }

  #custom-countdown .countdown-box {
    width: 120px;
    height: 120px;
  }

  #custom-countdown .countdown-box span {
    font-size: 1.8rem;
  }

  #custom-countdown .countdown-box .label {
    font-size: 0.75rem;
    margin-top: 6px;
  }

  #custom-countdown .countdown-box::before {
    top: 4px;
    left: 4px;
  }
}