body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero {
  text-align: center;
}

.profile-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 2px solid #38bdf8;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

h2 {
  font-weight: 400;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

p {
  line-height: 1.6;
  color: #cbd5f5;
}

.links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.links a {
  color: #38bdf8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.links a:hover {
  border-bottom: 1px solid #38bdf8;
}

.footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.85rem;
  color: #64748b;
}