.socialcard {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #5c1a1a 0%, #3d1212 100%);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.socialcard-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #d4a853;
    overflow: hidden;
    background: #2a0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: #d4a853;
}

.socialcard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.socialcard-avatar-placeholder {
    background: linear-gradient(135deg, #3d1212 0%, #2a0f0f 100%);
}

.socialcard-content {
    flex: 1;
    min-width: 0;
}

.socialcard-name {
    margin: 0 0 4px 0;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.socialcard-title {
    font-size: 14px;
    color: #d4a853;
    margin-bottom: 12px;
}

.socialcard-bio {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.socialcard-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.socialcard-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s, transform 0.2s;
}

.socialcard-icon:hover {
    color: #fff;
    transform: scale(1.15);
}

.socialcard-icon svg {
    width: 22px;
    height: 22px;
}

.socialcard-error {
    background: #ffebee;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ef9a9a;
}

/* Responsive */
@media (max-width: 600px) {
    .socialcard {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .socialcard-social {
        justify-content: center;
    }
    
    .socialcard-name {
        font-size: 22px;
    }
}
