/* Social Share Buttons */
.share-section {
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.share-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

/* Telegram Share Button - Clean Light Theme */
.share-section {
    margin: 3rem 0;
    text-align: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 136, 204, 0.2);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Telegram Only */
.share-telegram {
    background: linear-gradient(135deg, #0088cc, #00a8e6);
    color: white;
}

.share-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px -1px rgba(0, 136, 204, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile responsive for share buttons */
@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}
