.contributors-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
  }

  .contributors-page h1 {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
  }

  .people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
  }

  .person-card {
    background-color: #f9f9ff;
    border: 1px solid #e8e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .person-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.12);
    text-decoration: none;
  }

  .person-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #6c63ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin: 0 auto 0.8rem;
  }

  .person-card h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .person-card .persons-username {
    font-size: 0.85rem;
    color: #6c63ff;
  }

  .add-yours {
    text-align: center;
    background-color: #f5f4ff;
    border-radius: 12px;
    padding: 2.5rem;
  }

  .add-yours h2 {
    margin-bottom: 0.5rem;
  }

  .add-yours p {
    color: #666;
    margin-bottom: 1.5rem;
  }


.profile-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8f0;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #6c63ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.profile-info h1 { font-size: 2rem; margin-bottom: 0.3rem; }
.profile-info .username { color: #6c63ff; font-size: 1rem; margin-bottom: 0.5rem; }
.profile-info .tagline { color: #666; font-size: 1rem; }

.profile-section { margin-bottom: 2rem; }

.profile-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
  border-left: 3px solid #6c63ff;
  padding-left: 0.7rem;
}

.links-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.links-list a {
  display: inline-block;
  background-color: #f5f4ff;
  color: #6c63ff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid #e0deff;
  transition: all 0.2s;
}

.links-list a:hover {
  background-color: #6c63ff;
  color: white;
  text-decoration: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.project-card {
  background-color: #f9f9ff;
  border: 1px solid #e8e8f0;
  border-radius: 8px;
  padding: 1.2rem;
}

.project-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.project-card p { color: #666; font-size: 0.85rem; }

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #6c63ff;
  font-size: 0.9rem;
}