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: #0b1220;
    color: #e8ecf5;
    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 .vgx-logo-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    animation: vgx-glow 1.8s ease-in-out infinite;
}

body fuse-splash-screen .vgx-logo-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    max-width: 120px;
    border-radius: 100%;
}

/* Camada de base: logo apagado/dessaturado, sempre visível */
body fuse-splash-screen .vgx-logo-base {
    filter: grayscale(1) brightness(0.55);
    opacity: 0.55;
}

/* Camada colorida: revelada progressivamente da esquerda pra direita, em loop,
   dando a sensação do "V" sendo pintado enquanto o app carrega */
body fuse-splash-screen .vgx-logo-color {
    animation: vgx-fill-color 1.8s ease-in-out infinite;
}

@keyframes vgx-fill-color {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    55% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes vgx-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.35);
    }
    50% {
        box-shadow: 0 0 24px 6px rgba(123, 47, 247, 0.45);
    }
}

body fuse-splash-screen .vgx-brand {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, #4facfe, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

body fuse-splash-screen .spinner > div {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    display: inline-block;
    background: linear-gradient(135deg, #4facfe, #7b2ff7);
    -webkit-animation: fuse-bouncedelay 1s infinite ease-in-out both;
    animation: fuse-bouncedelay 1s infinite ease-in-out both;
}

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

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

@-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;
}
