* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #111111;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 420px;
  padding: 64px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid #eaeaea;
}

.name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.bio {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #111111;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.link:hover {
  background: #111111;
  color: #ffffff;
}

.footer {
  margin-top: auto;
  padding-top: 48px;
  font-size: 12px;
  color: #a0a0a0;
  text-align: center;
}
