/* ===== ShareOn Softaawy (نصي) ===== */
.share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 20px auto;
    padding: 0;
}

.share-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s ease;
}

.share-button:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* ألوان المنصات */
.facebook  { background: #3b5998; }
.twitter   { background: #1da1f2; }
.tuenti    { background: #6e7fef; }
.digg      { background: #000000; }
.reddit    { background: #ff4500; }
.delicious { background: #0076E8; }
.vk        { background: #4A76A8; }
.tumblr    { background: #35465c; }
.google    { background: #DB4437; }
.whatsapp  { background: #25d366; }
.pocket    { background: #ef4056; }

/* تحسين العرض على الهواتف */
@media (max-width: 700px) {
    .share-button {
        font-size: 14px;
        padding: 8px 14px;
    }
}
