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

/* Contenedor del logo con anillo giratorio alrededor */
body fuse-splash-screen .splash-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 128px;
}

body fuse-splash-screen .splash-logo-wrap img {
    width: 64px;
    max-width: 64px;
    height: auto;
}

/* Anillo que gira alrededor del logo */
body fuse-splash-screen .splash-logo-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: #14b8a6;
    box-sizing: border-box;
    -webkit-animation: splash-spin 1s linear infinite;
    animation: splash-spin 1s linear infinite;
}

@-webkit-keyframes splash-spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes splash-spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

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