﻿/* Base shield / reset */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; }
body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  background: #1a1a2e;
  overflow: hidden;
  cursor: default;
  user-select: none;
}
body * { user-select: none; }
input, textarea { user-select: text; }
img { pointer-events: none; -webkit-user-drag: none; user-drag: none; }

.bg-wrapper { position: fixed; inset: 0; z-index: 0; }
.bg-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bg-overlay {
  position: fixed; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,26,46,.60) 0%, rgba(196,30,58,.40) 100%);
}

/* Loading page */
.page-loading {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.content {
  position: relative; z-index: 1; width: 100%; height: 100vh;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 10vh;
}
.logo-section { flex: 0 0 55%; display: flex; justify-content: center; align-items: center; width: 100%; }
.logo-section img {
  max-width: 280px; width: 80%; height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.4));
}
.loading-section {
  flex: 0 0 30%; display: flex; flex-direction: column;
  justify-content: flex-start; align-items: center; width: 100%; padding: 0 20px;
}
.progress-wrapper { width: 100%; max-width: 400px; position: relative; }
.progress-container {
  width: 100%; height: 8px; background: rgba(0,0,0,.4);
  border-radius: 4px; overflow: visible; position: relative;
}
.progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #c41e3a, #ff4757);
  border-radius: 4px; transition: width .1s linear; position: relative;
  box-shadow: 0 0 16px rgba(255,71,87,.35);
}
.loading-icon {
  position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
  width: 36px; height: 36px; background: #fff; border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.3); transition: left .1s linear;
}
.loading-icon img { width: 24px; height: 24px; animation: rotate 1s linear infinite; }
.progress-text {
  text-align: center; margin-top: 15px; color: #fff; font-size: 14px;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.progress-percent {
  font-size: 20px; font-weight: 700; color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
}

/* Login page */
.page-login { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif; }
.wrapper {
  position: relative; z-index: 2; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 5vh 4vw;
}
.logo { margin-bottom: 4vh; }
.logo img { width: clamp(120px, 25vw, 200px); filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.card {
  width: min(90vw, 420px); background: rgba(255,255,255,.97);
  border-radius: 24px; padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.card-title { font-size: 22px; line-height: 1.25; font-weight: 600; color: #1a1a2e; text-align: center; margin-bottom: 24px; }
.form-item { margin-bottom: 18px; }
.form-label { display: block; font-size: 14px; color: #666; margin-bottom: 8px; }
.input-wrapper { position: relative; }
.input-wrapper input {
  width: 100%; padding: 14px 16px; border: 2px solid #e0e0e0;
  border-radius: 12px; font-size: 16px; outline: none; transition: border-color .3s;
}
.input-wrapper input:focus { border-color: #c41e3a; }
.input-wrapper.error input { border-color: #ef4444; }
.error-tip { font-size: 12px; color: #ef4444; margin-top: 6px; display: none; }
.error-tip.show { display: block; }
.login-btn {
  width: 100%; padding: 16px; background: #c41e3a; color: #fff; border: 0;
  border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer;
  transition: background-color .2s, transform .15s, box-shadow .15s;
}
.login-btn:disabled { background: #ccc; cursor: not-allowed; }
.login-btn:not(:disabled):hover { background: #a3162d; box-shadow: 0 8px 18px rgba(196,30,58,.20); }
.login-btn:not(:disabled):active { transform: translateY(1px); }
.message-box { text-align: center; padding: 12px; margin-top: 16px; border-radius: 8px; font-size: 14px; display: none; }
.message-box.show { display: block; }
.message-box.success { background: #d1fae5; color: #059669; }
.message-box.error { background: #fee2e2; color: #dc2626; }
.verify-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: -2px 0 18px; }
.verify-btn {
  padding: 12px 10px; border: 1px solid rgba(196,30,58,.25); border-radius: 12px;
  background: rgba(196,30,58,.08); color: #c41e3a; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background-color .2s, border-color .2s, transform .15s;
}
.verify-btn:hover { background: rgba(196,30,58,.14); border-color: rgba(196,30,58,.45); }
.verify-btn:active { transform: translateY(1px); }
.loading-mask {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); display: none;
  align-items: center; justify-content: center; z-index: 100;
}
.loading-mask.show { display: flex; }
.loading-spinner {
  width: 50px; height: 50px; border: 4px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite;
}
.footer { position: fixed; bottom: 20px; z-index: 2; width: 100%; text-align: center; font-size: 14px; color: rgba(255,255,255,.6); }
.honeypot { position: absolute; left: -9999px; top: -9999px; }

/* Chaoziran mobile landing page */
.page-mobile-home {
  min-height: 100vh;
  overflow: hidden;
  background: #111;
  color: #eee;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}
.mobile-bg { position: fixed; inset: 0; z-index: 0; background: #16090c; }
.mobile-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.06); opacity: .9; }
.mobile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 34%, rgba(197, 20, 50, .15), rgba(0,0,0,.28) 42%, rgba(0,0,0,.76) 100%);
}
.mobile-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  height: 64px;
  padding: max(7px, env(safe-area-inset-top)) 20px 7px;
  gap: 14px;
  background: rgba(16, 21, 22, .96);
  box-shadow: 0 1px 0 rgba(255,255,255,.04);
}
.brand-mini { flex: 1; display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mini .app-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.brand-copy { min-width: 0; color: #fff; line-height: 1.1; }
.brand-copy strong { display: block; font-size: 15px; font-weight: 700; white-space: nowrap; }
.brand-copy span { display: block; margin-top: 4px; font-size: 10px; color: rgba(255,255,255,.68); white-space: nowrap; }
.download-mini {
  border: 1px solid rgba(255,255,255,.26);
  background: linear-gradient(180deg, rgba(151,38,47,.96), rgba(95,21,27,.96));
  color: rgba(255,255,255,.88);
  padding: 7px 13px;
  border-radius: 7px;
  font-size: 16px;
}
.mobile-menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
}
.mobile-menu-btn span { display: block; width: 26px; height: 2px; background: rgba(255,255,255,.75); }
.mobile-scroll {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}
.mobile-scroll::-webkit-scrollbar { width: 0; height: 0; }
.mobile-section {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 84px 28px 92px;
  text-align: center;
}
.hero-panel {
  position: relative;
}
.age-badge {
  position: absolute;
  left: 22px;
  top: 106px;
  z-index: 2;
  width: 50px;
  height: 60px;
  border: 2px solid #ffb52f;
  border-radius: 4px;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  overflow: hidden;
}
.age-badge b { display: block; padding-top: 5px; color: #ffab22; font-size: 25px; line-height: 1; }
.age-badge span { display: block; margin-top: 1px; color: #3a3a3a; font-size: 9px; font-weight: 800; }
.age-badge em { display: block; margin-top: 2px; padding-top: 2px; border-top: 1px solid #ddd; color: #222; font-size: 10px; font-style: normal; font-weight: 800; }
.hero-logo { width: min(70vw, 322px); margin-top: 18px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.62)); }
.hero-slogan { margin: 18px 0 28px; color: rgba(255,255,255,.78); letter-spacing: 2px; font-size: 16px; }
.hero-download {
  position: absolute;
  left: 50%;
  bottom: 104px;
  transform: translateX(-50%);
  width: min(66vw, 260px);
  height: 65px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #e6d186 0%, #bd9845 45%, #e2cd80 100%);
  color: #271408;
  font-size: 0;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0,0,0,.35), inset 0 0 0 1px rgba(100,62,19,.35);
  clip-path: polygon(4% 0, 96% 0, 100% 50%, 96% 100%, 4% 100%, 0 50%);
}
.hero-download span { display: block; font-size: 27px; letter-spacing: 2px; line-height: 1; }
.hero-download em { display: block; margin-top: 5px; font-size: 10px; letter-spacing: 8px; font-style: normal; color: rgba(39,20,8,.72); transform: translateX(4px); }
.hero-download:active { transform: translateX(-50%) translateY(1px); }
.hero-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(9,8,12,.95));
  pointer-events: none;
}
.swipe-tip {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(230,245,255,.78);
  font-size: 36px;
  animation: floatTip 1.4s ease-in-out infinite;
}
@keyframes floatTip { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }
.feature-section {
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.42));
}
.feature-section:nth-child(even) { background: linear-gradient(180deg, rgba(70,5,15,.28), rgba(0,0,0,.48)); }
.section-kicker {
  color: #c9153d;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 900;
  margin-bottom: 10px;
}
.feature-section h2 {
  font-size: clamp(34px, 10vw, 48px);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.88);
}
.feature-section p {
  max-width: 310px;
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1.7;
}
.mock-card, .news-list, .content-grid, .follow-icons {
  width: min(86vw, 360px);
  margin-top: 28px;
}
.mock-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
}
.mock-card span, .mock-card b, .mock-card em { display: block; }
.mock-card span { color: #c9153d; font-weight: 800; }
.mock-card b { color: #fff; font-size: 24px; margin: 10px 0; }
.mock-card em { color: rgba(255,255,255,.55); font-style: normal; }
.news-list { display: grid; gap: 12px; }
.news-list article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  text-align: left;
}
.news-list b { color: #fff; white-space: nowrap; }
.content-grid, .follow-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.content-grid span, .follow-icons span {
  display: grid;
  place-items: center;
  height: 86px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  font-size: 22px;
  font-weight: 800;
}
.follow-icons { grid-template-columns: repeat(3, 1fr); }
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  color: rgba(255,255,255,.78);
}
.mobile-drawer.show { display: block; }
.drawer-shade {
  position: absolute;
  inset: 0;
  background: rgba(10,10,12,.86);
  backdrop-filter: blur(2px);
}
.drawer-close {
  position: absolute;
  top: max(26px, env(safe-area-inset-top));
  right: 30px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.55);
  font-size: 54px;
  line-height: 1;
  font-weight: 200;
}
.drawer-menu {
  position: relative;
  z-index: 1;
  width: min(62vw, 310px);
  margin: max(96px, calc(env(safe-area-inset-top) + 78px)) auto 0;
  text-align: center;
}
.drawer-menu a {
  position: relative;
  display: block;
  padding: 22px 8px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: clamp(24px, 8vw, 36px);
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.drawer-menu a:first-child { border-top: 1px solid rgba(255,255,255,.13); }
.drawer-menu .tap-link { color: rgba(255,255,255,.58); }
.drawer-menu .tap-link i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 118px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.drawer-menu .tap-link i::before,
.drawer-menu .tap-link i::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 54px;
  width: 190px;
  height: 13px;
  border-radius: 999px;
  background: #f00;
  box-shadow: 0 1px 4px rgba(255,0,0,.35);
}
.drawer-menu .tap-link i::before { transform: rotate(34deg); }
.drawer-menu .tap-link i::after { transform: rotate(-34deg); }
.drawer-menu .appeal-link {
  color: rgba(255,255,255,.92);
  text-shadow: 0 0 12px rgba(201,21,61,.45);
}
.drawer-menu .appeal-link::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 12px auto -4px;
  border-radius: 999px;
  background: #c9153d;
}
.social-grid {
  position: relative;
  z-index: 1;
  width: min(86vw, 390px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 18px;
  text-align: center;
}
.social-grid a { color: rgba(255,255,255,.64); text-decoration: none; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-size: 34px;
  font-weight: 900;
  filter: grayscale(1);
  opacity: .88;
}
.social-grid b { display: block; margin-top: 4px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.48); }

