#sub-lock-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: default;
}

#sub-lock-overlay.is-visible {
    display: flex;
}

.sub-lock-modal {
    background: #ffffff;
    width: 500px;
    max-width: 90%;
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #E5E7EB;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

#sub-lock-overlay.is-visible .sub-lock-modal {
    transform: scale(1);
}

.sub-lock-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #EFF6FF;
    color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px auto;
}

/* ЗАГОЛОВОК */
.sub-lock-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.sub-lock-desc {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.sub-lock-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    background-color: #2563EB;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.sub-lock-btn:hover {
    background-color: #1D4ED8;
}

body.lock-scroll {
    overflow: hidden !important;
    height: 100vh;
}