.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-6);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  color: white;
  margin-bottom: var(--spacing-6);
}

.userInfo {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

.avatar {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

.name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.stats {
  display: flex;
  gap: var(--spacing-6);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.statValue {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.statLabel {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--spacing-1);
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: var(--spacing-4);
    text-align: center;
  }

  .stats {
    gap: var(--spacing-4);
  }

  .stat {
    min-width: 80px;
  }

  .statValue {
    font-size: 1.5rem;
  }
}