/* RESET RINGAN (boleh dihapus kalau sudah ada reset di file lain) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* SECTION PROMO */
.tj-promo {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 80px;
}

.promo-wrapper {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.promo-title {
  font-size: 32px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 30px;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.timer-box {
  background: #111;
  border-radius: 20px;
  padding: 20px 24px;
  min-width: 90px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.12);
}

.timer-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.timer-label {
  font-size: 12px;
  letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .promo-title {
    font-size: 24px;
  }
  .timer-box {
    min-width: 70px;
    padding: 16px 18px;
  }
  .timer-number {
    font-size: 26px;
  }
}
