body fuse-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, #ffffff 0%, #f0f4f8 100%);
    color: #0A1E3D;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Be Vietnam Pro', 'Inter', sans-serif;
}

body fuse-splash-screen img {
    width: 140px;
    max-width: 140px;
    margin-bottom: 24px;
    animation: fuse-pulse 2s infinite ease-in-out;
}

body fuse-splash-screen .company-name {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #0072BC, #ED1C24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

body fuse-splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    width: 60px;
}

body fuse-splash-screen .spinner > div {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: fuse-bouncedelay 1.4s infinite ease-in-out both;
    animation: fuse-bouncedelay 1.4s infinite ease-in-out both;
}

body fuse-splash-screen .spinner .bounce1 {
    background-color: #0072BC;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

body fuse-splash-screen .spinner .bounce2 {
    background-color: #ED1C24;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

body fuse-splash-screen .spinner .bounce3 {
    background-color: #00A651;
}

@keyframes fuse-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@-webkit-keyframes fuse-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes fuse-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

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

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}
