:root {
  color-scheme: dark;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  background: #050b14;
  color: #eaf4ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(27, 226, 255, .13), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(65, 105, 255, .12), transparent 34%),
    #050b14;
}

button, input { font: inherit; }

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
}

.login-showcase {
  padding: clamp(42px, 7vw, 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-showcase::after {
  content: "";
  position: absolute;
  inset: 8% 5% auto auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(104, 227, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(27, 226, 255, .08);
  pointer-events: none;
}

.login-brand,
.login-panel-brand {
  color: #67e8f9;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.login-showcase h1 {
  max-width: 760px;
  margin: 18px 0 12px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.login-intro,
.login-public-note,
.login-panel p,
.login-contact {
  color: #8fa6bf;
  line-height: 1.7;
}

.login-leader-cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
}

.login-stat-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(88, 213, 255, .18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9, 25, 42, .94), rgba(5, 13, 24, .92));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.login-stat-label {
  color: #93a9bf;
  font-size: 13px;
  letter-spacing: .04em;
}

.login-stat-rate {
  display: block;
  margin: 18px 0 12px;
  color: #4ff1c2;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: -.04em;
}

.login-stat-leaders {
  display: grid;
  gap: 7px;
  color: #eaf4ff;
  font-size: 14px;
}

.login-stat-sample { color: #7890a8; font-size: 12px; }
.loading-card { color: #7890a8; display: flex; align-items: center; }

.login-panel {
  border-left: 1px solid rgba(93, 217, 255, .14);
  background: rgba(5, 12, 22, .82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  backdrop-filter: blur(18px);
}

.login-panel-inner {
  width: min(100%, 430px);
  padding: 38px;
  border: 1px solid rgba(88, 213, 255, .18);
  border-radius: 24px;
  background: rgba(9, 22, 37, .82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.login-panel h2 { margin: 16px 0 6px; font-size: 34px; }
.login-panel form { margin-top: 30px; display: grid; gap: 10px; }
.login-panel label { margin-top: 8px; color: #b8c8d8; font-size: 14px; }

.login-panel input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(121, 190, 222, .24);
  border-radius: 12px;
  background: #07111e;
  color: #f5fbff;
  outline: none;
}

.login-panel input:focus {
  border-color: #47dff6;
  box-shadow: 0 0 0 3px rgba(71, 223, 246, .12);
}

.password-field { position: relative; }
.password-field input { padding-right: 70px; }
.text-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #62dff3;
  cursor: pointer;
}

.login-button {
  height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  color: #03101c;
  font-weight: 850;
  cursor: pointer;
}
.login-button:disabled { opacity: .6; cursor: wait; }
.login-error { min-height: 22px; color: #ff7f8b; font-size: 14px; }
.login-contact { margin: 24px 0 0; font-size: 13px; }
.login-public-note { margin-top: 18px; font-size: 13px; }

@media (max-width: 1000px) {
  .login-shell { grid-template-columns: 1fr; }
  .login-panel { border-left: 0; border-top: 1px solid rgba(93, 217, 255, .14); }
  .login-leader-cards { grid-template-columns: repeat(3, minmax(180px, 1fr)); overflow-x: auto; }
}

@media (max-width: 680px) {
  .login-showcase { padding: 34px 20px; }
  .login-leader-cards { grid-template-columns: 1fr; overflow: visible; }
  .login-panel { padding: 22px 16px 38px; }
  .login-panel-inner { padding: 28px 22px; }
}


/* KONGS login gold title V1
   仅改变标题颜色与光效；沿用原有 font-size、line-height 和布局。 */
.login-showcase h1 {
  color: #ffd76a;
  background: linear-gradient(
    180deg,
    #fff8cf 0%,
    #ffe487 30%,
    #ffc94f 62%,
    #e99a13 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 8px rgba(255, 222, 126, .68),
    0 0 20px rgba(255, 190, 54, .45),
    0 0 42px rgba(229, 145, 0, .25);
  filter: drop-shadow(0 0 7px rgba(255, 198, 72, .32));
}

/* 首页会员与在线客服卡 V1 */
.login-showcase > .login-brand { order: 1; }
.login-showcase > h1 { order: 2; }
.login-showcase > .login-intro { order: 3; }
.login-showcase > .login-leader-cards { order: 4; }
.login-showcase > .login-public-note { order: 5; }
.login-showcase > .membership-support-card { order: 6; }

.membership-support-card {
  width: min(960px, 100%);
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(255, 207, 86, .42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 0%, rgba(38, 221, 190, .09), transparent 32%),
    linear-gradient(145deg, rgba(19, 38, 55, .96), rgba(25, 20, 34, .95));
  box-shadow: 0 22px 65px rgba(0, 0, 0, .28);
}

.membership-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.membership-price {
  min-height: 132px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 9px;
  padding: 17px;
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(35, 75, 90, .76), rgba(20, 43, 69, .88));
}
.membership-price-trial { border: 1px solid rgba(52, 226, 165, .58); }
.membership-price-monthly { border: 1px solid rgba(255, 204, 75, .58); }
.membership-price strong { color: #eaf4ff; font-size: 15px; }
.membership-badge {
  padding: 4px 10px;
  border-radius: 999px;
  color: #d8fff3;
  background: rgba(18, 160, 124, .24);
  border: 1px solid rgba(48, 224, 171, .38);
  font-size: 11px;
  font-weight: 750;
}
.membership-price-monthly .membership-badge {
  color: #fff0b6;
  background: rgba(160, 113, 14, .24);
  border-color: rgba(255, 205, 81, .38);
}
.membership-amount { display: flex; align-items: end; gap: 8px; }
.membership-amount span {
  color: #fff;
  font-size: 42px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.04em;
}
.membership-amount small {
  padding: 4px 9px;
  border: 1px solid rgba(180, 207, 228, .2);
  border-radius: 999px;
  color: #c8d6e4;
  font-size: 11px;
}

.membership-fee-note,
.membership-site,
.membership-contact-copy {
  margin: 14px 0 0;
  padding: 13px 15px;
  border-radius: 14px;
  color: #c8d7e4;
  line-height: 1.65;
  font-size: 13px;
}
.membership-fee-note {
  border: 1px solid rgba(255, 200, 62, .32);
  background: rgba(86, 61, 21, .22);
}
.membership-site {
  text-align: center;
  color: #c9fff0;
  border: 1px solid rgba(49, 217, 172, .28);
  background: rgba(18, 111, 89, .18);
}
.membership-site strong { letter-spacing: .04em; color: #fff; }
.membership-contact-copy {
  border: 1px solid rgba(255, 198, 70, .24);
  background: rgba(65, 43, 41, .35);
}
.membership-contact-copy h2 { margin: 0 0 5px; font-size: 17px; }
.membership-contact-copy p { margin: 0; color: #c4d0db; }
.membership-actions { display: grid; gap: 9px; margin-top: 14px; }
.support-primary-button,
.support-secondary-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}
.support-primary-button {
  border: 1px solid rgba(69, 241, 195, .4);
  color: #eafff9;
  background: linear-gradient(135deg, #0d7768, #0b8d77);
}
.support-primary-button:hover { filter: brightness(1.08); }
.support-secondary-link {
  border: 1px solid rgba(113, 168, 207, .2);
  color: #91dff0;
  background: rgba(7, 20, 33, .64);
  font-size: 12px;
}

.support-dialog {
  width: min(720px, calc(100% - 26px));
  height: min(760px, calc(100vh - 26px));
  padding: 0;
  border: 1px solid rgba(69, 218, 239, .25);
  border-radius: 22px;
  background: #07121f;
  color: #eaf4ff;
  box-shadow: 0 35px 110px rgba(0, 0, 0, .62);
}
.support-dialog::backdrop { background: rgba(0, 5, 12, .78); backdrop-filter: blur(7px); }
.support-dialog-shell { height: 100%; display: grid; grid-template-rows: auto minmax(0, 1fr) auto auto; }
.support-dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(94, 205, 234, .14);
}
.support-dialog-brand { color: #5ee8f7; font-size: 12px; font-weight: 850; letter-spacing: .09em; }
.support-dialog-header h2 { margin: 7px 0 3px; font-size: 24px; }
.support-dialog-header p { margin: 0; color: #8299ae; line-height: 1.5; font-size: 12px; }
.support-close-button {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(121, 195, 222, .2);
  color: #a7c0d4; background: #0a1a2a; font-size: 24px; cursor: pointer;
}
.support-message-list {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(5, 14, 25, .5), rgba(5, 12, 21, .9));
}
.support-empty-state { margin: auto; color: #7690a6; text-align: center; line-height: 1.7; }
.support-message { max-width: 82%; display: grid; gap: 6px; }
.support-message.visitor { align-self: flex-end; justify-items: end; }
.support-message.admin { align-self: flex-start; justify-items: start; }
.support-message-bubble {
  padding: 10px 13px;
  border-radius: 15px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.55;
  font-size: 14px;
}
.support-message.visitor .support-message-bubble { color: #edfffa; background: #0b7667; border-bottom-right-radius: 4px; }
.support-message.admin .support-message-bubble { color: #e8f3ff; background: #14283b; border-bottom-left-radius: 4px; }
.support-message-time { color: #678096; font-size: 10px; }
.support-message-image { max-width: min(340px, 75vw); max-height: 320px; border-radius: 12px; border: 1px solid rgba(129, 195, 220, .2); object-fit: contain; background: #030a12; }
.support-message-form { padding: 14px 18px 12px; border-top: 1px solid rgba(94, 205, 234, .14); background: #081725; }
.support-message-form textarea {
  width: 100%; resize: none; border: 1px solid rgba(111, 190, 219, .22); border-radius: 12px;
  background: #050e19; color: #eff9ff; padding: 12px; outline: none; font: inherit;
}
.support-message-form textarea:focus { border-color: #49dff3; box-shadow: 0 0 0 3px rgba(73, 223, 243, .1); }
.support-compose-actions { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; margin-top: 9px; }
.support-image-button, .support-send-button {
  min-height: 38px; padding: 0 14px; border-radius: 9px; cursor: pointer; font-weight: 750;
}
.support-image-button { display: flex; align-items: center; border: 1px solid rgba(107, 191, 221, .22); color: #9cecf9; background: #0a1a2b; }
.support-send-button { border: 0; color: #03111c; background: linear-gradient(135deg, #22d3ee, #3b82f6); }
.support-send-button:disabled { opacity: .6; cursor: wait; }
.support-send-status { color: #7f98ad; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.support-image-preview { margin-top: 8px; padding: 8px 10px; border-radius: 9px; color: #9ed7e6; background: rgba(22, 67, 82, .28); font-size: 11px; }
.support-bilibili-link { padding: 0 18px 14px; color: #82cfe0; text-align: center; font-size: 11px; text-decoration: none; background: #081725; }

@media (max-width: 680px) {
  .login-showcase > .membership-support-card { order: 4; }
  .login-showcase > .login-leader-cards { order: 5; }
  .login-showcase > .login-public-note { order: 6; }
  .membership-support-card { margin-top: 24px; padding: 14px; }
  .membership-price-grid { gap: 9px; }
  .membership-price { min-height: 115px; padding: 12px 8px; }
  .membership-amount { display: grid; justify-items: center; gap: 7px; }
  .membership-amount span { font-size: 35px; }
  .membership-fee-note, .membership-site, .membership-contact-copy { padding: 11px 12px; font-size: 12px; }
  .support-dialog { width: 100%; height: 100%; max-width: none; max-height: none; border-radius: 0; border: 0; }
  .support-dialog-header { padding: 16px; }
  .support-message-list { padding: 14px; }
  .support-message-form { padding: 12px; }
  .support-compose-actions { grid-template-columns: auto 1fr; }
  .support-send-status { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-height: 900px) and (min-width: 1001px) {
  .login-showcase { justify-content: flex-start; overflow-x: hidden; overflow-y: auto; }
}

/* BEGIN KONGS KOI WARM LIGHT THEME V1
   仅调整登录页配色，不改变现有页面布局。 */
:root {
  color-scheme: light;
  background: #fff7ed;
  color: #3b2923;
}

body {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 122, 69, .16), transparent 31%),
    radial-gradient(circle at 82% 78%, rgba(242, 174, 46, .15), transparent 31%),
    linear-gradient(180deg, #fffaf4, #fff4e7);
  color: #3b2923;
}

.login-showcase::after {
  border-color: rgba(239, 77, 61, .13);
  box-shadow: 0 0 80px rgba(239, 77, 61, .08);
}

.login-brand,
.login-panel-brand,
.support-dialog-brand {
  color: #ef4d3d;
}

.login-showcase h1 {
  color: #ef4d3d;
  background: linear-gradient(180deg, #ff654f 0%, #ef4d3d 54%, #d93832 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 28px rgba(239, 77, 61, .14);
  filter: none;
}

.login-intro,
.login-public-note,
.login-panel p,
.login-contact,
.login-stat-label,
.login-stat-sample,
.loading-card {
  color: #8a7065;
}

.login-stat-card {
  border-color: #f0d6c3;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,247,237,.9));
  box-shadow: 0 18px 50px rgba(139, 78, 45, .09);
}

.login-stat-rate {
  color: #e34a3d;
}

.login-stat-leaders {
  color: #4b332b;
}

.login-panel {
  border-left-color: rgba(232, 190, 163, .68);
  background: rgba(255, 250, 244, .78);
}

.login-panel-inner {
  border-color: #efd4c0;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 30px 90px rgba(111, 60, 36, .14);
}

.login-panel h2,
.membership-contact-copy h2,
.support-dialog-header h2 {
  color: #402b24;
}

.login-panel label {
  color: #705248;
}

.login-panel input,
.support-message-form textarea {
  border-color: #e9cbb5;
  background: #fffaf4;
  color: #3d2a24;
}

.login-panel input:focus,
.support-message-form textarea:focus {
  border-color: #ef6a55;
  box-shadow: 0 0 0 3px rgba(239, 77, 61, .10);
}

.text-button {
  color: #df493d;
}

.login-button {
  background: linear-gradient(135deg, #ff6f55, #ef4d3d);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 77, 61, .19);
}

.login-error {
  color: #c93c43;
}

.membership-support-card {
  border-color: rgba(242, 174, 46, .45);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 122, 69, .10), transparent 32%),
    linear-gradient(145deg, rgba(255,253,248,.97), rgba(255,245,231,.96));
  box-shadow: 0 22px 65px rgba(139, 78, 45, .11);
}

.membership-price {
  background: linear-gradient(145deg, #fffaf2, #fff1df);
}

.membership-price-trial {
  border-color: rgba(239, 77, 61, .38);
}

.membership-price-monthly {
  border-color: rgba(242, 174, 46, .55);
}

.membership-price strong,
.membership-amount span,
.membership-site strong {
  color: #4a3028;
}

.membership-badge {
  color: #c94136;
  background: rgba(239, 77, 61, .08);
  border-color: rgba(239, 77, 61, .24);
}

.membership-price-monthly .membership-badge {
  color: #a8680d;
  background: rgba(242, 174, 46, .11);
  border-color: rgba(233, 163, 35, .28);
}

.membership-amount small {
  border-color: #ebcfba;
  color: #8c6d60;
  background: rgba(255,255,255,.56);
}

.membership-fee-note,
.membership-site,
.membership-contact-copy {
  color: #6f5146;
}

.membership-fee-note {
  border-color: rgba(242, 174, 46, .34);
  background: rgba(255, 242, 204, .62);
}

.membership-site {
  color: #a56110;
  border-color: rgba(242, 174, 46, .30);
  background: rgba(255, 247, 226, .86);
}

.membership-contact-copy {
  border-color: rgba(239, 77, 61, .22);
  background: rgba(255, 238, 231, .72);
}

.membership-contact-copy p {
  color: #7c5d52;
}

.support-primary-button,
.support-send-button {
  border-color: rgba(239, 77, 61, .30);
  color: #fff;
  background: linear-gradient(135deg, #ff6f55, #ef4d3d);
}

.support-secondary-link {
  border-color: #e9cbb5;
  color: #bf5b43;
  background: rgba(255, 253, 248, .82);
}

.support-dialog {
  border-color: #efc9ae;
  background: #fffdf8;
  color: #3d2a24;
  box-shadow: 0 35px 110px rgba(92, 48, 29, .20);
}

.support-dialog::backdrop {
  background: rgba(74, 43, 31, .42);
}

.support-dialog-header,
.support-message-form {
  border-color: #efd6c2;
  background: #fffaf4;
}

.support-dialog-header p,
.support-empty-state,
.support-message-time,
.support-send-status {
  color: #8c7064;
}

.support-close-button {
  border-color: #e9cbb5;
  color: #b65743;
  background: #fff3e6;
}

.support-message-list {
  background: linear-gradient(180deg, #fffdf8, #fff7ed);
}

.support-message.visitor .support-message-bubble {
  color: #fff;
  background: #ef604a;
}

.support-message.admin .support-message-bubble {
  color: #4a3128;
  background: #fff0df;
  border: 1px solid #efd8c4;
}

.support-message-image {
  border-color: #ead0bd;
  background: #fffaf4;
}

.support-image-button {
  border-color: #e8bea3;
  color: #b95741;
  background: #fff8ef;
}

.support-image-preview {
  color: #a05640;
  background: rgba(255, 232, 217, .72);
}

.support-bilibili-link {
  color: #b85c42;
  background: #fffaf4;
}
/* END KONGS KOI WARM LIGHT THEME V1 */

/* BEGIN KONGS FINAL LOGIN POLISH V1
   仅优化登录页字体层级、卡片平整度和移动端密度；不改变内容顺序与整体布局。 */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
button,
input,
textarea {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-brand,
.login-panel-brand,
.support-dialog-brand {
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.10em;
}

.login-showcase h1 {
  margin: 16px 0 10px;
  line-height: 1.08;
}

.login-intro,
.login-public-note,
.login-panel p,
.login-contact {
  line-height: 1.65;
}

.login-leader-cards {
  margin-top: 34px;
  gap: 14px;
}

.login-stat-card {
  min-height: 170px;
  padding: 20px;
  border-radius: 17px;
}

.login-stat-label {
  font-size: 13px;
  line-height: 1.45;
}

.login-stat-rate {
  margin: 16px 0 10px;
  font-size: clamp(34px, 3.6vw, 44px);
  line-height: 1;
}

.login-stat-leaders {
  gap: 5px;
  font-size: 14px;
  line-height: 1.45;
}

.login-stat-sample {
  font-size: 12px;
}

.membership-support-card {
  margin-top: 30px;
  padding: 18px;
  border-radius: 20px;
}

.membership-price-grid {
  gap: 12px;
}

.membership-price {
  min-height: 124px;
  gap: 8px;
  padding: 15px;
  border-radius: 15px;
}

.membership-price strong {
  font-size: 15px;
  line-height: 1.35;
}

.membership-amount span {
  font-size: 39px;
}

.membership-fee-note,
.membership-site,
.membership-contact-copy {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.6;
}

.membership-contact-copy h2 {
  font-size: 16px;
  line-height: 1.4;
}

.membership-actions {
  margin-top: 12px;
  gap: 8px;
}

.support-primary-button,
.support-secondary-link {
  min-height: 44px;
  border-radius: 10px;
}

.login-panel {
  padding: 32px;
}

.login-panel-inner {
  width: min(100%, 420px);
  padding: 34px;
  border-radius: 22px;
}

.login-panel h2 {
  margin: 14px 0 6px;
  font-size: 31px;
  line-height: 1.25;
}

.login-panel form {
  margin-top: 25px;
  gap: 9px;
}

.login-panel label {
  font-size: 13px;
}

.login-panel input {
  height: 48px;
  border-radius: 11px;
}

.login-button {
  height: 50px;
  margin-top: 15px;
  border-radius: 11px;
}

.login-contact {
  margin-top: 21px;
  font-size: 12px;
}

.support-dialog-header h2 {
  font-size: 22px;
}

.support-message-bubble {
  font-size: 14px;
}

@media (max-width: 680px) {
  .login-showcase {
    padding: 28px 18px 34px;
  }

  .login-brand {
    font-size: 12px;
  }

  .login-showcase h1 {
    margin: 13px 0 9px;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 1.1;
  }

  .login-intro {
    font-size: 15px;
    line-height: 1.6;
  }

  .membership-support-card {
    margin-top: 21px;
    padding: 12px;
    border-radius: 18px;
  }

  .membership-price-grid {
    gap: 8px;
  }

  .membership-price {
    min-height: 104px;
    padding: 10px 7px;
    gap: 6px;
    border-radius: 14px;
  }

  .membership-badge {
    padding: 3px 8px;
    font-size: 10px;
  }

  .membership-price strong {
    font-size: 14px;
  }

  .membership-amount {
    gap: 5px;
  }

  .membership-amount span {
    font-size: 32px;
  }

  .membership-amount small {
    padding: 3px 7px;
    font-size: 10px;
  }

  .membership-fee-note,
  .membership-site,
  .membership-contact-copy {
    margin-top: 9px;
    padding: 10px 11px;
    font-size: 12px;
    line-height: 1.55;
  }

  .membership-contact-copy h2 {
    font-size: 16px;
  }

  .membership-actions {
    margin-top: 10px;
  }

  .support-primary-button,
  .support-secondary-link {
    min-height: 42px;
    font-size: 13px;
  }

  .login-leader-cards {
    margin-top: 24px;
    gap: 12px;
  }

  .login-stat-card {
    min-height: 150px;
    padding: 18px;
    border-radius: 16px;
  }

  .login-stat-label {
    font-size: 13px;
  }

  .login-stat-rate {
    margin: 14px 0 10px;
    font-size: 37px;
  }

  .login-stat-leaders {
    font-size: 14px;
  }

  .login-public-note {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.6;
  }

  .login-panel {
    padding: 18px 14px 34px;
  }

  .login-panel-inner {
    padding: 25px 19px;
    border-radius: 18px;
  }

  .login-panel h2 {
    font-size: 28px;
  }

  .login-panel p {
    font-size: 13px;
  }

  .login-panel form {
    margin-top: 21px;
  }

  .login-panel input {
    height: 46px;
  }

  .login-button {
    height: 48px;
  }

  .support-dialog-header h2 {
    font-size: 20px;
  }

  .support-dialog-header p {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .login-showcase {
    padding-left: 14px;
    padding-right: 14px;
  }

  .login-showcase h1 {
    font-size: 36px;
  }

  .membership-price strong {
    font-size: 13px;
  }

  .membership-amount span {
    font-size: 30px;
  }
}
/* END KONGS FINAL LOGIN POLISH V1 */

/* BEGIN KONGS LOGIN LEGAL NOTE V1
   桌面端固定在登录页右侧底部；移动端自然排在登录卡片下方。 */
.login-panel {
  position: relative;
}

.login-legal-note {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 20px;
  margin: 0;
  color: #9a8176;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
  letter-spacing: 0.01em;
}

.login-legal-note span {
  display: block;
}

@media (max-width: 1000px) {
  .login-legal-note {
    position: static;
    width: min(100%, 420px);
    margin: 16px auto 0;
    padding: 0 6px;
  }
}

@media (max-width: 680px) {
  .login-legal-note {
    margin-top: 14px;
    font-size: 10px;
    line-height: 1.7;
  }
}
/* END KONGS LOGIN LEGAL NOTE V1 */
