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: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #F9FAFB;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo and Spinner Container */
body fuse-splash-screen .logo-spinner-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
}

/* Logo */
body fuse-splash-screen .logo {
    width: 120px;
    max-width: 120px;
    z-index: 2;
    position: relative;
}

/* Spinner Ring */
body fuse-splash-screen .spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #003152;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    z-index: 1;
}

/* Spinner Ring with gradient effect */
body fuse-splash-screen .spinner-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top: 3px solid #588BAE;
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

/* Spinner Ring with additional accent */
body fuse-splash-screen .spinner-ring::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid transparent;
    border-top: 2px solid #003152;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spinning Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}
