#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px); /* efek blur latar belakang */
    background-color: rgba(255, 255, 255, 0.4); /* semi-transparan putih */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animasi berkedip */
#loading-screen img {
    width: 150px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
