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-color: #111827;
    color: #f9fafb;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body fuse-splash-screen .splash-container {
    position: relative;
    width: 120px;
    height: 120px;
    transform-style: preserve-3d;
    transform: translateX(40px) rotatex(-33.5deg) rotatey(45deg);
}
body fuse-splash-screen .splash-container .fusion-cube {
    transform-style: preserve-3d;
    animation: hoverY 1.25s infinite alternate;
    animation-timing-function: ease-in-out;
}
body fuse-splash-screen .splash-container .outer-cube {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 0;
    top: 0;
    transform-style: preserve-3d;
    animation: flipY 5.2s infinite;
    display: inline-block;
}
body fuse-splash-screen .splash-container .outer-cube .face {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(24, 112, 154, 0.1);
    line-height: 100px;
    border: 1px solid white;
}
body fuse-splash-screen .splash-container .outer-cube .face-front {
    transform: translatez(60px);
    border-right-width: 6px;
    border-bottom-width: 6px;
    animation: border-front 5.2s infinite;
}
body fuse-splash-screen .splash-container .outer-cube .face-back {
    transform: rotateY(180deg) translatez(60px);
    animation: border-back 5.2s infinite;
}
body fuse-splash-screen .splash-container .outer-cube .face-top {
    transform: rotatex(90deg) translatez(60px);
    border-top-width: 6px;
    border-right-width: 6px;
    animation: border-top 5.2s infinite;
}
body fuse-splash-screen .splash-container .outer-cube .face-bottom {
    transform: rotatex(-90deg) translatez(60px);
}
body fuse-splash-screen .splash-container .outer-cube .face-left {
    transform: rotateY(-90deg) translatez(60px);
    border-left-width: 6px;
    border-bottom-width: 6px;
    animation: border-left 5.2s infinite;
}
body fuse-splash-screen .splash-container .outer-cube .face-right {
    transform: rotateY(90deg) translatez(60px);
}
body fuse-splash-screen .splash-container .inner-cube {
    display: inline-block;
    position: absolute;
    width: 120px;
    height: 120px;
    left: 0;
    top: -2px;
    transform-style: preserve-3d;
    animation: flipY-innerCube 5.2s infinite;
}
body fuse-splash-screen .splash-container .inner-cube .face {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #0ebccb;
    line-height: 100px;
    border: 2px solid white;
}
body fuse-splash-screen .splash-container .inner-cube .face-front {
    transform: translatez(60px);
}
body fuse-splash-screen .splash-container .inner-cube .face-back {
    transform: rotateY(180deg) translatez(60px);
}
body fuse-splash-screen .splash-container .inner-cube .face-top {
    transform: rotatex(90deg) translatez(60px);
}
body fuse-splash-screen .splash-container .inner-cube .face-bottom {
    transform: rotatex(-90deg) translatez(60px);
}
body fuse-splash-screen .splash-container .inner-cube .face-left {
    transform: rotateY(-90deg) translatez(60px);
}
body fuse-splash-screen .splash-container .inner-cube .face-right {
    transform: rotateY(90deg) translatez(60px);
}

@keyframes flipY {
    0% {
        transform: translateX(-50%) scale3d(1, 1, 1) rotatex(0deg) rotatey(0deg) rotatez(0deg);
    }
    20.25% {
        transform: translateX(-50%) scale3d(1, 1, 1) rotatex(0deg) rotatey(90deg) rotatez(0deg);
    }
    100% {
        transform: translateX(-50%) scale3d(1, 1, 1) rotatex(0deg) rotatey(90deg) rotatez(0deg);
    }
}
@keyframes flipY-innerCube {
    0% {
        transform: translateX(-50%) scale3d(0.5, 0.5, 0.5) rotatex(0deg) rotatey(0deg) rotatez(0deg);
    }
    20.25% {
        transform: translateX(-50%) scale3d(0.5, 0.5, 0.5) rotatex(0deg) rotatey(-90deg) rotatez(0deg);
    }
    100% {
        transform: translateX(-50%) scale3d(0.5, 0.5, 0.5) rotatex(0deg) rotatey(-90deg) rotatez(0deg);
    }
}

@keyframes border-front {
    0% {
        border-width: 1px 6px 6px 1px;
    }
    2.25% {
        border-width: 1px 6px 6px 1px;
    }
    5.75% {
        border-width: 1px 1px 1px 1px;
    }
    100% {
        border-width: 1px 1px 1px 1px;
    }
}
@keyframes border-back {
    0% {
        border-width: 1px 1px 1px 1px;
    }
    2.25% {
        border-width: 1px 1px 1px 1px;
    }
    5.75% {
        border-width: 1px 1px 6px 6px;
    }
    100% {
        border-width: 1px 1px 6px 6px;
    }
}
@keyframes border-top {
    0% {
        border-width: 6px 6px 1px 1px;
    }
    2.25% {
        border-width: 6px 6px 1px 1px;
    }
    5.75% {
        border-width: 1px 6px 6px 1px;
    }
    100% {
        border-width: 1px 6px 6px 1px;
    }
}
@keyframes border-left {
    0% {
        border-width: 1px 1px 6px 6px;
    }
    2.25% {
        border-width: 1px 1px 6px 6px;
    }
    5.75% {
        border-width: 1px 6px 6px 1px;
    }
    100% {
        border-width: 1px 6px 6px 1px;
    }
}
@keyframes hoverY {
    0% {
        transform: translatey(0px);
    }
    100% {
        transform: translatey(-30px);
    }
}

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

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