.profile-header {
  background: linear-gradient(135deg, #00a6ff 0%, #0080ff 100%);
  padding: 32px 24px;
  border-radius: 0 0 24px 24px;
  margin: -16px -16px 24px;
  color: #fff;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.user-detail {
  flex: 1;
}

.user-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.user-name span:first-child {
  font-size: 20px;
  font-weight: 600;
}

.member-badge {
  padding: 4px 12px;
  background-color: rgba(255, 107, 87, 0.9);
  border-radius: 12px;
  font-size: 12px;
}

.welcome-text {
  font-size: 14px;
  opacity: 0.9;
}

.invite-section {
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.invite-label {
  font-size: 14px;
  color: #666;
}

.invite-code {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #00a6ff;
  letter-spacing: 1px;
}

.btn-copy {
  padding: 8px 16px;
  background-color: #e3f2fd;
  color: #00a6ff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-copy:hover {
  background-color: #bbdefb;
}

.stats-section {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.stat-box {
  flex: 1;
  background-color: #fff;
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-box .stat-value {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.stat-box .stat-label {
  font-size: 13px;
  color: #999;
}

.menu-list {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.3s;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background-color: #f8f8f8;
}

.menu-icon {
  width: 24px;
  height: 24px;
  color: #666;
}

.menu-item span {
  flex: 1;
  font-size: 15px;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  color: #ccc;
}
