body {
  font-family: 'Segoe UI', sans-serif;
  background: #0f172a;
  color: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  max-width: 400px;
  padding: 20px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #38bdf8;
}

h1 {
  font-size: 24px;
  margin-bottom: 8px;
}

.bio {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 30px;
}

.links a {
  display: block;
  background: #1e293b;
  color: #f8fafc;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 16px;
  transition: background 0.3s;
}

.links a:hover {
  background: #38bdf8;
  color: #0f172a;
}

.links i {
  margin-right: 8px;
}
