/**
 * Selection Studio — Security Splash Lockout
 * Location: /studio/css/splash.css
 */

#selection-saas-root-shield[data-status="loading"] {
    display: none !important;
}

#selection-saas-root-shield[data-status="approved"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.global-splash-lockout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #080c10;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.global-splash-wrapper {
    background: #0f171e;
    border: 1px solid rgba(212, 180, 131, 0.15);
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
}

.kernel-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 180, 131, 0.1);
    border-top: 3px solid #d4b483;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    animation: spin-kernel 0.8s linear infinite;
}

@keyframes spin-kernel {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.security-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

#lockout-message {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px 0;
}

.splash-login-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: #d4b483;
    color: #080c10;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    outline: none;
}