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: linear-gradient(160deg, #282A65 0%, #1a1c50 50%, #0f1035 100%);
    color: #F9FAFB;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    font-family: 'Inter', 'Noto Sans', sans-serif;
}

/* Background decorative circles */
body fuse-splash-screen .splash-circle {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
body fuse-splash-screen .splash-circle-lg {
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255,255,255,0.04);
}
body fuse-splash-screen .splash-circle-md {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.06);
}
body fuse-splash-screen .splash-circle-sm {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(30,150,247,0.1);
}

/* Gradient blobs */
body fuse-splash-screen .splash-blob {
    position: absolute;
    border-radius: 50%;
}
body fuse-splash-screen .splash-blob-blue {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30,150,247,0.12) 0%, transparent 70%);
    top: -60px;
    right: 120px;
}
body fuse-splash-screen .splash-blob-teal {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(4,155,216,0.10) 0%, transparent 70%);
    bottom: -40px;
    left: 100px;
}

/* Dot grid overlay */
body fuse-splash-screen .splash-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* Corner accents */
body fuse-splash-screen .splash-corner {
    position: absolute;
    width: 64px;
    height: 64px;
}
body fuse-splash-screen .splash-corner-tl {
    top: 40px;
    left: 40px;
    border-top: 2px solid rgba(30,150,247,0.3);
    border-left: 2px solid rgba(30,150,247,0.3);
    border-radius: 4px 0 0 0;
}
body fuse-splash-screen .splash-corner-tr {
    top: 40px;
    right: 40px;
    border-top: 2px solid rgba(30,150,247,0.3);
    border-right: 2px solid rgba(30,150,247,0.3);
    border-radius: 0 4px 0 0;
}
body fuse-splash-screen .splash-corner-bl {
    bottom: 40px;
    left: 40px;
    border-bottom: 2px solid rgba(30,150,247,0.3);
    border-left: 2px solid rgba(30,150,247,0.3);
    border-radius: 0 0 0 4px;
}
body fuse-splash-screen .splash-corner-br {
    bottom: 40px;
    right: 40px;
    border-bottom: 2px solid rgba(30,150,247,0.3);
    border-right: 2px solid rgba(30,150,247,0.3);
    border-radius: 0 0 4px 0;
}

/* Center content wrapper */
body fuse-splash-screen .splash-content {
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo row */
body fuse-splash-screen .splash-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

body fuse-splash-screen .splash-logo-pill {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

body fuse-splash-screen .splash-logo-pill img {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

body fuse-splash-screen .splash-logo-fallback {
    display: none;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #282A65;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.05em;
}

body fuse-splash-screen .splash-logo-divider {
    display: none;
}

/* Text */
body fuse-splash-screen .splash-welcome {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

body fuse-splash-screen .splash-title {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
}

body fuse-splash-screen .splash-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    font-weight: 400;
    margin: 10px 0 0;
    letter-spacing: 0.02em;
}

/* Blue accent line */
body fuse-splash-screen .splash-accent-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #1E96F7, #049BD8);
    border-radius: 2px;
    margin: 24px auto;
}

/* Loading dots (bouncing) */
body fuse-splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

body fuse-splash-screen .spinner > div {
    width: 8px;
    height: 8px;
    background-color: #1E96F7;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: fuse-bouncedelay 1.4s ease-in-out infinite both;
    animation: fuse-bouncedelay 1.4s ease-in-out infinite 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;
}

body fuse-splash-screen .splash-loading-text {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    font-weight: 400;
    margin: 14px 0 0;
    letter-spacing: 0.04em;
}

/* Version tag at bottom (hidden) */
body fuse-splash-screen .splash-version {
    display: none;
}

@-webkit-keyframes fuse-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes fuse-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}
