body {
  background: #222;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.profile-container {
  text-align: center;
  background: #333;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}
.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ffcc70;
  margin-bottom: 1rem;
}
.links a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ff595e;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
}
.links a:hover {
  background: #d94a52;
}
