.simply-countdown {
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  color: #4c1d95;
}

.simply-countdown > .simply-section {
  width: 62px;
  height: 62px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px 3px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1),
              inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.3s ease;
}

.simply-countdown > .simply-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
}

.simply-countdown > .simply-section .simply-amount,
.simply-countdown > .simply-section .simply-word {
  display: block;
  text-align: center;
}

.simply-countdown > .simply-section .simply-word {
  font-size: 8px;
  font-weight: 500;
  color: #8b5cf6;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.simply-countdown > .simply-section .simply-amount {
  font-size: 22px;
  font-weight: 700;
  color: #7c3aed;
  line-height: 1.2;
}
