/* Basic reset and background color to match the dark theme */
body {
  font-family: sans-serif;
  background-color: #1f1f1f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

/* --- Profile Card Styling --- */
.profile-card {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* --- Header & Profile Info --- */
.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 8px 0;
}

.location {
  color: #c4f82a;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0 0 25px 0;
}

.bio {
  font-size: 0.875rem;
  margin-bottom: 25px;
  opacity: 0.8;
}

/* --- Social Links Styling --- */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-button {
  display: block;
  padding: 14px;
  background-color: #333333;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
}

.link-button:hover {
  background-color: #c4f82a;
  color: #1f1f1f;
}
