*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #1c1c1c;
  --text: #eceae6;
  --muted: #5a5856;
  --border: #3a3835;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

#name {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

#avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

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

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 0.85rem;
  color: #7a7775;
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav a:hover {
  color: var(--text);
}

main p {
  margin: 0 0 0.4rem;
}

p.label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1rem 0 0.5rem;
}

main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

main ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.2rem;
}

main ul li::before {
  content: '–';
  color: var(--muted);
  position: absolute;
  left: 0;
  user-select: none;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--muted);
  text-underline-offset: 4px;
}

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

a:visited {
  color: var(--text);
}
