/* Gaya minimal agar template Elementor tetap tampil rapi pada "bare page" */
.wpdev-mm-body {
  margin: 0;
  padding: 0;
}
.wpdev-mm-container {
  min-height: 100vh;
  display: block;
}

/* GAYA BARU UNTUK COUNTDOWN TIMER */
.wpdev-mm-countdown {
  display: flex;
  justify-content: center;
  gap: 35px;
  text-align: center;
  font-family: sans-serif;
}
@media (max-width: 768px) {
    .wpdev-mm-countdown {
        
          gap: 10px;
    }
}
.wpdev-mm-countdown .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    background: #5d0089;
    border-radius: 10px;
    padding: 15px 35px 11px;
    border: 3px solid #FFCC00;
}
.wpdev-mm-countdown .value {
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
.wpdev-mm-countdown .label {
  font-size: 0.9em;
  text-transform: uppercase;
  color: #fff;
}
.wpdev-mm-countdown .countdown-expired {
  font-size: 1.5em;
  font-weight: bold;
  color: #00a32a;
}