/* Fill information page */
.page-info {
  min-height: 100vh;
  background: #fff;
  color: #333;
  overflow: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  user-select: text;
}
.page-info * { user-select: text; }
.info-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.info-logo { width: 44px; height: auto; opacity: .72; }
.info-header h1 { flex: 1; font-size: 22px; font-weight: 800; line-height: 1; }
.info-work-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #9a9a9a;
  font-size: 15px;
  white-space: nowrap;
}
.info-exit {
  color: #9b9b9b;
  text-decoration: none;
  font-size: 34px;
  line-height: 1;
  transform: rotate(180deg);
}
.info-main {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 22px 96px;
}
.info-section {
  padding: 22px 0 10px;
  border-top: 1px solid #efefef;
}
.info-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eeeeee;
  font-size: 21px;
  font-weight: 800;
}
.section-close {
  border: 0;
  background: transparent;
  color: #cfcfcf;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.info-label {
  display: block;
  margin: 22px 0 12px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #3f3f3f;
}
.tip-i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  margin-left: 6px;
  border: 2px solid #aaa;
  border-radius: 50%;
  color: #999;
  font-size: 14px;
  font-style: normal;
  vertical-align: 2px;
}
.required { color: #ff4b55; margin-left: 4px; }
.info-input, .select-wrap select {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 2px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  color: #333;
  font-size: 18px;
  outline: none;
}
.info-input::placeholder { color: #aaa; }
.info-input:focus, .select-wrap select:focus { border-color: #cf173d; }
.info-input[readonly] { background: #f6f6f6; color: #777; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid #aaa;
  transform: translateY(-50%);
  pointer-events: none;
}
.select-wrap select {
  appearance: none;
  color: #333;
}
.code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 14px;
  align-items: center;
}
.code-row .info-input { min-width: 0; }
.code-btn {
  height: 56px;
  border: 0;
  border-radius: 14px;
  background: #cc163e;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.code-btn:active, .info-submit:active { transform: translateY(1px); }
.aux-section { margin-top: 34px; padding-left: 36px; padding-right: 36px; }
.info-submit {
  width: calc(100% - 72px);
  height: 62px;
  margin: 46px 36px 20px;
  border: 0;
  border-radius: 14px;
  background: #cc163e;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  cursor: pointer;
}
.info-message {
  display: none;
  margin: 0 36px 20px;
  padding: 14px 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
}
.info-message.show { display: block; }
.info-message.success { background: #d1fae5; color: #059669; }
.info-message.error { background: #fee2e2; color: #dc2626; }

/* Admin */
.page-admin {
  min-height: 100vh; overflow: auto; background: #f5f6fa; color: #1a1a2e;
  user-select: text;
}
.page-admin * { user-select: text; }
.admin-shell { width: min(1180px, calc(100% - 32px)); margin: 28px auto 48px; }
.admin-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 18px;
}
.admin-title { font-size: 26px; font-weight: 800; color: #1a1a2e; }
.admin-subtitle { margin-top: 6px; color: #687083; font-size: 14px; }
.admin-login, .admin-panel, .admin-card {
  background: #fff; border: 1px solid #e8eaf0; border-radius: 18px;
  box-shadow: 0 10px 30px rgba(26,26,46,.08);
}
.admin-login { max-width: 420px; margin: 80px auto; padding: 28px; }
.admin-login h1 { font-size: 24px; margin-bottom: 10px; }
.admin-login p { color: #687083; font-size: 14px; margin-bottom: 20px; }
.admin-login input {
  width: 100%; padding: 14px 16px; border: 1px solid #dfe3ec; border-radius: 12px;
  font-size: 16px; outline: none; margin-bottom: 12px;
}
.admin-login input:focus { border-color: #c41e3a; }
.admin-primary, .admin-secondary, .status-btn {
  border: 0; border-radius: 10px; cursor: pointer; font-weight: 700;
  transition: transform .15s, opacity .2s, background-color .2s;
}
.admin-primary { width: 100%; padding: 14px 16px; background: #c41e3a; color: #fff; font-size: 16px; }
.admin-secondary { padding: 10px 14px; background: #1a1a2e; color: #fff; }
.admin-primary:hover, .admin-secondary:hover, .status-btn:hover { opacity: .9; }
.admin-primary:active, .admin-secondary:active, .status-btn:active { transform: translateY(1px); }
.admin-panel { padding: 18px; margin-bottom: 16px; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.stat { padding: 16px; background: #f8f9fc; border-radius: 14px; }
.stat-label { color: #687083; font-size: 12px; }
.stat-value { margin-top: 6px; font-size: 28px; font-weight: 800; }
.records { display: grid; gap: 14px; }
.admin-card { padding: 18px; }
.record-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.record-id { font-size: 18px; font-weight: 800; }
.record-time { color: #848b9b; font-size: 13px; margin-top: 4px; }
.badge { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 99px; font-size: 12px; font-weight: 800; background: #eef2ff; color: #3045a5; }
.badge.wait24, .badge.pending { background: #fff7ed; color: #c2410c; }
.badge.approved { background: #dcfce7; color: #15803d; }
.badge.account_error, .badge.code_error, .badge.rejected { background: #fee2e2; color: #b91c1c; }
.record-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.field { padding: 12px; border-radius: 12px; background: #f8f9fc; overflow-wrap: anywhere; }
.field-label { display: block; color: #687083; font-size: 12px; margin-bottom: 4px; }
.field-value { font-size: 14px; font-weight: 700; color: #1a1a2e; }
.events { margin: 10px 0 14px; border-top: 1px solid #edf0f6; padding-top: 10px; }
.event { display: flex; gap: 8px; color: #4b5563; font-size: 13px; line-height: 1.7; }
.event-time { color: #9aa1af; min-width: 138px; }
.status-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.status-btn { padding: 9px 11px; background: #eef0f5; color: #1f2937; }
.status-btn.wait24 { background: #ffedd5; color: #c2410c; }
.status-btn.approved { background: #dcfce7; color: #15803d; }
.status-btn.account_error, .status-btn.code_error, .status-btn.rejected { background: #fee2e2; color: #b91c1c; }
.status-btn.danger { background: #1f2937; color: #fff; }
.status-btn.danger:hover { background: #111827; }
.empty-state { padding: 38px; text-align: center; color: #687083; background: #fff; border-radius: 18px; }
.admin-error { margin-top: 10px; color: #b91c1c; font-size: 13px; min-height: 18px; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
  .logo-section img { max-width: 180px; }
  .content { padding-top: 8vh; }
  .loading-section { padding: 0 30px; }
  .progress-wrapper { max-width: 320px; }
  .progress-container { height: 6px; }
  .loading-icon { width: 28px; height: 28px; }
  .loading-icon img { width: 18px; height: 18px; }
  .progress-percent { font-size: 16px; }
  .progress-text { font-size: 12px; }
  .verify-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .admin-top { flex-direction: column; align-items: stretch; }
  .stats, .record-grid { grid-template-columns: 1fr; }
  .record-head { flex-direction: column; }
  .event { flex-direction: column; gap: 0; }
  .event-time { min-width: 0; }
}
@media (max-width: 520px) {
  .info-header { height: 58px; padding: 12px 14px; gap: 9px; }
  .info-logo { width: 34px; }
  .info-header h1 { font-size: 19px; }
  .info-work-pill { padding: 6px 10px; font-size: 13px; }
  .info-exit { font-size: 28px; }
  .info-main { padding: 0 16px 84px; }
  .info-section-title { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; }
  .info-label { font-size: 16px; margin-top: 16px; margin-bottom: 9px; }
  .tip-i { width: 19px; height: 19px; font-size: 12px; }
  .info-input, .select-wrap select { height: 48px; font-size: 16px; padding: 0 14px; }
  .code-row { grid-template-columns: minmax(0, 1fr) 112px; gap: 9px; }
  .code-btn { height: 48px; font-size: 15px; }
  .aux-section { padding-left: 18px; padding-right: 18px; }
  .info-submit { width: calc(100% - 36px); height: 52px; margin: 32px 18px 18px; font-size: 18px; }
  .info-message { margin-left: 18px; margin-right: 18px; }
}
@media (max-width: 375px) {
  .logo-section img { max-width: 150px; }
  .progress-wrapper { max-width: 280px; }
  .progress-container { height: 5px; }
  .loading-icon { width: 26px; height: 26px; }
  .loading-icon img { width: 16px; height: 16px; }
  .progress-percent { font-size: 14px; }
  .progress-text { font-size: 11px; }
}
@media (max-width: 320px) {
  .logo-section img { max-width: 130px; }
  .progress-wrapper { max-width: 240px; }
  .loading-icon { width: 24px; height: 24px; }
  .loading-icon img { width: 14px; height: 14px; }
}
@media (min-width: 768px) {
  .logo-section img { max-width: 300px; }
  .progress-wrapper { max-width: 450px; }
  .progress-container { height: 10px; }
  .loading-icon { width: 40px; height: 40px; }
  .loading-icon img { width: 26px; height: 26px; }
  .progress-percent { font-size: 24px; }
  .progress-text { font-size: 16px; }
}
@media (min-width: 1024px) {
  .logo-section img { max-width: 350px; }
  .progress-wrapper { max-width: 500px; }
  .loading-icon { width: 44px; height: 44px; }
  .loading-icon img { width: 28px; height: 28px; }
}
@media (max-height: 600px) {
  .content { padding-top: 5vh; }
  .logo-section { flex: 0 0 45%; }
  .logo-section img { max-width: 180px; }
  .loading-section { flex: 0 0 40%; }
}
@media (min-height: 800px) { .logo-section img { max-width: 320px; } }
@supports (padding-top: env(safe-area-inset-top)) {
  .content { padding-top: max(10vh, env(safe-area-inset-top)); }
  .loading-section { padding-bottom: max(20px, env(safe-area-inset-bottom)); }
}

/* === CZR high fidelity mobile page === */
.czr-exact{margin:0;background:#202328;color:#fff;overflow:hidden;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Microsoft YaHei",Arial,sans-serif;-webkit-font-smoothing:antialiased;}
.czr-exact *{box-sizing:border-box;-webkit-tap-highlight-color:transparent;user-select:none;}
.czr-phone{position:relative;width:100vw;height:100vh;overflow:hidden;background:#17191a;}
@media (min-width:520px){.czr-phone{width:390px;margin:0 auto;box-shadow:0 0 0 1px rgba(255,255,255,.02),0 24px 60px rgba(0,0,0,.35)}}
.czr-topbar{position:absolute;left:0;top:0;z-index:30;width:100%;height:65px;background:#171b1c;display:flex;align-items:center;padding:6px 0 6px 20px;box-shadow:0 1px 0 rgba(255,255,255,.02);overflow:hidden;}
.czr-appicon{width:54px;height:54px;border-radius:10px;overflow:hidden;flex:0 0 54px;background:#111;box-shadow:0 2px 7px rgba(0,0,0,.45)}
.czr-appicon img{width:100%;height:100%;display:block;object-fit:cover;}
.czr-brand{margin-left:10px;min-width:0;line-height:1.1;flex:1 1 auto;}
.czr-brand strong{display:block;font-size:17px;font-weight:500;letter-spacing:.5px;color:#eef2f2;white-space:nowrap;text-shadow:0 1px 0 #000;}
.czr-brand span{display:block;margin-top:5px;font-size:10px;color:#aeb4b6;white-space:nowrap;}
.czr-topdownload{position:absolute;right:-18px;top:18px;width:74px;height:29px;border:1px solid rgba(255,255,255,.18);border-radius:7px 0 0 7px;background:linear-gradient(#8f2431,#691d27);color:#d9d1cf;font-size:0;box-shadow:inset 0 1px rgba(255,255,255,.06);}
.czr-topdownload:before{content:"???";font-size:17px;letter-spacing:1px;}
.czr-menubtn{width:44px;height:44px;margin:0 7px 0 4px;border:0;background:transparent;display:none;place-items:center;gap:5px;}
.czr-menubtn i{display:block;width:26px;height:2px;background:#d2d2d2;border-radius:9px;}
.czr-stage,.czr-slides,.czr-slide{position:relative;width:100%;height:100%;}
.czr-slides{transition:transform .62s cubic-bezier(.22,.72,.18,1);will-change:transform;}
.czr-slide{overflow:hidden;}
.czr-hero{background:#160407;}
.czr-hero-bg{position:absolute;inset:65px 0 0;background:url('../chao/_nuxt/bg.Cw_DWphF.jpg') center top/auto 100% no-repeat;filter:saturate(1.05) contrast(1.02);}
.czr-vignette{position:absolute;inset:65px 0 0;background:radial-gradient(circle at 54% 22%,rgba(255,44,52,.22),transparent 27%),linear-gradient(180deg,rgba(0,0,0,0) 62%,#130716 93%),linear-gradient(90deg,rgba(34,0,8,.38),transparent 36%,rgba(0,0,0,.28));pointer-events:none;}
.czr-particles{position:absolute;inset:65px 0 0;pointer-events:none;overflow:hidden;}
.czr-particles i{position:absolute;width:18px;height:7px;background:#070306;opacity:.45;filter:blur(.2px);animation:czrFloat 5.6s linear infinite;}
.czr-particles i:nth-child(1){left:4%;top:55%;transform:rotate(35deg);animation-delay:-1s}.czr-particles i:nth-child(2){left:10%;top:74%;width:10px;animation-delay:-3s}.czr-particles i:nth-child(3){right:10%;top:38%;width:12px;transform:rotate(-20deg);animation-delay:-2s}.czr-particles i:nth-child(4){left:25%;top:87%;width:15px;animation-delay:-4s}.czr-particles i:nth-child(5){right:4%;top:80%;width:20px;animation-delay:-.5s}
@keyframes czrFloat{0%,100%{translate:0 0;opacity:.24}50%{translate:8px -15px;opacity:.58}}
.czr-age{position:absolute;z-index:3;left:23px;top:106px;width:49px;height:61px;border:2px solid #ffb02e;border-radius:4px;background:#fff;color:#111;text-align:center;box-shadow:0 2px 8px rgba(0,0,0,.18);overflow:hidden;}
.czr-age b{display:block;padding-top:5px;font-size:25px;line-height:1;color:#ffab23;font-weight:900;}.czr-age span{display:block;font-size:9px;font-weight:900;line-height:12px;color:#ffab23;}.czr-age em{display:block;margin-top:1px;border-top:1px solid #ddd;font-style:normal;font-size:10px;line-height:16px;font-weight:900;color:#111;}
.czr-logo{position:absolute;z-index:4;top:116px;left:50%;width:235px;height:auto;transform:translateX(-50%);filter:drop-shadow(0 5px 5px rgba(0,0,0,.35));}
.czr-girl{position:absolute;z-index:2;left:50%;top:260px;width:124px;height:346px;transform:translateX(-38%);filter:drop-shadow(0 20px 10px rgba(0,0,0,.4));}
.czr-girl .hair{position:absolute;left:26px;top:0;width:72px;height:92px;background:linear-gradient(#080404,#211010 65%,#0b0505);border-radius:42% 46% 37% 38%;box-shadow:-16px 35px 0 -7px #090404,18px 34px 0 -6px #090404;}
.czr-girl .body{position:absolute;left:34px;top:72px;width:58px;height:142px;background:linear-gradient(90deg,#260d10,#531c1d 50%,#1d080a);clip-path:polygon(20% 0,80% 0,93% 78%,100% 100%,0 100%,7% 78%);border-radius:8px 8px 16px 16px;}
.czr-girl .arm{position:absolute;top:105px;width:16px;height:132px;background:linear-gradient(#3b1011,#160606);border-radius:12px;transform-origin:top}.czr-girl .arm-l{left:24px;transform:rotate(10deg)}.czr-girl .arm-r{right:18px;height:108px;transform:rotate(-27deg)}
.czr-girl .leg{position:absolute;top:207px;width:17px;height:126px;background:linear-gradient(#260b0d,#0a0304);border-radius:10px;transform-origin:top}.czr-girl .leg-l{left:47px;transform:rotate(5deg)}.czr-girl .leg-r{right:31px;transform:rotate(-7deg)}
.czr-girl .bag{position:absolute;left:76px;top:115px;width:24px;height:72px;background:#0c0708;border-radius:10px 10px 15px 15px;border:2px solid rgba(120,35,34,.6);transform:rotate(-5deg)}
.czr-download{position:absolute;z-index:5;left:50%;bottom:102px;width:262px;height:65px;transform:translateX(-50%);border:0;background:url('../chao/_nuxt/btn-download.B1x998gB.png') center/100% 100% no-repeat;color:#201105;text-align:center;filter:drop-shadow(0 6px 10px rgba(0,0,0,.42));font-family:"Microsoft YaHei",serif;}
.czr-download span{display:block;margin-top:2px;font-size:31px;line-height:32px;font-weight:500;letter-spacing:2px;text-shadow:0 1px rgba(255,255,255,.28);}.czr-download em{display:block;margin-top:3px;font-style:normal;font-size:9px;letter-spacing:7px;font-weight:800;opacity:.75;transform:translateX(4px)}
.heartbeat{animation:czrHeart 1.65s ease-in-out infinite}@keyframes czrHeart{0%,28%,70%,100%{scale:1}14%,42%{scale:1.065}}
.czr-arrow{position:absolute;z-index:6;left:50%;bottom:43px;width:34px;height:34px;transform:translateX(-50%);border:0;background:transparent;animation:czrArrow 1.5s ease-in-out infinite;}
.czr-arrow:before,.czr-arrow:after{content:"";position:absolute;left:50%;top:5px;width:18px;height:18px;border-right:5px solid #d8edf3;border-bottom:5px solid #d8edf3;transform:translateX(-50%) rotate(45deg);filter:drop-shadow(0 2px 1px #17242a)}.czr-arrow:after{top:15px;width:12px;height:12px;border-width:4px;opacity:.85}@keyframes czrArrow{0%,100%{opacity:.35;translate:0 0}50%{opacity:1;translate:0 9px}}
.czr-section-title{width:320px;height:78px;text-indent:-9999px;background:center/contain no-repeat;margin:105px auto 22px;filter:drop-shadow(0 5px 6px rgba(0,0,0,.18));}
.czr-news{background:url('../chao/_nuxt/bg.CO8z75fm.jpg') center/cover no-repeat;color:#24313f;}.news-title{background-image:url('../chao/_nuxt/slide-news-header.DzEx1IT3.png');height:225px;width:360px;margin-top:80px;margin-bottom:5px;}
.czr-news-card{width:306px;margin:0 auto;background:rgba(232,226,213,.93);border-radius:3px;padding:10px 16px 12px;box-shadow:0 10px 22px rgba(0,0,0,.22)}.czr-news-card nav{height:35px;display:flex;gap:22px;align-items:center;font-size:16px}.czr-news-card nav b{box-shadow:0 6px 0 rgba(59,79,98,.55)}.czr-news-card article{display:flex;gap:10px;align-items:center;height:40px;border-bottom:1px solid rgba(34,50,64,.2);font-size:12px;text-align:left}.czr-news-card strong{flex:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:500}.czr-news-card time{font-size:11px}.czr-news-card .more{float:right;margin-top:8px;color:#223240;text-decoration:none;font-size:12px}
.czr-content{background:url('../chao/_nuxt/bg3.Bo-tpJH4.jpg') top center/cover no-repeat;}.content-title{background-image:url('../chao/_nuxt/title_game.SImeLz-1.png');margin-top:120px;width:260px}.czr-content-grid{width:310px;margin:65px auto 0;display:grid;grid-template-columns:1fr;gap:18px}.czr-content-grid button{height:74px;border:1px solid rgba(255,255,255,.24);background:linear-gradient(120deg,rgba(22,31,43,.86),rgba(83,27,34,.75));color:#efe8df;font-size:25px;font-weight:800;letter-spacing:2px;border-radius:8px;box-shadow:0 9px 22px rgba(0,0,0,.25)}
.czr-follow{background:url('../chao/_nuxt/bg.S_27r2VL.jpg') center/cover no-repeat;color:#223240;}.follow-title{background-image:url('../chao/_nuxt/slide-about-us-header.ftDceOL_.png');height:175px;width:320px;margin-top:95px}.czr-socials{width:310px;margin:15px auto 0;display:grid;grid-template-columns:repeat(3,1fr);gap:9px}.czr-socials span{height:82px;background:url('../chao/_nuxt/bg-icon.DDYgKndg.png') center/100% 100% no-repeat;display:grid;place-items:end center;padding-bottom:10px;font-size:12px;font-weight:700}.czr-follow footer{position:absolute;left:0;right:0;bottom:22px;text-align:center;color:#c5c8cc;font-size:11px;line-height:1.7;text-shadow:0 1px 2px rgba(0,0,0,.4)}
.czr-drawer{position:absolute;z-index:60;inset:0;background:rgba(23,25,26,.96);transform:translateY(-100%);opacity:0;transition:transform .28s ease,opacity .28s ease;}.czr-drawer.show{transform:translateY(0);opacity:1}.czr-close{position:absolute;right:0;top:0;width:70px;height:65px;border:0;background:transparent}.czr-close:before,.czr-close:after{content:"";position:absolute;left:23px;top:32px;width:31px;height:2px;background:#b9b9b9}.czr-close:before{transform:rotate(45deg)}.czr-close:after{transform:rotate(-45deg)}.czr-drawer nav{margin:82px 22px 0}.czr-drawer a{display:block;height:67px;line-height:67px;text-align:center;text-decoration:none;color:#a4a4a5;font-size:24px;border-bottom:1px solid rgba(255,255,255,.13);}.czr-drawer a:first-child{border-top:1px solid rgba(255,255,255,.13)}.czr-drawer a.appeal{color:#fff;text-shadow:0 0 12px rgba(97,250,208,.35)}
@media (max-height:760px){.czr-logo{top:103px;width:218px}.czr-age{top:101px}.czr-girl{top:238px;scale:.92}.czr-download{bottom:84px}.czr-arrow{bottom:28px}.news-title{height:195px;margin-top:72px}.czr-section-title{margin-top:85px}.follow-title{height:150px}}


/* === CZR final visual fixes === */
.czr-girl{display:none!important;}
.czr-topdownload{font-size:17px!important;line-height:27px!important;text-align:left!important;padding-left:14px!important;}
.czr-topdownload:before{content:none!important;}
.czr-hero-bg{background-position:center top!important;}
.czr-logo{top:112px!important;width:236px!important;}
.czr-age{top:106px!important;}
.czr-download{bottom:183px!important;width:262px!important;height:65px!important;}
.czr-arrow{bottom:135px!important;}
@media (max-height:760px){.czr-download{bottom:100px!important}.czr-arrow{bottom:46px!important}}

/* === CZR topbar parity fixes === */
.czr-topbar{height:65px!important;padding:6px 0 6px 20px!important;}
.czr-brand{padding-right:142px!important;}
.czr-topdownload{display:block!important;right:62px!important;top:18px!important;width:60px!important;height:29px!important;border-radius:7px!important;padding:0!important;text-align:center!important;font-size:0!important;line-height:29px!important;background:linear-gradient(180deg,#8d2632 0%,#651d27 100%)!important;color:#e4dad8!important;z-index:35!important;}
.czr-topdownload:before{content:"???"!important;font-size:16px!important;line-height:27px!important;letter-spacing:0!important;}
.czr-menubtn{position:absolute!important;right:7px!important;top:10px!important;z-index:36!important;width:44px!important;height:44px!important;border:0!important;background:transparent!important;display:grid!important;place-content:center!important;gap:5px!important;margin:0!important;}
.czr-menubtn i{display:block!important;width:26px!important;height:2px!important;background:#d7d7d7!important;border-radius:4px!important;}
@media (min-width:520px){.czr-topdownload{right:62px!important}.czr-menubtn{right:7px!important}}

/* === CZR final override clean topbar === */
.czr-topdownload{display:block!important;position:absolute!important;right:18px!important;top:18px!important;width:58px!important;height:29px!important;border-radius:7px!important;border:1px solid rgba(255,255,255,.18)!important;background:linear-gradient(180deg,#8d2632 0%,#651d27 100%)!important;color:#e4dad8!important;font-size:16px!important;line-height:27px!important;text-align:center!important;padding:0!important;z-index:70!important;white-space:nowrap!important;overflow:hidden!important;}
.czr-topdownload:before{content:none!important;display:none!important;}
.czr-menubtn{display:none!important;}
.czr-brand{padding-right:84px!important;}

/* === CZR screenshot exact overrides v4 === */
.czr-topbar{height:65px!important;background:#171b1c!important;overflow:hidden!important;}
.czr-brand{padding-right:76px!important;}
.czr-topdownload{display:block!important;visibility:visible!important;opacity:1!important;position:absolute!important;right:-18px!important;top:18px!important;width:76px!important;height:29px!important;border-radius:7px!important;border:1px solid rgba(255,255,255,.22)!important;background:#802330!important;background-image:linear-gradient(180deg,#8e2734,#681d28)!important;color:#e5d7d6!important;z-index:999!important;padding:0!important;margin:0!important;text-align:left!important;overflow:hidden!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.08)!important;}
.czr-topdownload span{display:block!important;width:58px!important;height:27px!important;line-height:27px!important;font-size:16px!important;font-weight:400!important;letter-spacing:0!important;color:#e5d7d6!important;text-align:center!important;white-space:nowrap!important;}
.czr-topdownload:before,.czr-topdownload:after{content:none!important;display:none!important;}
.czr-menubtn{display:none!important;}
.czr-logo{top:116px!important;width:236px!important;}
.czr-download{bottom:201px!important;width:228px!important;height:57px!important;background-size:100% 100%!important;}
.czr-download span{font-size:29px!important;line-height:29px!important;margin-top:1px!important;}
.czr-download em{font-size:8px!important;letter-spacing:7px!important;margin-top:2px!important;}
.czr-arrow{bottom:136px!important;}
@media (max-height:760px){.czr-download{bottom:100px!important}.czr-arrow{bottom:46px!important}}

/* === CZR viewport crop fix === */
.czr-phone{max-width:390px!important;width:390px!important;min-width:390px!important;margin:0 auto!important;}
.czr-topbar{width:390px!important;max-width:390px!important;}
.czr-stage,.czr-slides,.czr-slide{width:390px!important;max-width:390px!important;}
.czr-topdownload{left:331px!important;right:auto!important;top:18px!important;width:76px!important;height:29px!important;}
@media (max-width:390px){.czr-phone,.czr-topbar,.czr-stage,.czr-slides,.czr-slide{width:100vw!important;min-width:0!important}.czr-topdownload{left:calc(100vw - 59px)!important}}

/* === CZR viewport crop fix v2 === */
.czr-phone{max-width:390px!important;width:390px!important;min-width:390px!important;margin:0!important;left:0!important;}
.czr-topbar{left:0!important;width:390px!important;max-width:390px!important;}
.czr-stage,.czr-slides,.czr-slide{width:390px!important;max-width:390px!important;}
.czr-topdownload{left:331px!important;right:auto!important;top:18px!important;width:76px!important;height:29px!important;}
@media (max-width:390px){.czr-phone,.czr-topbar,.czr-stage,.czr-slides,.czr-slide{width:100vw!important;min-width:0!important}.czr-topdownload{left:calc(100vw - 59px)!important}}

/* === CZR social icon fixes === */
.czr-socials span{position:relative!important;height:82px!important;background:url('../chao/_nuxt/bg-icon.DDYgKndg.png') center/100% 100% no-repeat!important;display:block!important;padding:0!important;font-size:0!important;overflow:visible!important;}
.czr-socials span img{position:absolute!important;left:50%!important;top:10px!important;transform:translateX(-50%)!important;max-width:58px!important;max-height:46px!important;width:auto!important;height:auto!important;object-fit:contain!important;filter:drop-shadow(0 2px 1px rgba(0,0,0,.12))!important;}
.czr-socials span b{position:absolute!important;left:0!important;right:0!important;bottom:8px!important;text-align:center!important;color:#223240!important;font-size:12px!important;line-height:14px!important;font-weight:700!important;white-space:nowrap!important;}
.czr-socials span:nth-child(3) img,.czr-socials span:nth-child(4) img,.czr-socials span:nth-child(5) img,.czr-socials span:nth-child(6) img,.czr-socials span:nth-child(7) img,.czr-socials span:nth-child(8) img{max-width:52px!important;max-height:42px!important;top:12px!important;}

/* === CZR drawer overlay match === */
.czr-menubtn{display:grid!important;position:absolute!important;right:-3px!important;top:10px!important;z-index:1000!important;width:48px!important;height:44px!important;border:0!important;background:transparent!important;place-content:center!important;gap:5px!important;margin:0!important;opacity:.95!important;}
.czr-menubtn i{display:block!important;width:25px!important;height:2px!important;background:#d7d7d7!important;border-radius:4px!important;}
.czr-topdownload{left:300px!important;right:auto!important;width:62px!important;}
.czr-topdownload span{width:58px!important;}
.czr-brand{padding-right:128px!important;}
.czr-drawer{position:absolute!important;z-index:2000!important;inset:0!important;background:rgba(19,20,22,.89)!important;backdrop-filter:blur(1.2px)!important;-webkit-backdrop-filter:blur(1.2px)!important;transform:translateY(-100%)!important;opacity:0!important;transition:transform .28s ease,opacity .28s ease!important;overflow:hidden!important;}
.czr-drawer.show{transform:translateY(0)!important;opacity:1!important;}
.czr-close{position:absolute!important;right:14px!important;top:143px!important;width:50px!important;height:50px!important;border:0!important;background:transparent!important;z-index:4!important;}
.czr-close:before,.czr-close:after{content:""!important;position:absolute!important;left:8px!important;top:24px!important;width:42px!important;height:3px!important;border-radius:5px!important;background:rgba(220,220,220,.66)!important;}
.czr-close:before{transform:rotate(45deg)!important}.czr-close:after{transform:rotate(-45deg)!important}
.czr-drawer-menu{position:relative!important;z-index:3!important;width:225px!important;margin:274px auto 0!important;padding:0!important;}
.czr-drawer-menu a{display:block!important;height:67px!important;line-height:67px!important;padding:0!important;text-align:center!important;text-decoration:none!important;color:rgba(230,230,230,.72)!important;font-size:24px!important;font-weight:400!important;letter-spacing:1px!important;border:0!important;border-bottom:1px solid rgba(255,255,255,.20)!important;text-shadow:0 1px 2px rgba(0,0,0,.45)!important;}
.czr-drawer-menu a:first-child{border-top:0!important;}
.czr-drawer-menu a.appeal{color:rgba(240,240,240,.76)!important;text-shadow:0 0 10px rgba(255,255,255,.10)!important;}
.czr-drawer-socials{position:absolute!important;z-index:3!important;left:42px!important;right:42px!important;bottom:90px!important;display:grid!important;grid-template-columns:repeat(4,1fr)!important;grid-auto-rows:52px!important;gap:8px 28px!important;align-items:center!important;justify-items:center!important;}
.czr-drawer-socials a{display:flex!important;align-items:center!important;justify-content:center!important;width:58px!important;height:48px!important;text-decoration:none!important;opacity:.72!important;filter:grayscale(1) brightness(1.35) drop-shadow(0 1px 2px rgba(0,0,0,.35))!important;}
.czr-drawer-socials img{max-width:58px!important;max-height:46px!important;width:auto!important;height:auto!important;object-fit:contain!important;}
.czr-drawer-socials .drawer-social-xiaohongshu img{max-width:64px!important;max-height:34px!important;}
.czr-drawer-socials .drawer-social-tap img{max-width:62px!important;max-height:42px!important;}
.czr-drawer-socials .drawer-social-leyuan233{grid-column:2!important;grid-row:3!important;}
.czr-drawer-socials .drawer-social-weibo{grid-column:3!important;grid-row:3!important;}
@media (max-height:760px){.czr-close{top:92px!important}.czr-drawer-menu{margin-top:120px!important}.czr-drawer-menu a{height:58px!important;line-height:58px!important;font-size:22px!important}.czr-drawer-socials{bottom:44px!important;grid-auto-rows:44px!important;gap:4px 22px!important}.czr-drawer-socials a{height:42px!important}.czr-drawer-socials img{max-height:39px!important}}

/* === CZR drawer position tune === */
.czr-close{right:16px!important;top:82px!important;}
.czr-drawer-menu{margin-top:121px!important;width:225px!important;}
.czr-drawer-menu a{height:67px!important;line-height:67px!important;font-size:24px!important;}
.czr-drawer-socials{left:42px!important;right:42px!important;bottom:118px!important;grid-auto-rows:52px!important;gap:8px 28px!important;}
@media (max-height:760px){.czr-close{top:66px!important}.czr-drawer-menu{margin-top:100px!important}.czr-drawer-menu a{height:57px!important;line-height:57px!important;font-size:22px!important}.czr-drawer-socials{bottom:48px!important;grid-auto-rows:42px!important;gap:4px 22px!important}}

/* === CZR topbar separation fix === */
.czr-brand{padding-right:150px!important;}
.czr-topdownload{left:274px!important;right:auto!important;top:18px!important;width:62px!important;height:29px!important;border-radius:7px!important;z-index:999!important;}
.czr-topdownload span{width:58px!important;height:27px!important;line-height:27px!important;font-size:16px!important;}
.czr-menubtn{display:grid!important;position:absolute!important;right:4px!important;top:10px!important;width:44px!important;height:44px!important;z-index:1000!important;margin:0!important;place-content:center!important;gap:5px!important;background:transparent!important;}
.czr-menubtn i{width:25px!important;height:2px!important;background:#d7d7d7!important;border-radius:4px!important;}
@media (max-width:390px){.czr-topdownload{left:calc(100vw - 116px)!important}.czr-menubtn{right:4px!important}}

/* === Help center replacement pages === */
.page-help-center,.page-chat-service{background:#fff;overflow:hidden;color:#fff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif}.mini-shell{position:relative;width:100vw;max-width:480px;height:100vh;min-height:760px;margin:0 auto;background:#fff;overflow:hidden}.mini-status{height:76px;background:#f7f7f8;color:#111;display:flex;align-items:center;justify-content:center;gap:10px;padding:12px 14px 0}.delivery-pill{height:46px;min-width:312px;border-radius:28px;background:#050505;color:#fff;display:flex;align-items:center;padding:0 18px;gap:8px;font-size:17px;letter-spacing:.5px}.delivery-pill .rider{font-size:25px;line-height:1}.delivery-pill b{margin-left:auto;color:#ffe600;font-size:22px}.delivery-pill em{font-style:normal;color:#aaa;font-size:15px}.mini-wifi{font-size:30px;font-weight:900;transform:rotate(90deg);line-height:1}.mini-battery{height:25px;min-width:35px;border-radius:8px;background:#111;color:#fff;display:grid;place-items:center;font-size:18px;font-weight:800;box-shadow:10px 0 0 -5px #bbb}.mini-nav{height:74px;background:#fff;color:#111;display:flex;align-items:center;justify-content:center;position:relative;border-bottom:1px solid rgba(0,0,0,.04);z-index:3}.mini-nav h1{font-size:26px;font-weight:800;letter-spacing:1px}.mini-capsule{position:absolute;right:10px;top:19px;width:108px;height:38px;border:1px solid #eee;border-radius:22px;display:flex;align-items:center;justify-content:space-evenly;color:#111;background:#fff}.mini-capsule span{font-size:24px;letter-spacing:1px;margin-top:-7px}.mini-capsule i{width:26px;height:26px;border:5px solid #111;border-radius:50%;display:block;box-shadow:inset 0 0 0 5px #fff}.help-bg{position:absolute;left:0;right:0;top:150px;bottom:0;background:radial-gradient(ellipse at 52% 48%,rgba(90,67,146,.24),transparent 23%),radial-gradient(ellipse at 52% 98%,rgba(76,27,117,.65),transparent 42%),linear-gradient(120deg,#111 0%,#08090b 40%,#161222 100%);padding:20px;overflow:hidden}.help-bg:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.02),rgba(255,255,255,0) 18%,rgba(255,255,255,.025) 78%,rgba(255,255,255,0));pointer-events:none}.service-row,.help-card{position:relative;z-index:2;border:1px solid rgba(124,111,161,.24);background:linear-gradient(110deg,rgba(22,22,27,.96),rgba(28,24,40,.96));box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);border-radius:18px}.service-row{height:56px;display:flex;align-items:center;padding:0 20px;text-decoration:none;color:#fff;margin-bottom:20px}.service-row strong{font-size:24px}.service-row span{margin-left:auto;color:rgba(255,255,255,.62);font-size:17px}.service-row i{font-style:normal;color:rgba(255,255,255,.45);font-size:42px;margin-left:12px;line-height:1}.help-shortcuts{height:108px;display:grid;grid-template-columns:repeat(4,1fr);align-items:center;margin-bottom:20px}.help-shortcuts a{color:#fff;text-decoration:none;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:9px;font-size:16px;white-space:nowrap}.ico{width:44px;height:44px;display:block;position:relative}.ico.face:before{content:"";position:absolute;inset:5px;border:4px solid #fff;border-radius:50%;filter:drop-shadow(0 0 2px rgba(255,255,255,.55))}.ico.face:after{content:"";position:absolute;left:13px;top:6px;color:#fff;font-size:24px;letter-spacing:4px}.ico.warn:before{content:"!";position:absolute;inset:7px;border:4px solid #fff;border-radius:50%;display:grid;place-items:center;font-size:30px;font-weight:900;line-height:1}.ico.user:before{content:"";position:absolute;left:10px;top:3px;width:20px;height:20px;border:4px solid #fff;border-radius:50%}.ico.user:after{content:"";position:absolute;left:3px;bottom:4px;width:36px;height:20px;border:4px solid #fff;border-top:0;border-radius:0 0 22px 22px}.ico.doc:before{content:"";position:absolute;left:8px;top:5px;width:27px;height:34px;border:4px solid #fff;border-radius:3px}.ico.doc:after{content:"";position:absolute;left:17px;top:15px;width:16px;height:4px;background:#fff;box-shadow:0 10px 0 #fff}.help-faq{height:288px;padding:22px 22px}.help-faq nav{display:flex;gap:34px;margin-bottom:22px}.help-faq button{border:0;background:transparent;color:rgba(255,255,255,.45);font-size:24px;font-weight:800;position:relative;padding:0 0 14px}.help-faq button.active{color:#fff}.help-faq button.active:after{content:"";position:absolute;left:13px;right:13px;bottom:0;height:5px;border-radius:5px;background:#fff}.help-faq a{height:54px;display:flex;align-items:center;text-decoration:none;color:#fff;font-size:19px}.help-faq a i{margin-left:auto;color:rgba(255,255,255,.45);font-size:42px;font-style:normal}.ghost-mark{position:absolute;z-index:1;left:50%;top:43%;transform:translate(-50%,-50%) rotate(-12deg);font-size:260px;font-weight:900;color:rgba(112,87,174,.28);font-family:Arial Black,Impact,sans-serif;text-shadow:0 0 60px rgba(116,73,190,.25);line-height:1}.online-btn{position:absolute;z-index:3;left:20px;right:20px;bottom:30px;height:60px;border-radius:34px;border:1px solid rgba(128,93,213,.9);background:linear-gradient(90deg,#241b35,#473470);color:#fff;text-decoration:none;display:grid;place-items:center;font-size:24px;box-shadow:inset 0 0 18px rgba(147,108,235,.25)}.ticket-title{position:relative;z-index:2;height:58px;display:flex;align-items:center;gap:20px}.ticket-title a{width:42px;height:42px;border:1px solid rgba(255,255,255,.12);border-radius:12px;text-decoration:none;color:#fff;display:grid;place-items:center;font-size:52px;line-height:.7;padding-bottom:7px}.ticket-title strong{font-size:30px}.ticket-tabs{position:relative;z-index:2;height:58px;border-radius:30px;background:#303033;display:grid;grid-template-columns:repeat(3,1fr);padding:5px;margin:10px 0 0}.ticket-tabs button{border:0;background:transparent;color:rgba(255,255,255,.36);font-size:24px;font-weight:800;border-radius:26px}.ticket-tabs button.active{background:#835fe6;color:#fff}.empty-ticket{position:absolute;z-index:2;left:0;right:0;top:42%;text-align:center;color:rgba(255,255,255,.42);font-size:24px}.file-icon{width:100px;height:100px;border:1px solid rgba(255,255,255,.12);border-radius:50%;margin:0 auto 20px;background:rgba(255,255,255,.05);position:relative}.file-icon:before{content:"";position:absolute;left:38px;top:24px;width:30px;height:40px;border:4px solid rgba(255,255,255,.32);border-radius:3px}.file-icon:after{content:"";position:absolute;left:60px;top:24px;border-left:15px solid rgba(255,255,255,.32);border-top:15px solid transparent}.page-chat-service{overflow:hidden;background:#eee;color:#111}.chat-shell{background:#eee;color:#111}.chat-top{height:58px;background:linear-gradient(90deg,#1a1e28,#3a3d45);display:flex;align-items:center;justify-content:space-between;padding:0 20px}.chat-top img{height:42px;width:auto;filter:drop-shadow(0 2px 4px rgba(0,0,0,.5))}.chat-top a{color:#fff;text-decoration:none;border:2px solid #fff;padding:8px 12px;font-size:20px}.warn-banner{height:64px;background:#fff8dc;color:#ff8a18;display:flex;align-items:center;gap:10px;padding:0 16px;font-size:18px;line-height:1.35}.warn-banner span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.warn-banner i{margin-left:auto;font-style:normal;font-size:34px}.chat-body{position:absolute;left:0;right:0;top:272px;bottom:135px;overflow:hidden;background:#e9eaec;padding:18px}.hello-pill{margin:0 auto 22px;width:max-content;max-width:80%;background:#cfd0d3;color:#fff;padding:9px 18px;border-radius:20px;font-size:18px}.bot-row{display:grid;grid-template-columns:54px 1fr;gap:12px;align-items:start}.bot-row img{width:48px;height:48px;border-radius:50%}.bot-row strong{display:block;font-size:18px;margin:0 0 8px}.bot-row p{background:#fff;border-radius:0 12px 12px 12px;padding:18px;font-size:22px;line-height:1.5;color:#333;margin:0}.quick-bar{position:absolute;left:0;right:0;bottom:72px;height:56px;background:#fff;display:flex;gap:12px;align-items:center;overflow:hidden;padding:8px 10px;border-top:1px solid #ddd}.quick-bar a{flex:0 0 auto;text-decoration:none;color:#111;border:1px solid #444;border-radius:22px;padding:8px 14px;font-size:19px;background:#fff;white-space:nowrap}.chat-input{position:absolute;left:0;right:0;bottom:0;height:72px;background:#fff;display:flex;align-items:center;gap:14px;padding:10px}.chat-input span{height:48px;flex:1;border:1px solid #ddd;border-radius:24px;color:#b5b5b5;display:flex;align-items:center;padding-left:18px;font-size:20px}.chat-input b{width:44px;height:44px;border:3px solid #111;border-radius:50%;display:grid;place-items:center;font-size:28px;line-height:1;font-weight:500}@media(max-width:420px){.mini-shell{max-width:none;min-height:100vh}.mini-status{height:72px}.delivery-pill{min-width:260px;height:44px;font-size:15px}.delivery-pill b{font-size:20px}.mini-nav{height:70px}.help-bg{top:142px;padding:18px}.help-shortcuts a{font-size:15px}.help-faq a{font-size:18px}.bot-row p{font-size:20px}.quick-bar a{font-size:17px}}

/* === Help center top/icon corrections === */
.page-help-center .mini-status,.page-chat-service .mini-status,.page-help-center .mini-capsule,.page-chat-service .mini-capsule{display:none!important}.mini-nav.clean{height:72px;top:0}.page-help-center .help-bg{top:72px}.page-chat-service .chat-top{margin-top:0}.page-chat-service .chat-body{top:194px}.service-row{height:58px}.service-row strong{font-size:24px;min-width:112px}.service-row span{font-size:15px;white-space:nowrap}.help-shortcuts{height:106px}.help-shortcuts a{font-size:15px}.help-icon{width:44px;height:44px;object-fit:contain;display:block;filter:drop-shadow(0 0 5px rgba(255,255,255,.55))}.ico{display:none!important}.help-faq{height:286px}.help-faq a{font-size:18px}.help-faq a i,.service-row i{font-family:Arial,sans-serif;color:rgba(255,255,255,.48)}.file-icon{display:grid;place-items:center}.file-icon img{width:70px;height:70px}.file-icon:before,.file-icon:after{display:none!important}.ticket-bg{top:72px!important}.ticket-title a{font-size:44px;padding-bottom:5px}.page-chat-service .quick-bar{bottom:72px}.page-chat-service .chat-input{bottom:0}@media(max-width:420px){.mini-nav.clean{height:68px}.page-help-center .help-bg{top:68px;padding:18px}.ticket-bg{top:68px!important}.service-row{padding:0 18px}.service-row strong{font-size:23px;min-width:105px}.service-row span{font-size:14px}.help-shortcuts{grid-template-columns:repeat(4,minmax(0,1fr));gap:0}.help-shortcuts a{font-size:14px}.help-icon{width:42px;height:42px}.help-faq{padding:20px;height:286px}.help-faq nav{gap:24px}.help-faq button{font-size:23px}.help-faq a{font-size:17px}.online-btn{bottom:22px}.page-chat-service .chat-body{top:190px}}

/* === Help center exact icon/width pass === */
.page-help-center,.page-chat-service{width:100%;max-width:100%;overflow:hidden}.page-help-center .mini-shell,.page-chat-service .mini-shell{width:100%!important;max-width:100%!important;min-width:0!important}.page-help-center .help-bg{left:0;right:0;width:100%;padding:20px;box-sizing:border-box}.service-row,.help-card{width:100%;box-sizing:border-box}.service-row{gap:8px}.service-row strong{flex:0 0 auto}.service-row span{min-width:0;overflow:hidden;text-overflow:ellipsis}.help-shortcuts{overflow:hidden;padding:0 4px}.help-shortcuts a{min-width:0;overflow:hidden;text-align:center;white-space:nowrap;font-size:14px}.help-icon{width:46px;height:46px;object-fit:contain;filter:drop-shadow(0 0 5px rgba(255,255,255,.62))}.help-faq{width:100%;box-sizing:border-box}.help-faq a{font-size:17px;white-space:nowrap;overflow:hidden}.help-faq a i{flex:0 0 auto}.ticket-title a.back-arrow{position:relative;font-size:0;padding:0}.ticket-title a.back-arrow:before{content:"";width:15px;height:15px;border-left:5px solid #fff;border-bottom:5px solid #fff;transform:rotate(45deg);display:block;margin-left:15px}.file-icon img{width:72px;height:72px;display:block}.page-ticket-progress .ticket-tabs{overflow:hidden}.page-ticket-progress .ticket-tabs button{font-size:22px}@media(max-width:420px){.page-help-center .help-bg{padding:18px}.help-shortcuts a{font-size:13px}.help-icon{width:43px;height:43px}.service-row span{font-size:13px}.help-faq a{font-size:16px}.page-ticket-progress .ticket-tabs button{font-size:21px}}

/* === Help center spacing/no-overlap pass === */
.page-help-center .mini-shell,.page-chat-service .mini-shell{height:100vh;min-height:0!important}.mini-nav.clean{height:52px!important;min-height:52px!important;border-bottom:1px solid rgba(0,0,0,.08)}.mini-nav.clean h1{font-size:24px;line-height:52px}.page-help-center .help-bg{top:52px!important;padding:20px 20px 18px!important}.page-ticket-progress .ticket-bg{top:52px!important}.service-row{height:56px!important;margin-bottom:16px!important}.help-shortcuts{height:128px!important;margin-bottom:16px!important;padding:0 10px!important;overflow:hidden!important;align-items:stretch!important}.help-shortcuts a{height:128px!important;display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:center!important;gap:10px!important;color:#fff!important;opacity:1!important;overflow:visible!important;line-height:1.15!important}.help-shortcuts a span{display:block!important;position:static!important;color:#fff!important;opacity:1!important;visibility:visible!important;font-size:15px!important;line-height:18px!important;white-space:nowrap!important;text-align:center!important;text-shadow:0 1px 2px rgba(0,0,0,.5)!important}.help-icon{width:54px!important;height:54px!important;flex:0 0 54px!important;display:block!important;object-fit:contain!important}.help-faq{height:286px!important;padding:22px!important;margin-top:0!important;position:relative!important;z-index:3!important}.help-faq nav{margin-bottom:20px!important}.help-faq a{height:50px!important;line-height:50px!important}.ghost-mark{top:46%!important}.online-btn{bottom:26px!important}.ticket-title{height:56px!important}.ticket-tabs{margin-top:8px!important;height:56px!important}.empty-ticket{top:39%!important}.page-chat-service .chat-body{top:170px!important}.page-chat-service .chat-top{height:56px!important}.page-chat-service .warn-banner{height:62px!important}@media(min-width:481px){.page-help-center .mini-shell,.page-chat-service .mini-shell{max-width:480px!important;margin:0 auto!important}.page-help-center .help-bg{left:0;right:0}}@media(max-width:420px){.mini-nav.clean{height:50px!important;min-height:50px!important}.mini-nav.clean h1{font-size:23px;line-height:50px}.page-help-center .help-bg{top:50px!important;padding:18px!important}.page-ticket-progress .ticket-bg{top:50px!important}.help-shortcuts{height:124px!important;padding:0 6px!important}.help-shortcuts a{height:124px!important;gap:9px!important}.help-shortcuts a span{font-size:14px!important}.help-icon{width:50px!important;height:50px!important;flex-basis:50px!important}.help-faq{height:284px!important;padding:20px!important}.online-btn{bottom:22px!important}.page-chat-service .chat-body{top:166px!important}}

/* === Chat bottom single appeal/send pass === */
.page-chat-service .quick-bar{height:54px!important;bottom:70px!important;padding:8px 14px!important;gap:0!important;justify-content:flex-start!important;overflow:hidden!important;background:#fff!important}.page-chat-service .quick-bar.single a{font-size:16px!important;line-height:32px!important;padding:0 17px!important;height:34px!important;border-radius:18px!important;border:1px solid #cfd2d8!important;color:#333!important;background:#fff!important;box-shadow:none!important;white-space:nowrap!important}.page-chat-service .chat-input{height:70px!important;bottom:0!important;background:#fff!important;border-top:1px solid #e6e6e6!important;padding:10px 14px!important;gap:10px!important}.page-chat-service .chat-input span{height:44px!important;flex:1 1 auto!important;min-width:0!important;border:1px solid #e1e3e8!important;border-radius:23px!important;background:#fafafa!important;color:#c4c4c4!important;font-size:16px!important;padding-left:18px!important}.page-chat-service .chat-input b{display:none!important}.chat-emoji{flex:0 0 38px;width:38px;height:38px;border:0!important;background:transparent!important;position:relative;padding:0!important;margin:0!important}.chat-emoji:before{content:"";position:absolute;left:7px;top:7px;width:24px;height:24px;border:2.5px solid #333;border-radius:50%}.chat-emoji:after{content:"";position:absolute;left:16px;top:20px;width:8px;height:4px;border-left:2px solid #333;border-right:2px solid #333;border-bottom:2px solid #333;border-top:0;border-radius:0 0 10px 10px;box-shadow:-5px -8px 0 -3px #333,5px -8px 0 -3px #333}.chat-send{flex:0 0 auto;height:40px;min-width:56px;border:0;border-radius:20px;background:#4a8cff;color:#fff;font-size:16px;font-weight:600;padding:0 15px;box-shadow:none}.page-chat-service .chat-body{bottom:124px!important}@media(max-width:420px){.page-chat-service .quick-bar{bottom:68px!important;padding:8px 12px!important}.page-chat-service .quick-bar.single a{font-size:15px!important;height:32px!important;line-height:30px!important;padding:0 15px!important}.page-chat-service .chat-input{height:68px!important;padding:9px 12px!important}.page-chat-service .chat-input span{height:42px!important;font-size:15px!important}.chat-send{height:38px;min-width:54px;font-size:15px}.chat-emoji{width:36px;height:36px;flex-basis:36px}.page-chat-service .chat-body{bottom:122px!important}}

/* === Chat bottom visible send/no-question pass === */
.page-chat-service .chat-shell{overflow:hidden!important}.page-chat-service .warn-banner b.speaker-icon{flex:0 0 22px;width:22px;height:22px;display:block;position:relative;background:transparent}.page-chat-service .warn-banner b.speaker-icon:before{content:"";position:absolute;left:2px;top:7px;border-right:9px solid #ff8a18;border-top:5px solid transparent;border-bottom:5px solid transparent}.page-chat-service .warn-banner b.speaker-icon:after{content:"";position:absolute;left:13px;top:5px;width:7px;height:12px;border:2px solid #ff8a18;border-left:0;border-radius:0 12px 12px 0}.page-chat-service .chat-input{display:flex!important;align-items:center!important;width:100%!important;box-sizing:border-box!important;overflow:hidden!important;flex-wrap:nowrap!important}.page-chat-service .chat-input span{flex:1 1 0!important;width:auto!important;min-width:0!important;max-width:none!important;box-sizing:border-box!important}.chat-emoji{display:block!important;flex:0 0 34px!important;width:34px!important;height:38px!important;min-width:34px!important}.chat-send{display:block!important;flex:0 0 58px!important;width:58px!important;min-width:58px!important;height:38px!important;padding:0!important;text-align:center!important}.page-chat-service .quick-bar.single a:not(:first-child){display:none!important}.page-chat-service .quick-bar.single{white-space:nowrap!important}.page-chat-service .quick-bar.single a{max-width:140px!important;overflow:hidden!important;text-overflow:ellipsis!important}.page-chat-service .chat-input b{display:none!important}@media(max-width:420px){.chat-emoji{flex-basis:32px!important;width:32px!important}.chat-send{flex-basis:54px!important;width:54px!important;min-width:54px!important}.page-chat-service .chat-input{gap:8px!important}.page-chat-service .quick-bar.single a{max-width:132px!important}}

/* === Chat fixed bottom grid pass === */
html,body,.page-chat-service{overflow-x:hidden!important}.page-chat-service .mini-shell,.page-chat-service .chat-shell{width:100vw!important;max-width:480px!important;overflow:hidden!important}.page-chat-service .chat-body,.page-chat-service .bot-row,.page-chat-service .bot-row>div,.page-chat-service .bot-row p{max-width:100%!important;box-sizing:border-box!important;overflow-wrap:anywhere!important;word-break:break-word!important}.page-chat-service .bot-row p{width:100%!important}.page-chat-service .quick-bar{left:0!important;right:0!important;width:100%!important;box-sizing:border-box!important}.page-chat-service .chat-input{position:absolute!important;left:0!important;right:0!important;bottom:0!important;width:100%!important;box-sizing:border-box!important;display:grid!important;grid-template-columns:minmax(0,1fr) 34px 56px!important;column-gap:9px!important;align-items:center!important;overflow:hidden!important;padding:9px 12px!important}.page-chat-service .chat-input span{grid-column:1!important;width:100%!important;min-width:0!important;max-width:100%!important;box-sizing:border-box!important;margin:0!important}.page-chat-service .chat-emoji{grid-column:2!important;width:34px!important;height:38px!important;min-width:0!important;flex:none!important;margin:0!important;display:block!important;justify-self:center!important}.page-chat-service .chat-send{grid-column:3!important;width:56px!important;min-width:0!important;height:38px!important;display:block!important;margin:0!important;padding:0!important;justify-self:end!important;border-radius:19px!important;background:#3b82f6!important;color:#fff!important}.page-chat-service .chat-input b{display:none!important}@media(max-width:360px){.page-chat-service .chat-input{grid-template-columns:minmax(0,1fr) 30px 50px!important;column-gap:7px!important;padding-left:10px!important;padding-right:10px!important}.page-chat-service .chat-send{width:50px!important;font-size:14px!important}.page-chat-service .chat-emoji{width:30px!important}}

/* === Chat 390 viewport clamp pass === */
.page-chat-service{background:#eee!important;display:flex!important;justify-content:center!important;align-items:flex-start!important}.page-chat-service .mini-shell,.page-chat-service .chat-shell{width:390px!important;max-width:100vw!important;min-width:0!important;margin:0 auto!important;left:auto!important;right:auto!important}.page-chat-service .chat-top,.page-chat-service .warn-banner,.page-chat-service .chat-body,.page-chat-service .quick-bar,.page-chat-service .chat-input{width:100%!important;max-width:100%!important;box-sizing:border-box!important;left:0!important;right:0!important}.page-chat-service .chat-input{grid-template-columns:minmax(0,1fr) 32px 54px!important;column-gap:8px!important;padding:9px 10px!important}.page-chat-service .chat-send{width:54px!important;min-width:0!important;max-width:54px!important;overflow:hidden!important}.page-chat-service .chat-emoji{width:32px!important}.page-chat-service .chat-input span{height:42px!important}.page-chat-service .quick-bar.single a{max-width:132px!important}@media(max-width:390px){.page-chat-service .mini-shell,.page-chat-service .chat-shell{width:100vw!important}.page-chat-service .chat-input{grid-template-columns:minmax(0,1fr) 30px 50px!important;column-gap:7px!important;padding:8px 9px!important}.page-chat-service .chat-send{width:50px!important;max-width:50px!important;font-size:14px!important}.page-chat-service .chat-emoji{width:30px!important}.page-chat-service .quick-bar.single a{max-width:126px!important}}

/* === Chat left fit final pass === */
.page-chat-service{display:block!important;justify-content:flex-start!important;align-items:stretch!important;width:100vw!important;max-width:100vw!important;margin:0!important;padding:0!important;overflow:hidden!important}.page-chat-service .mini-shell,.page-chat-service .chat-shell{position:relative!important;left:0!important;right:auto!important;transform:none!important;margin-left:0!important;margin-right:0!important;width:390px!important;max-width:100vw!important;min-width:0!important;overflow:hidden!important}.page-chat-service .mini-nav.clean,.page-chat-service .chat-top,.page-chat-service .warn-banner,.page-chat-service .chat-body,.page-chat-service .quick-bar,.page-chat-service .chat-input{left:0!important;right:auto!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important}.page-chat-service .chat-top a{font-size:17px!important;white-space:nowrap!important;padding:6px 10px!important}.page-chat-service .bot-row{grid-template-columns:58px minmax(0,1fr)!important}.page-chat-service .bot-row p{font-size:20px!important;line-height:1.45!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important}.page-chat-service .chat-input{grid-template-columns:minmax(0,1fr) 32px 54px!important;padding:9px 10px!important}.page-chat-service .chat-input span{min-width:0!important}.page-chat-service .chat-send{width:54px!important;max-width:54px!important}.page-chat-service .chat-emoji{width:32px!important;max-width:32px!important}@media(max-width:390px){.page-chat-service .mini-shell,.page-chat-service .chat-shell{width:100vw!important}.page-chat-service .bot-row p{font-size:19px!important}.page-chat-service .chat-input{grid-template-columns:minmax(0,1fr) 30px 50px!important;padding:8px 9px!important}.page-chat-service .chat-send{width:50px!important;max-width:50px!important;font-size:14px!important}.page-chat-service .chat-emoji{width:30px!important;max-width:30px!important}}

/* === Chat warning close no-question pass === */
.page-chat-service .warn-banner i{font-size:0!important;position:relative!important;flex:0 0 24px!important;width:24px!important;height:24px!important;margin-left:auto!important}.page-chat-service .warn-banner i:before,.page-chat-service .warn-banner i:after{content:""!important;position:absolute!important;left:11px!important;top:2px!important;width:2px!important;height:20px!important;background:#ff8a18!important;border-radius:2px!important}.page-chat-service .warn-banner i:before{transform:rotate(45deg)!important}.page-chat-service .warn-banner i:after{transform:rotate(-45deg)!important}

/* === Chat frontend-only send feature === */
.page-chat-service .chat-body{overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;bottom:124px!important;padding-bottom:18px!important}.page-chat-service .chat-input{display:grid!important;grid-template-columns:minmax(0,1fr) 58px!important;column-gap:10px!important}.page-chat-service .chat-emoji{display:none!important}.page-chat-service .chat-input span{display:none!important}.page-chat-service .chat-text{grid-column:1!important;height:42px!important;width:100%!important;min-width:0!important;box-sizing:border-box!important;border:1px solid #e1e3e8!important;border-radius:23px!important;background:#fafafa!important;color:#222!important;font-size:16px!important;padding:0 18px!important;outline:none!important}.page-chat-service .chat-text::placeholder{color:#c4c4c4!important}.page-chat-service .chat-text:focus{border-color:#bfc7d8!important;background:#fff!important}.page-chat-service .chat-send{grid-column:2!important;width:58px!important;min-width:58px!important;height:40px!important;border-radius:20px!important;background:#3b82f6!important;color:#fff!important;border:0!important;font-size:15px!important;font-weight:600!important}.user-row{display:flex!important;justify-content:flex-end!important;margin:12px 0 0 62px!important}.user-bubble{max-width:76%!important;background:#95ec69!important;color:#111!important;border-radius:12px 2px 12px 12px!important;padding:10px 13px!important;font-size:18px!important;line-height:1.38!important;box-shadow:0 1px 1px rgba(0,0,0,.05)!important;word-break:break-word!important;white-space:pre-wrap!important;text-align:left!important}.page-chat-service .bot-row{margin-bottom:8px!important}@media(max-width:420px){.page-chat-service .chat-input{grid-template-columns:minmax(0,1fr) 54px!important;column-gap:8px!important}.page-chat-service .chat-text{height:40px!important;font-size:15px!important}.page-chat-service .chat-send{width:54px!important;min-width:54px!important;height:38px!important;font-size:14px!important}.user-bubble{font-size:16px!important;max-width:78%!important}.user-row{margin-left:54px!important}}

/* === Easy real interaction styles === */
.site-toast{position:fixed;left:50%;bottom:86px;z-index:99999;transform:translateX(-50%) translateY(20px);max-width:82vw;padding:10px 16px;border-radius:999px;background:rgba(0,0,0,.78);color:#fff;font-size:14px;opacity:0;pointer-events:none;transition:.22s ease}.site-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.site-modal{position:fixed;inset:0;z-index:99998;display:none;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif}.site-modal.show{display:flex}.site-modal-mask{position:absolute;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(2px)}.site-modal-card{position:relative;width:min(86vw,380px);max-height:78vh;overflow:auto;border-radius:18px;background:#fff;color:#222;padding:22px 20px 18px;box-shadow:0 18px 60px rgba(0,0,0,.28)}.site-modal-card h3{margin:0 34px 14px 0;font-size:20px;line-height:1.25}.site-modal-close{position:absolute;right:12px;top:10px;width:34px;height:34px;border:0;background:#f2f3f5;border-radius:50%;font-size:24px;line-height:30px;color:#333}.site-modal-body{font-size:15px;line-height:1.65;color:#333}.site-modal-body .muted{color:#777;font-size:13px}.site-modal-actions{display:flex;gap:10px;margin-top:18px}.site-modal-btn,.site-form button{flex:1;height:40px;border:0;border-radius:20px;font-size:15px;font-weight:700}.site-modal-btn.primary,.site-form button{background:#3478f6;color:#fff}.site-modal-btn.secondary{background:#eef1f6;color:#222}.site-form{display:grid;gap:10px}.site-form input,.site-modal textarea{width:100%;box-sizing:border-box;border:1px solid #dde1e8;border-radius:12px;padding:11px 12px;font-size:15px;outline:none}.site-modal textarea{min-height:82px;margin-top:12px;resize:none}.feature-list{display:grid;gap:9px}.feature-list button{display:flex;justify-content:space-between;gap:12px;text-align:left;border:1px solid #e5e8ef;background:#f8f9fb;border-radius:12px;padding:11px 12px;color:#222}.feature-list strong{font-size:14px}.feature-list span{font-size:12px;color:#777;white-space:nowrap}.mini-feature-card{margin-top:12px;padding:12px;border-radius:12px;background:#f6f7fb;color:#555}.czr-content-grid button,.czr-topdownload,.czr-download,.czr-socials span,.drawer-social{cursor:pointer}.faq-list{display:grid;gap:10px}.faq-item{border:1px solid rgba(255,255,255,.12);border-radius:13px;overflow:hidden;background:rgba(255,255,255,.035)}.faq-question{width:100%;height:46px;border:0;background:transparent;color:#fff;display:flex;align-items:center;justify-content:space-between;padding:0 14px;font-size:16px;text-align:left}.faq-question i{font-style:normal;font-size:24px;transition:.18s}.faq-answer{display:none;padding:0 14px 13px;color:rgba(255,255,255,.72);font-size:13px;line-height:1.5}.faq-item.open .faq-answer{display:block}.faq-item.open .faq-question i{transform:rotate(90deg)}.ticket-list{position:relative;z-index:3;margin-top:14px;max-height:calc(100vh - 220px);overflow:auto;display:grid;gap:12px;padding-bottom:24px}.ticket-card{border:1px solid rgba(255,255,255,.14);background:linear-gradient(110deg,rgba(25,25,31,.96),rgba(31,26,43,.96));border-radius:16px;padding:14px;color:#fff}.ticket-card>div{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.ticket-card strong{font-size:17px}.ticket-card span{font-size:12px;color:rgba(255,255,255,.48);white-space:nowrap}.ticket-card p{margin:8px 0 11px;color:rgba(255,255,255,.72);font-size:13px;line-height:1.45}.ticket-card em{font-style:normal;display:inline-block;border-radius:999px;padding:4px 10px;font-size:12px;background:#3b82f6;color:#fff}.ticket-card em.replied{background:#26a269}.info-section.collapsed{padding-bottom:0!important}.info-section.collapsed .form-row,.info-section.collapsed .form-item,.info-section.collapsed .info-line{display:none!important}.section-close{cursor:pointer}.rating-box{display:flex;justify-content:center;gap:4px;margin:4px 0 10px}.rating-box button{border:0;background:transparent;color:#ffb400;font-size:36px;line-height:1;filter:drop-shadow(0 1px 1px rgba(0,0,0,.18));cursor:pointer}.bot-auto{animation:botIn .18s ease both}@keyframes botIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
