:root {
  --bg: #0d1117;
  --border: #30363d;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --accent: #58a6ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.profile {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}

.profile-photo {
  width: clamp(120px, 35vw, 160px);
  height: clamp(120px, 35vw, 160px);
  border-radius: 50%;
  border: 1px solid var(--border);
  object-fit: cover;
  margin-bottom: 16px;
}

.name {
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}

.username {
  font-size: clamp(18px, 4vw, 20px);
  color: var(--text-muted);
  display: block;
}

.meta-list {
  margin-top: 16px;
  list-style: none;
  font-size: 14px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  padding: 4px 0;
}

.meta-item svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
  flex-shrink: 0;
}

.meta-item a {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--text);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
