/* === POP-UP MODAL STYLE === */
.modal-overlay {
    display: none; /* Sembunyi secara default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: zoomIn 0.4s ease;
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    color: #333;
}

.modal-body { display: grid; grid-template-columns: 1fr 1fr; }

.promo-image img { width: 100%; height: 100%; object-fit: cover; }

.promo-text { padding: 40px; text-align: left; }

.promo-text h2 { color: #ff3e3e; margin-bottom: 15px; font-size: 24px; }

.promo-timer {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    margin: 20px 0;
    font-weight: bold;
    color: #2c3e50;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .modal-body { grid-template-columns: 1fr; }
    .promo-image { height: 200px; }
    .promo-text { padding: 25px; text-align: center; }
}