.tab-panel[data-tab-panel="mine"] {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mine-page {
  display: grid;
  gap: 10px;
}

.tab-page.mine-page {
  width: calc(100% - 30px);
  max-width: 430px;
  margin-top: 0;
  padding: 11px 0 0;
}

.mine-hero {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 13px 10px 11px;
  border: 1px solid rgba(15, 139, 83, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 251, 242, 0.96) 0%, rgba(247, 252, 242, 0.96) 46%, rgba(230, 245, 221, 0.96) 100%);
  box-shadow: 0 10px 28px rgba(80, 70, 52, 0.08);
}

.mine-hero::after {
  position: absolute;
  top: -42px;
  right: -24px;
  width: 176px;
  height: 184px;
  border-radius: 42% 0 0 58%;
  background:
    repeating-linear-gradient(122deg, rgba(187, 206, 155, 0.22) 0 1px, transparent 1px 9px);
  content: "";
  opacity: 0.42;
  transform: rotate(9deg);
}

.mine-identity-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0 7px;
}

.mine-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(145deg, #19ae69, #07844d);
  box-shadow: 0 8px 18px rgba(15, 139, 83, 0.28);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.mine-identity {
  min-width: 0;
}

.mine-identity h2 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #073d31;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.08;
}

.mine-identity p {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 24px;
  margin: 7px 0 0;
  padding: 0 9px;
  border: 1px solid rgba(15, 139, 83, 0.14);
  border-radius: 7px;
  background: rgba(230, 247, 239, 0.86);
  box-shadow: 0 5px 10px rgba(15, 139, 83, 0.12);
  color: #0b8c55;
  font-size: 13px;
  font-weight: 800;
}

.mine-identity p svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.mine-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 72px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(89, 77, 58, 0.08);
}

.mine-stats button {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  min-width: 0;
  padding: 7px 4px 6px;
  color: #111514;
  text-align: center;
  transition: background 160ms ease, transform 160ms ease;
}

.mine-stats button + button::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 1px;
  background: rgba(16, 17, 18, 0.1);
  content: "";
}

.mine-stats button:hover {
  background: rgba(15, 139, 83, 0.05);
}

.mine-stats button:active {
  transform: translateY(1px);
}

.mine-stats svg {
  width: 21px;
  height: 21px;
  color: #12945b;
  stroke-width: 2.1;
}

.mine-stats button:first-child svg {
  fill: #26b36e;
  filter: drop-shadow(0 6px 8px rgba(15, 139, 83, 0.2));
}

.mine-stats strong {
  color: #0d1110;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}

.mine-stats em {
  color: #606765;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.mine-section {
  padding: 11px 14px 4px;
  border: 1px solid rgba(16, 17, 18, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 9px 22px rgba(80, 70, 52, 0.06);
}

.mine-section h2 {
  position: relative;
  margin: 0 0 7px;
  padding-left: 12px;
  color: #191f1e;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.mine-section h2::before {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: #0f9a5b;
  content: "";
}

.mine-menu {
  display: grid;
}

.mine-menu-row {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 16px;
  gap: 11px;
  align-items: center;
  min-height: 39px;
  padding: 0 0 0 2px;
  color: #202524;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  transition: color 160ms ease, transform 160ms ease;
}

.mine-menu-row + .mine-menu-row {
  border-top: 1px solid rgba(16, 17, 18, 0.08);
}

.mine-menu-row:hover {
  color: #0b8c55;
}

.mine-menu-row:active {
  transform: translateX(1px);
}
