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;
    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 img {
    width: 120px;
    max-width: 120px;
}

body fuse-splash-screen .content {
    position: relative;
    z-index: 2;
    animation: contentAppear 0.6s ease-out 0.2s both;
}

body fuse-splash-screen .wind-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.8;
}

body fuse-splash-screen .wind-lines .line {
    position: absolute;
    width: 4px;
    height: 150px;
    background: linear-gradient(to top, 
        transparent,
        rgba(0, 88, 244, 1),
        transparent
    );
    animation: windRise 3s infinite;
}

body fuse-splash-screen .wind-lines .line:nth-child(1) { left: 20%; animation-delay: 0s; }
body fuse-splash-screen .wind-lines .line:nth-child(2) { left: 40%; animation-delay: 0.5s; }
body fuse-splash-screen .wind-lines .line:nth-child(3) { left: 60%; animation-delay: 1s; }
body fuse-splash-screen .wind-lines .line:nth-child(4) { left: 80%; animation-delay: 1.5s; }
body fuse-splash-screen .wind-lines .line:nth-child(5) { left: 30%; animation-delay: 2s; }
body fuse-splash-screen .wind-lines .line:nth-child(6) { left: 70%; animation-delay: 2.5s; }

body fuse-splash-screen .spinner {
    position: relative;
    margin-top: 40px;
}

body fuse-splash-screen .spinner > div {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 1.4s infinite ease-in-out both;
}

body fuse-splash-screen .spinner .bounce1 {
    animation-delay: -0.32s !important;
    transform: translate(-150%, -50%) !important;
}

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

body fuse-splash-screen .spinner .bounce3 {
    transform: translate(50%, -50%) !important;
}

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

body.fuse-splash-screen-hidden fuse-splash-screen {
    animation: loaderHide 0.8s ease-in-out forwards;
}
