#wp-opacity-lock {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    color: white;
}

.wp-lock-box {
    text-align: center;
    background: #222;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.wp-lock-box input {
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    width: 200px;
    text-align: center;
}

.wp-lock-box button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.wp-lock-box button:hover {
    background: #005f8a;
}
