/* FILE: style-custom.css */

/* 1. Style untuk Gambar Saat Klik Kanan */
#security-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 2147483647; /* Paling Atas */
    cursor: pointer;
    text-align: center;
}
#security-overlay img {
    max-width: 90%; max-height: 90%;
    margin-top: 2.5%;
    border: 2px solid #00ff00;
    box-shadow: 0 0 20px #00ff00;
}

/* 2. Style untuk Partikel Melayang */
.particle {
    position: fixed;
    background-color: #00ff00; /* Warna Hijau Matrix */
    border-radius: 50%;
    pointer-events: none; /* Penting: Agar tidak menghalangi klik */
    z-index: 2147483646; /* Di bawah Overlay, di atas Website */
    opacity: 0.6;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(1); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}
/* ============================
   3. Gambar Besar Setelah Close (Ukuran Besar)
   ============================ */
#fullpage-banner {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Background sedikit gelap agar background website tetap kelihatan sedikit */
    background: rgba(0, 0, 0, 0.7); 
    z-index: 2147483645;
    cursor: pointer;
}

#fullpage-banner img {
    /* Ukuran diperbesar menjadi 95% agar hampir memenuhi layar */
    max-width: 150%; 
    max-height: 150%;
    
    /* Posisi di tengah layar */
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    
    width: auto;
    height: auto;
    
}