body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #1e293b, #0f172a);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #3b82f6;
  margin-bottom: 10px;
}

h1 {
  margin: 10px 0 5px;
}

.desc {
  color: #94a3b8;
  margin-bottom: 20px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links a {
  background: #1f2937;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: 0.2s;
}

.links a:hover {
  background: #3b82f6;
  transform: scale(1.03);
}

footer {
  margin-top: 20px;
  font-size: 12px;
  color: #64748b;
}