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

body {
  cursor: crosshair;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #fff;
}

main {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.profile {
  text-align: center;
  margin-bottom: 2rem;
}

.avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bio {
  color: #888;
  font-size: 0.9rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links a {
  display: block;
  padding: 1rem;
  background: #151515;
  border: 1px solid #222;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}

.links a:hover {
  background: #1a1a1a;
  border-color: #333;
  transform: translateY(-2px);
}
