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 50% 40%, #0d1527 0%, #050811 100%);
    color: #F8FAFC;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1), visibility 280ms;
}

body fuse-splash-screen .splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: splashAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body fuse-splash-screen .splash-badge {
    position: relative;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px -10px rgba(0, 82, 208, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body fuse-splash-screen .splash-logo {
    width: 140px;
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

body fuse-splash-screen .splash-loader {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

body fuse-splash-screen .splash-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #38bdf8, #0052d0, #6366f1);
    border-radius: 999px;
    box-shadow: 0 0 12px #38bdf8;
    animation: splashScan 1.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

body fuse-splash-screen .splash-caption {
    font-family: -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.65);
    margin-top: -6px;
}

@keyframes splashScan {
    0% {
        left: -40%;
        width: 30%;
    }
    50% {
        left: 40%;
        width: 50%;
    }
    100% {
        left: 100%;
        width: 30%;
    }
}

@keyframes splashAppear {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(6px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

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