/* ========================================
   SOCIAL SHARE BUTTONS STYLES
   ======================================== */

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

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.share-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.share-btn-twitter {
    background: #1DA1F2;
}

.share-btn-twitter:hover {
    background: #0d8bd9;
}

.share-btn-reddit {
    background: #FF4500;
}

.share-btn-reddit:hover {
    background: #e63e00;
}

.share-btn-whatsapp {
    background: #25D366;
}

.share-btn-whatsapp:hover {
    background: #1ebe57;
}

.share-btn-telegram {
    background: #0088cc;
}

.share-btn-telegram:hover {
    background: #0077b3;
}

.share-btn-copy {
    background: #6366f1;
}

.share-btn-copy:hover {
    background: #5558e3;
}

.share-tooltip {
    position: absolute;
    right: 60px;
    background: #1a1a2e;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn:hover .share-tooltip {
    opacity: 1;
}

.share-main-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88 0%, #6366f1 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.share-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.share-main-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .social-share-container {
        right: 15px;
        gap: 10px;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
    }
    
    .share-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .share-main-btn {
        width: 50px;
        height: 50px;
    }
    
    .share-tooltip {
        display: none;
    }
}

/* Success animation */
@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.share-btn.success {
    animation: successPulse 0.5s ease;
}
