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(17, 24, 39, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #F9FAFB;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
}

body fuse-splash-screen img {
    width: 120px;
    max-width: 120px;
}

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

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

/* Новый стиль */
.loader-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
}

.spinner {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

.spinner .dot {
    width: 12px;
    height: 12px;
    /*background: linear-gradient(45deg, #FFD700, #FF8C00);*/
    background: linear-gradient(45deg, #2196F3, #1E88E5);
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.spinner .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.spinner .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    to {
        transform: translateY(-10px);
    }
}
