#uiLoader {
    position: fixed;
    inset: 0;
    z-index: 99997;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
}

#uiLoader.active {
    display: flex;
}

.ui-loader-box {
    width: 360px;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.ui-loader-logo {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.ui-loader-message {
    color: #a1a1aa;
    font-size: 14px;
    margin-bottom: 20px;
}

.ui-loader-bar {
    height: 6px;
    background: #27272a;
    border-radius: 999px;
    overflow: hidden;
}

.ui-loader-bar span {
    display: block;
    height: 100%;
    width: 45%;
    background: #10b981;
    border-radius: 999px;
    animation: loaderMove 1.2s infinite ease-in-out;
}

@keyframes loaderMove {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(260%); }
}