#loader {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: #050505; 
    /* Fix: Change to flex-direction column to stack img + text */
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    z-index: 99999;
}

#loader img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: vrainsieMotion 2s infinite ease-in-out;
}

/* Ensure the injected text container respects the flex centering */
#loader-status-text {
    margin-top: 20px;
    text-align: center;
    color: #94a3b8; /* slate-400 */
    font-size: 0.75rem; /* text-xs */
    font-weight: 500;
}

@keyframes vrainsieMotion {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-45deg) scale(0.5); }
    50% { transform: rotate(45deg) scale(1.5); }
    75% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(-45deg) scale(0.5); }
}


#utoken {display:none;}