.simply-countdown-circle {
  --sc-circle-primary: #6366f1;
  --sc-circle-secondary: #818cf8;
  --sc-circle-bg: #1e1b4b;
  --sc-circle-text: #fff;
    --bg-kertas-undangan: #F9E1D4;      /* background kertas */
  --bg-awan-peach: #FAD4C3;           /* awan & gradasi */
  --bg-krem-lembut: #FBE6DC;          /* area terang */

  --baju-pria-coklat-tua: #3D1D0E;    /* pakaian pria */
  --baju-wanita-coklat: #8D5B44;      /* pakaian wanita */
  --detail-kain-tradisi: #D6A77F;     /* motif kain */

  --pita-merah-ornamen: #A60B08;      /* pita / ornamen bawah */
  --aksen-peach-hangat: #F8C9B5;      /* aksen dekorasi */

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-family: "Inter", sans-serif;
}

.simply-countdown-circle > .simply-section {
  position: relative;
  width: 65px;
  height: 65px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: linear-gradient(45deg, #F9E1D4, #F8C9B5);
  box-shadow: 0 0 25px -5px #3D1D0E;
  animation: pulse-circle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.simply-countdown-circle > .simply-section::before {
  content: "";
  position: absolute;
  /* inset: 3px; */
  top: 3px;
right: 3px;
bottom: 3px;
left: 3px;
  border-radius: 50%;
  background: #A60B08;
  z-index: 0;
}

.simply-countdown-circle > .simply-section > div {
  position: relative;
  z-index: 1;
  color: #FBE6DC;
  text-align: center;
}

.simply-countdown-circle .simply-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to right, #FAD4C3, #F9E1D4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.simply-amount {
  font-size: 2rem;
  margin-top: 0.5rem;
}
.simply-countdown-circle .simply-word {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

@keyframes pulse-circle {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.98);
    opacity: 0.9;
  }
}
