.contact-admin-link {
  width: 100%;
  margin-top: 2px !important;
  padding: 12px 13px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  border: 1px solid #e2e6ea !important;
  border-radius: 10px !important;
  color: #4b5563 !important;
  background: #ffffffa8 !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

.contact-admin-link:hover {
  color: #d8541f !important;
  border-color: #f3b397 !important;
  background: #fff8f4 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px #e6622a12 !important;
}

.contact-admin-link .ti-brand-wechat { color: #12b76a; font-size: 17px; }
.contact-admin-link .ti-chevron-right { margin-left: auto; color: #a1a8b0; }

.account-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.account-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: #17202b52;
  backdrop-filter: blur(10px);
  animation: account-fade-in .2s ease-out both;
}

.account-modal-card {
  position: relative;
  z-index: 1;
  width: min(430px, 94vw);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: 30px;
  border: 1px solid #ffffff;
  border-radius: 22px;
  color: #17202b;
  background: #fffffff5;
  box-shadow: 0 30px 90px #1520322e;
  animation: account-card-in .32s cubic-bezier(.16, 1, .3, 1) both;
}

.account-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #e5e8eb;
  border-radius: 50%;
  color: #66717d;
  background: #fff;
  box-shadow: none;
}

.account-modal-heading { padding-right: 38px; }
.account-modal-heading .modal-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  color: #f15a24;
  background: #fff1e9;
  font-size: 20px;
}

.account-modal-heading h2 {
  margin: 0 0 7px;
  color: #17202b;
  font-size: 24px;
}

.account-modal-heading p {
  margin: 0;
  color: #75808c;
  font-size: 13px;
  line-height: 1.65;
}

.admin-qr {
  width: min(280px, 76vw);
  display: block;
  margin: 24px auto 17px;
  padding: 8px;
  border: 1px solid #e7ebee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px #27334217;
}

.admin-qr-note {
  margin: 0;
  text-align: center;
  color: #4f5b67;
  font-size: 13px;
}

.password-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.password-form label {
  color: #35404b;
  font-size: 13px;
  font-weight: 700;
}

.password-form input {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #dce2e7;
  border-radius: 9px;
  color: #17202b;
  background: #fff;
  font-size: 14px;
}

.password-form input:focus {
  outline: none;
  border-color: #f15a24;
  box-shadow: 0 0 0 4px #f15a2412;
}

.password-form button {
  width: 100%;
  margin-top: 2px;
}

.password-form .form-error {
  min-height: 20px;
  margin: -4px 0 0;
  color: #d04423;
  font-size: 13px;
}

.password-form .form-success {
  color: #16845b;
}

@keyframes account-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes account-card-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 720px) {
  .account-action { padding-inline: 7px !important; }
  .account-action i { display: none; }
  .account-modal-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .account-modal-backdrop, .account-modal-card { animation: none; }
}
