.ssb-container {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.ssb-title {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.ssb-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ssb-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ssb-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor;
}

/* Facebook */
.ssb-facebook {
    background: #1877f2;
    color: white;
}
.ssb-facebook:hover {
    background: #166fe5;
}

/* TikTok */
.ssb-tiktok {
    background: #000;
    color: white;
}
.ssb-tiktok:hover {
    background: #333;
}

/* X (Twitter) */
.ssb-x {
    background: #000;
    color: white;
}
.ssb-x:hover {
    background: #333;
}

/* Instagram */
.ssb-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}
.ssb-instagram:hover {
    opacity: 0.9;
}

/* WhatsApp */
.ssb-whatsapp {
    background: #25d366;
    color: white;
}
.ssb-whatsapp:hover {
    background: #20ba5a;
}

/* Responsive */
@media (max-width: 600px) {
    .ssb-buttons {
        justify-content: center;
    }
    .ssb-btn {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }
}