* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #d8dbe9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 40px 16px;
}
.container {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  transform: translateY(-71px);
}
.avatar {
  width: 200px;
  height: 200px;
  margin-bottom: -33px;
  border-radius: 50%;
  object-fit: cover;
}
.name {
  margin-top: -12px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}
.bio {
  font-size: 0.88rem;
  color: rgba(216, 219, 233, 0.6);
  text-align: center;
  line-height: 1.5;
  max-width: 320px;
  margin-bottom: 4px;
}
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-right: 18px;
}
.link-btn {
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1ch 2ch;
  border: none;
  border-radius: 2px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-size: 17px;
  cursor: pointer;
  box-shadow:
    2px 2px 0 hsl(0, 0%, 90%),
    4px 4px 0 hsl(0, 0%, 80%),
    6px 6px 0 hsl(0, 0%, 70%),
    8px 8px 0 hsl(0, 0%, 60%),
    10px 10px 0 hsl(0, 0%, 50%),
    12px 12px 0 hsl(0, 0%, 40%),
    14px 14px 0 hsl(0, 0%, 30%),
    16px 16px 0 hsl(0, 0%, 20%),
    18px 18px 0 hsl(0, 0%, 10%);
}
.link-btn:hover {
  background-color: hsl(0, 0%, 50%);
  color: #fff;
  box-shadow: none;
}
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 22px;
  padding: 12px 0;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(216, 219, 233, 0.5);
  transition: color 0.2s;
}
.social-link:hover {
  color: #d8dbe9;
}
.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.footer {
  font-size: 0.72rem;
  color: rgba(216, 219, 233, 0.3);
  text-align: center;
  margin-top: 8px;
}
.footer a {
  color: rgba(216, 219, 233, 0.3);
  text-decoration: none;
}
.footer a:hover {
  color: rgba(216, 219, 233, 0.5);
}

@media (max-width: 480px) {
  body { padding: 32px 16px; }
  .container { transform: translateY(-49px); }
  .avatar { width: 150px; height: 150px; margin-bottom: -21px; }
  .name { font-size: 1.15rem; }
  .bio { font-size: 0.82rem; }
  .link-btn { font-size: 17px; }
}
