.camacol-countdown-wrapper {
  padding: 2rem;
  background: #09193d;
  border-radius: 15px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 2rem auto;
  max-width: fit-content;
}

.camacol-countdown-wrapper .title h2 {
  color: #ffffff;
  font-size: 33px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.countdown-unit-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.digits-wrapper {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.digit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 60px;
  background: #ffb700;
  border-radius: 6px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  line-height: 1;
}

.unit-separator {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  padding-top: 10px;
  line-height: 1;
  display: flex;
  height: 60px;
  align-items: center;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: 500;
}

.countdown-message-container {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffb700;
  padding: 1rem;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .countdown-container {
    gap: 1rem;
  }

  .unit-separator {
    display: none;
  }

  .digit {
    width: 35px;
    height: 50px;
    font-size: 1.8rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .camacol-countdown-wrapper {
    padding: 1.5rem 1rem;
  }

  .countdown-container {
    gap: 0.8rem;
  }

  .digit {
    width: 30px;
    height: 45px;
    font-size: 1.5rem;
  }
}