/* Social Share Buttons Styles */

.social-share-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-share-title {
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0.8;
}

.social-share-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
}

.social-share-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Twitter/X Button */
.social-share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0D8BD9 100%);
    color: white;
    border-color: #1DA1F2;
}

.social-share-btn.twitter:hover {
    background: linear-gradient(135deg, #0D8BD9 0%, #1DA1F2 100%);
    border-color: #0D8BD9;
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

/* Facebook Button */
.social-share-btn.facebook {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
    color: white;
    border-color: #4267B2;
}

.social-share-btn.facebook:hover {
    background: linear-gradient(135deg, #365899 0%, #4267B2 100%);
    border-color: #365899;
    box-shadow: 0 8px 20px rgba(66, 103, 178, 0.4);
}

/* Telegram Button */
.social-share-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006ba6 100%);
    color: white;
    border-color: #0088cc;
}

.social-share-btn.telegram:hover {
    background: linear-gradient(135deg, #006ba6 0%, #0088cc 100%);
    border-color: #006ba6;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

/* WhatsApp Button */
.social-share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: white;
    border-color: #25D366;
}

.social-share-btn.whatsapp:hover {
    background: linear-gradient(135deg, #1ebe57 0%, #25D366 100%);
    border-color: #1ebe57;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* LinkedIn Button */
.social-share-btn.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: white;
    border-color: #0077B5;
}

.social-share-btn.linkedin:hover {
    background: linear-gradient(135deg, #005885 0%, #0077B5 100%);
    border-color: #005885;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

/* Copy Link Button */
.social-share-btn.copy-link {
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--mint-green-dark) 100%);
    color: var(--slate-gray);
    border-color: var(--mint-green);
}

.social-share-btn.copy-link:hover {
    background: linear-gradient(135deg, var(--mint-green-dark) 0%, var(--mint-green) 100%);
    border-color: var(--mint-green-dark);
    box-shadow: 0 8px 20px var(--mint-green-glow);
}

/* Fart effect on click */
.social-share-btn:active {
    transform: scale(0.95);
}

.social-share-btn:hover::before {
    content: '💨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1rem;
    animation: shareFart 0.6s ease-out;
    pointer-events: none;
    z-index: 1000;
}

@keyframes shareFart {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(2) rotate(360deg);
    }
}

/* Success animation */
.social-share-btn.success {
    animation: shareSuccess 0.6s ease-out;
}

@keyframes shareSuccess {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px var(--mint-green-glow);
    }
}

/* Responsive design */
@media (max-width: 480px) {
    .social-share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-share-buttons {
        gap: 0.5rem;
    }

    .social-share-title {
        font-size: 0.8rem;
    }
}