/* --- CSS Khusus Popup Countdown --- */
#promoCountdownModal .modal-content {
    background-color: transparent;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* Background Image Popup */
.promo-popup-bg {
    background: url('assets/images/others/popup-01.png') center center / cover no-repeat;
    position: relative;
    padding: 50px 30px;
    min-height: 480px; 
    display: flex;
    flex-direction: column;
    justify-content: center; /* Memposisikan konten di tengah */
    align-items: center;
}

/* Lapisan gelap agar teks putih terbaca jelas di atas gambar */
.promo-popup-bg::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(13, 36, 51, 0.85); /* Warna biru gelap transparan */
    z-index: 1;
}

.promo-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

/* Tombol Close */
#promoCountdownModal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.6;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s;
}
#promoCountdownModal .btn-close:hover {
    opacity: 1;
    background-color: rgba(255,255,255,0.3);
}

/* Typography & Hierarchy */
.info-badge {
    display: inline-block;
    background-color: #c59b6d; /* Warna emas */
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.promo-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promo-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 25px;
}

/* Style Angka Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    min-width: 85px;
    padding: 15px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-val {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: #c59b6d; /* Angka warna emas */
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Tombol Aksi */
.btn-daftar {
    background-color: #c59b6d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(197, 155, 109, 0.4);
    transition: all 0.3s ease;
}
.btn-daftar:hover {
    background-color: #b0895f;
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(197, 155, 109, 0.6);
}

.promo-note {
    color: #ff9d9d; /* Warna merah muda lembut untuk peringatan */
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
}

@media (max-width: 576px) {
    .time-box { min-width: 65px; padding: 12px 5px; }
    .time-val { font-size: 1.8rem; }
    .promo-title { font-size: 1.6rem; }
}