body {
    font-family: Arial, sans-serif;
}

/* Default: Sembunyikan popup untuk semua perangkat */
.popup {
    display: none; /* Pop-up tersembunyi secara default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Latar belakang transparan */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Pastikan berada di paling depan */
}

/* HANYA tampilkan popup di layar mobile */
@media (max-width: 768px) {
    .popup.show {
        display: flex !important; /* Pakai class tambahan agar bisa dikontrol lewat JS */
    }
}


.popup-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.close {
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
}

/* Animasi pop-up */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
