.social-share-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.facebook { background-color: #1877f2; }
.email { background-color: #ea4335; }
.whatsapp { background-color: #25d366; }
.telegram { background-color: #0088cc; }
.linkedin { background-color: #0a66c2; }
.instagram { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.github { background-color: #333333; }

@media (max-width: 768px) {
    .social-share-sidebar {
        right: 10px;
    }
    
    .social-share-btn {
        width: 35px;
        height: 35px;
    }
}
.share-buttons .share-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.3s ease;
}

.share-buttons .share-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Platform-specific colors on hover */
.share-buttons .share-btn[data-platform="facebook"]:hover { color: #1877f2; }
.share-buttons .share-btn[data-platform="twitter"]:hover { color: #1da1f2; }
.share-buttons .share-btn[data-platform="linkedin"]:hover { color: #0a66c2; }
.share-buttons .share-btn[data-platform="whatsapp"]:hover { color: #25d366; }
#copyLink:hover { color: #6c757d; }