[data-project="profile"] .profile-card-large {
  background: transparent;
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

[data-project="profile"] .profile-avatar-large {
  width: 80px;
  height: 80px;
  font-size: 40px;
  background: #F2F2F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

[data-project="profile"] .profile-info-large h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #000;
}

[data-project="profile"] .profile-info-large p {
  color: #8E8E93;
  font-size: 15px;
  max-width: 250px;
  margin: 0 auto;
}

[data-project="profile"]#chatProfileView {
  background: var(--app-gradient);
  display: flex !important;
  flex-direction: column !important;
}

[data-project="profile"]#chatProfileView .profile-page-header {
  background: transparent;
}

[data-project="profile"]#chatProfileView .profile-header-card,
[data-project="profile"]#chatProfileView .profile-menu-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  border-radius: 26px;
}

[data-project="profile"] .profile-page-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

[data-project="profile"] .profile-page-header {
  padding: 16px 24px 8px;
  text-align: center;
  background: transparent;
}

[data-project="profile"] .profile-page-header h1 {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1F;
  letter-spacing: -0.3px;
  margin: 0;
}

[data-project="profile"] .profile-scroll-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 20px 100px;
  width: 100%;
  min-height: 100%;
  background: transparent;
  position: relative;
  z-index: 10;
}

[data-project="profile"] .profile-header-card {
  margin: 0 0 24px 0;
  padding: 32px 24px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

[data-project="profile"] .profile-avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
}

[data-project="profile"] .profile-avatar-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #FFE4EC 0%, #FFF0F5 100%);
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-project="profile"] .profile-avatar-wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 182, 193, 0.35);
}

[data-project="profile"] .avatar-edit-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: linear-gradient(135deg, #FFB6C1 0%, #FF8FA3 100%);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FFFFFF;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 143, 163, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-project="profile"] .avatar-edit-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 12px rgba(255, 143, 163, 0.5);
}

[data-project="profile"] .profile-info-text h2 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #1D1D1F;
  font-weight: 700;
  letter-spacing: -0.5px;
  cursor: pointer;
  transition: color 0.2s ease;
}

[data-project="profile"] .profile-info-text h2:hover {
  color: #FF8FA3;
}

[data-project="profile"] .profile-info-text p {
  color: #8E8E93;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.2s ease;
}

[data-project="profile"] .profile-info-text p:hover {
  color: #FF8FA3;
}

[data-project="profile"] .profile-menu-section {
  margin-bottom: 16px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 8px;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.03),
    0 1px 2px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

[data-project="profile"] .profile-menu-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 4px;
}

[data-project="profile"] .profile-menu-item:last-child {
  margin-bottom: 0;
}

[data-project="profile"] .profile-menu-item:hover {
  background: #FAFAFA;
  transform: translateX(4px);
}

[data-project="profile"] .profile-menu-item:active {
  transform: scale(0.98);
  background: #F5F5F7;
}

[data-project="profile"] .menu-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-project="profile"] .profile-menu-item:hover .menu-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

[data-project="profile"] .menu-label {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #1D1D1F;
  letter-spacing: -0.2px;
}

[data-project="profile"] .menu-arrow {
  transition: transform 0.25s ease;
}

[data-project="profile"] .profile-menu-item:hover .menu-arrow {
  transform: translateX(3px);
}
