.profile-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 48px 8%;
  gap: 32px;
  background-color: var(--aqua);
  background-image: url("../images/home/section-02/background-texture.png");
  background-size: cover;
  position: relative;
}

.profile-card {
  background-color: #ccf9fe;
  width: 100%;
  max-width: 700px;
  padding: 32px 24px 24px;
  border-radius: 31px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}

.profile-title {
  font-size: 28px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.profile-subtitle {
  color: #054da7;
  font-size: 14px;
  margin-bottom: 24px;
}

.profile-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: linear-gradient(180deg, #fff45f 0%, #ffe753 55%, #fdc738 100%);
  object-fit: contain;
  object-position: center 60%;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.profile-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  border: 1px solid #a5e3ed;
}

.profile-info-label {
  font-size: 13px;
  font-weight: 600;
  color: #054da7;
  text-transform: uppercase;
}

.profile-info-value {
  font-size: 15px;
  font-weight: 500;
  color: #151515;
  word-break: break-all;
  text-align: right;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-actions .submit-btn,
.profile-actions .submit-btn-2,
.profile-actions .submit-btn-3 {
  margin-bottom: 0;
  width: 100%;
  text-decoration: none;
  justify-content: center;
}

.profile-actions button {
  border: none;
  font-family: inherit;
}

.profile-chicken {
  display: none;
}

.profile-person {
  display: none;
}

.profile-loading,
.profile-guest {
  color: #054da7;
  font-size: 18px;
  padding: 48px 16px;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .profile-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .profile-actions .submit-btn,
  .profile-actions .submit-btn-2,
  .profile-actions .submit-btn-3,
  .profile-actions button {
    width: auto;
    min-width: 180px;
    flex: 1;
    max-width: 220px;
  }

  .profile-chicken {
    display: block;
    position: absolute;
    bottom: 0;
    right: 18px;
    width: 180px;
    pointer-events: none;
  }

  .profile-person {
    display: block;
    position: absolute;
    left: -60px;
    top: -70px;
    width: 200px;
    pointer-events: none;
  }
}
