body.sag-age-lock {
    overflow: hidden;
}

/* Overlay: затемнение + blur */
.sag-age-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Modal */
.sag-age-modal {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: #fff;
    color: #000;
    padding: 32px 40px;
    border-radius: 10px;
    max-width: 420px;
    width: calc(100% - 32px);
    box-shadow: 0 0 20px #0003;
}

.sag-age-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.sag-age-text {
    font-size: 14px;
	line-height: 1.3;
    margin-bottom: 18px;
    text-align: center;
}

.sag-age-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
	justify-content: center;
}

.sag-age-btn {
    border: 0;
    border-radius: 8px;
    padding: 12px 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.sag-age-yes {
    background: rgb(37 121 60);
    color: #fff;
}

.sag-age-no {
    background: #e7e7e7;
    color: #000;
}

/* Blocked screen (после "Нет") */
.sag-age-blocked {
    position: absolute;
    inset: 0;
    display: none;
    pointer-events: all;
}

.sag-age-blocked-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 20px 24px;
    width: min(420px, calc(100% - 32px));
    box-shadow: 0 0 20px #0003;
    text-align: center;
}

.sag-age-blocked-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sag-age-blocked-text {
    font-size: 14px;
    line-height: 1.4;
}
