#uk-countdown-widget {
  width: 100%;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 30px;
  border: 3px solid #CE0000;
  box-shadow: 0 0 20px rgba(206, 0, 0, 0.3);
  text-align: center;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
}

.countdown-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}

.time-segment {
  width: 120px;
  height: 120px;
  background-color: #B70000;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 0 20px rgba(206, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.time-segment span {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}

.time-segment small {
  font-size: 14px;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}