.profile-card {
    max-width: 480px;
    margin: 0 auto 32px;
    padding: 32px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.profile-avatar-wrap {
    margin-bottom: 6px;
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-border);
}

.profile-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text);
}

.profile-english-name {
    margin-top: -8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

.profile-tagline {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.profile-stats {
    width: 100%;
    margin: 6px 0 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    padding: 16px;
    background: var(--color-bg);
    border-radius: 10px;
    text-align: left;
}

.profile-stats[hidden] {
    display: none;
}

.profile-stats dt {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.profile-stats dd {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.profile-characteristics {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    white-space: pre-line;
}

.profile-empty {
    padding: 24px 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
