* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #000;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.profile {
  margin-bottom: 30px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333;
  margin-bottom: 15px;
  box-shadow: 0 0 10px #000;
}

h1 {
  font-size: 22px;
  margin-bottom: 5px;
}

.bio {
  font-size: 14px;
  color: #aaa;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.links a {
  background: #1a1a1a;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.05);
}

.links a:hover {
  background: #333;
  transform: translateY(-2px);
}

.footer {
  margin-top: 40px;
  padding: 10px 15px;
  background-color: #111;
  border-radius: 20px;
  color: #ccc;
  font-size: 13px;
  opacity: 0.7;
  transition: 0.2s ease;
}

.footer:hover {
  opacity: 1;
}
