.profile-center-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.profile-center-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.18);
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 113, 227, 0.16);
  color: #0071e3;
}

body.theme-dark .profile-center-link {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

body.theme-dark .profile-center-link:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #8ec5ff;
}

.site-footer {
  width: 100%;
  margin: 56px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 248, 252, 0.92));
}

.site-footer-inner {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 26px;
  background: transparent;
}

.site-footer-brand {
  min-width: 0;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.2;
}

.site-footer-mark {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.72), transparent 16%),
    linear-gradient(145deg, #0a84ff 0%, #5e5ce6 52%, #1d1d1f 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.2);
}

.site-footer-slogan {
  margin: 9px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(29, 29, 31, 0.62);
  font-size: 13px;
  font-weight: 650;
}

.site-footer-links a,
.site-footer-links span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer-links a:hover {
  background: rgba(0, 113, 227, 0.08);
  color: #0071e3;
}

body.theme-dark .site-footer-inner {
  background: transparent;
}

body.theme-dark .site-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 16, 20, 0.78), rgba(8, 9, 12, 0.94));
}

body.theme-dark .site-footer-logo {
  color: rgba(255, 255, 255, 0.92);
}

body.theme-dark .site-footer-slogan,
body.theme-dark .site-footer-links {
  color: rgba(255, 255, 255, 0.62);
}

body.theme-dark .site-footer-links a:hover {
  background: rgba(10, 132, 255, 0.16);
  color: #8ec5ff;
}

@media (max-width: 760px) {
  .profile-center-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .site-footer {
    margin-top: 36px;
  }

  .site-footer-inner {
    width: min(100% - 28px, 1320px);
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 0 24px;
  }

  .site-footer-links {
    justify-content: flex-start;
  }
}
