body fuse-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background-color: #ffffff; /* Selalu Putih biar aman dan stabil */
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out;
}

body fuse-splash-screen img {
    height: 80px;
    max-width: 250px;
    width: auto;
    object-fit: contain;
}

body fuse-splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

body fuse-splash-screen .spinner > div {
    width: 8px;
    height: 8px;
    background-color: #94a3b8; /* Titik abu-abu netral */
    border-radius: 50%;
    animation: minimal-pulse 1.4s infinite ease-in-out both;
}

body fuse-splash-screen .spinner .bounce1 { animation-delay: -0.32s; }
body fuse-splash-screen .spinner .bounce2 { animation-delay: -0.16s; }

@keyframes minimal-pulse {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}

body:not(.fuse-splash-screen-hidden) { overflow: hidden; }
body.fuse-splash-screen-hidden fuse-splash-screen { visibility: hidden; opacity: 0; }
