.mod_social_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mod_social_popup_overlay.show {
    opacity: 1;
    visibility: visible;
}
.mod_social_popup_content {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}
.mod_social_popup_close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #777;
    background: none;
    border: none;
}
.mod_social_popup_title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}
.mod_social_popup_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.mod_social_popup_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mod_social_popup_btn:hover {
    transform: translateY(-3px);
	text-decoration: none;
    color: #ffffff;
}
.mod_social_popup_btn.vk { background: #0077FF; }
.mod_social_popup_btn.ok { background: #F4731C; }
.mod_social_popup_btn.facebook { background: #1877F2; }
.mod_social_popup_btn.twitter { background: #0F1419; }
.mod_social_popup_btn.instagram { background: #E1306C; }
.mod_social_popup_btn.threads { background: #000000; }
.mod_social_popup_btn.tiktok { background: #FE2C55; }
.mod_social_popup_btn.youtube { background: #FF0000; }
.mod_social_popup_btn.telegram { background: #2AABEE; }
.mod_social_popup_btn.viber { background: #7360F2; }