/* Bio Share Section */
.bio-share-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 24px;
    text-align: center;
}

.bio-share-card h3 {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-dim);
}

.bio-share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bio-share-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.bio-share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.bio-share-btn.whatsapp:hover {
    color: #25D366;
    border-color: #25D366;
}

.bio-share-btn.copy:hover {
    color: var(--gold);
}

@media (max-width: 480px) {
    .bio-share-buttons {
        flex-direction: column;
    }
    
    .bio-share-btn {
        width: 100%;
        justify-content: center;
    }
}
