.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;
}