#fd-share-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    z-index:999999;
}

.fd-share-box{
    width:420px;
    max-width:90%;
    background:#fff;
    padding:30px;
    border-radius:15px;
    margin:100px auto;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.fd-share-box h3{
    margin-top:0;
    margin-bottom:20px;
    text-align:center;
}

.fd-share-box a,
.fd-share-box button{
    display:block;
    width:100%;
    margin-bottom:12px;
    padding:14px;
    border:none;
    border-radius:10px;
    text-decoration:none;
    background:#f5f5f5;
    color:#333;
    text-align:center;
    cursor:pointer;
    font-size:15px;
}

.fd-share-box a:hover,
.fd-share-box button:hover{
    background:#2271b1;
    color:#fff;
}

#fd-close-share-popup{
    float:right;
    cursor:pointer;
    font-size:22px;
    font-weight:bold;
    color:#666;
}

#fd-close-share-popup:hover{
    color:#e74c3c;
}

.fd-share-button{
    background: #f3f4f6;
    color: #444;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.fd-share-button:hover{
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
    text-decoration: none;
}

.fd-share-button i{
    font-size: 16px;
}