
body.site-locked {
    overflow: hidden;
}

.locked-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locked-modal {
    background: #fff;
    max-width: 520px;
    width: 90%;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}

.locked-modal h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.locked-modal p {
    color: #666;
    margin-bottom: 25px;
}

.locked-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.locked-actions a {
    padding: 14px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.locked-login {
    background: #b30000;
    color: #fff;
}

.locked-register {
    background: #e5dada;
    color: #000;
}
