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

body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;

  background: #0f0f10;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.container {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.profile {
  margin-bottom: 24px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.bio {
  color: #aaa;
  margin-top: 8px;
  font-size: 0.95rem;
}

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

.link {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;

  padding: 14px 16px;
  background: #1c1c1f;
  color: white;
  text-decoration: none;
  border-radius: 12px;

  transition: 0.15s ease;
}

.link:hover {
  background: #2a2a2e;
  transform: translateY(-2px);
}
