/* link */
.xlzs_social_wrapper {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.xlzs_visible {
    opacity: 1;
}

.xlzs_social_icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #FFEB3B;
    background: radial-gradient(circle, #333 0%, #000 100%);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    fill: #d4af37;
}

.xlzs_social_icon svg {
    width: 15px;
    height: 15px;
}

.xlzs_social_icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #FFEB3B;
    background: #FFEB3B;
    fill: #000;
}

@media (max-width: 600px) {
    .xlzs_social_icon {
        width: 45px;
        height: 45px;
    }

    .xlzs_social_icon svg {
        width: 20px;
        height: 20px;
    }
}