body {
  background: #141414;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
}
.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.profile-card{
    background: #1f1f1f;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    max-width: 90vw;
}
.profile-avatar{
     width: 88px;
     height: 88px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 24px;
}
.profile-name{
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: center;
}
.profile-location {
  color: #c4f82a;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 24px 0;
  text-align: center;
}
.profile-bio {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 28px 0;
  text-align: center;
}
.profile-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-link {
  display: block;
  width: 100%;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 14px 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.profile-link:hover,
.profile-link:focus {
  background: #c4f82a;
  color: #1f1f1f;
  outline: none;
}