.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 2em;
    background: black;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.splash-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    object-fit: cover;
    z-index: 9999;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

/* Tambahkan class ini untuk menghilangkan splash dengan transisi */
.splash-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.splash-img.hide {
    opacity: 0;
    visibility: hidden;
}
