.profile-header {
  text-align: center;
  padding: 1.5rem 0;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 700;
}
.profile-email {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.profile-level {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.profile-section {
  margin-top: 1.5rem;
}
.profile-section h3 {
  margin-bottom: 0.75rem;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profile-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.profile-info-row:hover { border-color: var(--border-light); }
.profile-info-label { color: var(--text-secondary); font-size: 0.85rem; }
.profile-info-value { font-weight: 600; font-size: 0.85rem; }
