/* Profile Components */

.profile-header-modern {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 204, 102, 0.05) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.profile-avatar-large {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.profile-avatar-large:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.profile-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.profile-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.profile-meta-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.profile-meta-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.follow-button-modern {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
  letter-spacing: 0.01em;
}

.follow-button-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.35);
}

.follow-button-modern.following {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.25);
}

.profile-bio {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
  margin-top: 1.5rem;
  max-width: 650px;
}

.profile-badge-container {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 204, 0.08);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--primary);
  border: 1px solid rgba(0, 102, 204, 0.15);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .profile-header-modern {
    padding: 1.5rem 1rem;
    border-radius: 14px;
  }

  .profile-avatar-large {
    width: 100px;
    height: 100px;
  }

  .profile-meta {
    gap: 1rem;
  }

  .profile-meta-value {
    font-size: 1.25rem;
  }

  .profile-bio {
    font-size: 0.9375rem;
  }

  .follow-button-modern {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}
