
/* PRELOADER FULLSCREEN */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Bola sepak */
.ball-bounce {
    width: 80px;
    height: 80px;
    animation: bounceBall 0.6s ease-in-out 3; /* 3 kali */
}

/* ANIMASI MEMANTUL 1x */
@keyframes bounceBall {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 10px 5px rgba(0,0,0,0.2));
    }
    50% {
        transform: translateY(-80px);
        filter: drop-shadow(0 25px 10px rgba(0,0,0,0.35));
    }
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 10px 5px rgba(0,0,0,0.2));
    }
}

/* Hilangkan scroll selama preloader jalan */
body.loading {
    overflow: hidden;
}

