:root {
  --gold: #efc45e;
  --gold-deep: #d9a930;
  --ink: #655d50;
  --blue: #2e85f6;
  --panel-bg: #ffffff;
  --page-bg: #f6f7f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eceff1;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.pc-page { display: none; }

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

.page-shell {
  width: min(100%, 694px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--page-bg);
  box-shadow: 0 0 20px rgba(71, 62, 44, 0.08);
}

.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px 0 22px;
  background: #fff;
  border-bottom: 3px solid #dbdbdb;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand-image {
  display: none;
  width: min(396px, 58vw);
  height: auto;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}
.brand.has-image .brand-image {
  display: block;
}
.brand.has-image .brand-mark,
.brand.has-image .brand-copy {
  display: none;
}
.brand-mark {
  width: 58px;
  height: 58px;
  border: 2px solid #cb9b27;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #cb9b27;
  position: relative;
  font-family: Georgia, serif;
  font-size: 39px;
  line-height: 1;
  font-weight: 700;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid #cb9b27;
  border-radius: 50%;
}
.brand-mark span {
  transform: scaleX(0.76);
  z-index: 1;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  color: #c69222;
  line-height: 1;
  white-space: nowrap;
}
.brand-copy strong {
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 800;
}
.brand-copy small {
  margin-top: 7px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.header-slogan {
  width: 215px;
  max-width: 34%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 0 1 auto;
}
.header-slogan-image {
  display: none;
  width: 100%;
  height: auto;
  max-height: 61px;
  object-fit: contain;
  object-position: right center;
}
.header-slogan.has-image .header-slogan-image {
  display: block;
}
.header-slogan.has-image .header-blessing {
  display: none;
}
.header-blessing {
  color: #f2bd3f;
  font-size: 29px;
  font-weight: 800;
  font-family: "STKaiti", "KaiTi", serif;
  transform: rotate(-8deg);
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(188, 129, 18, 0.08);
}

.hero {
  position: relative;
  height: 189px;
  margin: 20px 26px 0;
  overflow: hidden;
  border-radius: 19px;
  background: linear-gradient(118deg, #b6dbff 0%, #edf8ff 50%, #bde7ff 100%);
}
.hero-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  visibility: hidden;
  transition: transform 420ms ease;
  will-change: transform;
}
.hero.has-image .hero-track { visibility: visible; }
.hero-slide { width: 100%; height: 100%; flex: 0 0 100%; }
.hero-slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero.has-image .hero-fallback { display: none; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}
.hero.has-image .hero-dots { display: flex; }
.hero-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(190, 190, 190, .9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .45);
  cursor: pointer;
}
.hero-dot.active { background: #efc45e; }
.hero-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 32px 0 160px;
  color: #1d7cdc;
  text-align: center;
}
.fallback-kicker {
  color: #3e3e3e;
  font-size: 8px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.fallback-title {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 2px 2px 0 #fff;
  white-space: nowrap;
}
.fallback-subtitle {
  margin-top: 12px;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 800;
  color: #e73428;
  text-shadow: 1px 1px 0 #fff;
  white-space: nowrap;
}
.fallback-url {
  margin-top: 14px;
  font-size: 18px;
  color: #739dea;
  font-weight: 700;
}

.notice {
  min-height: 53px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 25px;
  color: #2c83fa;
  font-size: 21px;
  letter-spacing: 0.2px;
}
.notice-marquee { min-width: 0; flex: 1; overflow: hidden; }
.notice-track {
  display: flex;
  width: max-content;
  animation: notice-scroll 16s linear infinite;
  will-change: transform;
}
.notice-track span {
  flex: 0 0 auto;
  padding-right: 72px;
  white-space: nowrap;
}
.notice:hover .notice-track { animation-play-state: paused; }
@keyframes notice-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.notice-image {
  display: none;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}
.notice.has-image .notice-image {
  display: block;
}
.notice.has-image .notice-speaker {
  display: none;
}
.notice-speaker {
  width: 27px;
  height: 25px;
  display: inline-block;
  position: relative;
  background: #7d7d7d;
  clip-path: polygon(0 32%, 34% 32%, 100% 0, 100% 100%, 34% 68%, 0 68%);
}
.notice-speaker::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 30px;
  right: -12px;
  top: -2px;
  border-right: 3px solid #7d7d7d;
  border-radius: 0 50% 50% 0;
}

.network-panel {
  margin: 0 26px;
  padding: 12px 21px 6px;
  background: var(--panel-bg);
  border: 2px solid #f0cb67;
  border-radius: 19px;
}
.route-row {
  min-height: 85px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 120px;
  align-items: center;
  column-gap: 13px;
  border-bottom: 2px solid #efc663;
}
.route-row:last-child {
  border-bottom: 0;
}
.route-latency {
  font-size: 23px;
  white-space: nowrap;
  padding-left: 4px;
  border-right: 2px solid #f1bf4c;
  line-height: 31px;
}
.route-state {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  white-space: nowrap;
}
.route-flag {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.route-flag img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.route-flag.has-image img {
  display: block;
}
.route-flag.has-image > span {
  display: none;
}
.flag-mainland {
  background: #ff541e;
}
.flag-hk {
  background: #ef4b4b;
}
.flag-tw {
  background: #df1a32;
}
.flag-asia {
  background: #6196ee;
}
.flag-macau {
  background: #088f83;
}
.route-flow {
  width: 58px;
  height: 18px;
  flex: 0 0 auto;
  color: #efcf72;
  font-size: 29px;
  letter-spacing: -7px;
  display: grid;
  place-items: center;
  transform: translateY(-1px);
}
.route-flow img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.route-flow.has-image img {
  display: block;
}
.route-flow.has-image > span {
  display: none;
}
.route-action {
  position: relative;
  border-left: 2px solid #f1bf4c;
  padding-left: 11px;
}
.route-button {
  width: 119px;
  min-height: 55px;
  padding: 4px 8px;
  border: 0;
  border-radius: 9px;
  background: #f8d475;
  color: #6b604f;
  font-size: 23px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    filter 0.16s ease;
}
.route-button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}
.route-button.download {
  background: linear-gradient(100deg, #39dbb2, #2fc9ee);
  color: #18736d;
}
.route-action::after {
  content: "极速";
  position: absolute;
  right: -5px;
  top: -10px;
  padding: 1px 6px 3px;
  border-radius: 6px;
  color: #fff;
  background: #fb101d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}
.route-row:not(.is-app) .route-action::after {
  display: none;
}

.refresh-button {
  width: calc(100% - 52px);
  margin: 28px 26px 26px;
  min-height: 83px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(110deg, #ffe9a8, #efc86f);
  color: #695f51;
  box-shadow:
    0 5px 0 #d8d8d8,
    0 7px 12px rgba(181, 144, 55, 0.15);
  font-size: 25px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  transition: transform 0.16s ease;
}
.refresh-button:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #d8d8d8;
}
.refresh-symbol {
  font-size: 29px;
  line-height: 1;
}

.countdown-panel {
  margin: 0 26px 28px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  border: 2px solid #f0cb67;
  border-radius: 18px;
  background: #fff;
}
.countdown-box {
  min-height: 118px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(110deg, #ffe49a, #f5cb68);
}
.countdown-box h2 {
  margin: 0;
  color: #2e88f7;
  font-size: 25px;
  line-height: 1.2;
  white-space: nowrap;
}
.countdown-box strong {
  margin-top: 17px;
  color: #ff101d;
  font-family: "Courier New", monospace;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
}

.quick-links {
  display: grid;
  gap: 28px;
  padding: 0 26px 37px;
}
.quick-link {
  min-height: 126px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 140px;
  position: relative;
  background: #fff;
  border: 2px solid #efc663;
  border-radius: 18px;
  box-shadow: 0 4px 0 #d7d7d7;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}
.quick-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 #d0d0d0;
}
.quick-icon {
  position: absolute;
  left: 141px;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.quick-image {
  display: none;
  position: absolute;
  left: 141px;
  width: 80px;
  height: 80px;
  transform: translateX(-50%);
  object-fit: contain;
}
.quick-link.has-image .quick-image {
  display: block;
}
.quick-link.has-image .quick-icon {
  display: none;
}
.icon-phone {
  background: #ffeaa8;
}
.icon-phone::before {
  content: "";
  width: 35px;
  height: 52px;
  border: 7px solid #22cbb6;
  border-radius: 7px;
  background: #43d9c6;
  box-shadow: inset 0 0 0 5px #8beadd;
}
.icon-phone span {
  position: absolute;
  color: #25bda9;
  font-size: 36px;
  font-weight: 800;
  transform: translateY(1px);
}
.icon-telegram {
  background: #43afe5;
  color: white;
  font-size: 46px;
  line-height: 1;
  transform: translateX(-50%) rotate(-22deg);
  padding-bottom: 5px;
}
.icon-gift {
  background: #ffeaa8;
  color: #f2484e;
  font-size: 50px;
}
.icon-service {
  background: #ffeaa8;
  color: #18b9ef;
  font-size: 58px;
}
.quick-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.quick-copy strong {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
}
.quick-copy small {
  font-size: 20px;
  line-height: 1.15;
}
.quick-arrow {
  position: absolute;
  right: 25px;
  color: #e8bf59;
  font-size: 35px;
  font-weight: 300;
}

.download-panel {
  padding: 36px 26px 38px;
  background: #fff;
  border-top: 2px solid #dadada;
}
.download-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-brand-image {
  display: none;
  width: 100%;
  max-width: 621px;
  height: auto;
  object-fit: contain;
}
.download-brand-row.has-image .download-brand-image {
  display: block;
}
.download-brand-row.has-image .download-brand-fallback {
  display: none;
}
.download-brand-row.has-image + .download-slogan {
  display: none;
}
.download-brand-fallback {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 39px;
}
.app-logo-placeholder {
  width: 153px;
  height: 153px;
  border-radius: 32px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #28221d;
  position: relative;
  display: grid;
  place-items: center;
}
.app-logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.app-logo-placeholder img {
  display: none;
}
.app-logo-placeholder.has-image img {
  display: block;
}
.app-logo-fallback {
  text-align: center;
  color: #f5d481;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
}
.app-logo-fallback::before {
  content: "◉";
  display: block;
  margin-bottom: 7px;
  color: #f5d481;
  font-size: 54px;
}
.app-logo-fallback b {
  color: #fff;
  font-size: 34px;
}
.app-logo-fallback span {
  color: #f52222;
  font-weight: 800;
}
.download-brand-copy h2 {
  margin: 0;
  color: #edc969;
  font-size: 31px;
  font-weight: 600;
  white-space: nowrap;
}
.stars {
  display: flex;
  gap: 1px;
  margin: 6px 0;
  color: #ffd21c;
  font-size: 46px;
  line-height: 0.9;
  text-shadow: 1px 1px 0 #f2b200;
}
.stars span:last-child {
  color: #fff;
  text-shadow: 1px 1px 0 #f2b200;
}
.download-brand-copy p {
  margin: 2px 0 0;
  color: #e5c266;
  font-size: 16px;
  white-space: nowrap;
}
.download-brand-copy em {
  color: #ed3232;
  font-style: normal;
}
.download-slogan {
  margin: 29px 0 29px;
  color: #efca76;
  text-align: center;
  font-size: 24px;
  white-space: nowrap;
}
.store-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  margin-top: 40px;
}
.store-badge {
  height: 81px;
  border-radius: 16px;
  padding: 4px 12px 4px 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: visible;
  background: #ffe498;
  color: #232323;
  font-size: 18px;
  line-height: 1.3;
  position: relative;
}
.store-platform-image {
  display: none;
  width: 56px;
  height: 65px;
  flex: 0 0 56px;
  object-fit: contain;
}
.store-badge.has-platform-image .store-platform-image {
  display: block;
}
.store-badge.has-platform-image .store-icon {
  display: none;
}
.store-icon {
  width: 46px;
  display: grid;
  place-items: center;
  color: #8cc63e;
  font-size: 47px;
  line-height: 0.5;
}
.store-icon.apple {
  color: white;
  font-size: 47px;
}
.store-phone {
  position: absolute;
  right: 9px;
  bottom: -4px;
  width: 92px;
  height: 105px;
  border: 4px solid #383838;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(135deg, #6e4c36, #1d1b1a 48%, #bd8e5a);
  opacity: 0.95;
}
.store-phone::after {
  content: "";
  position: absolute;
  inset: 12px 7px 8px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 207, 132, 0.7) 0 4px,
    rgba(73, 51, 37, 0.7) 4px 9px
  );
}
.store-preview {
  display: none;
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 0;
  width: 100px;
  height: 105px;
  object-fit: contain;
  object-position: bottom center;
}
.store-badge.has-preview-image .store-preview {
  display: block;
}
.store-badge.has-preview-image .store-phone {
  display: none;
}

.site-footer {
  padding: 22px 24px 25px;
  border-top: 2px solid #d5d5d5;
  background: #f7dfac;
  color: #685d4d;
  text-align: center;
  font-size: 21px;
  line-height: 1.55;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 10;
  transform: translate(-50%, 15px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(55, 48, 37, 0.88);
  color: #fff;
  font-size: 15px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 560px) {
  .site-header {
    height: 56px;
    padding: 0 12px;
    border-bottom-width: 2px;
  }
  .brand {
    gap: 7px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }
  .brand-mark::before {
    inset: 4px;
  }
  .brand-image {
    width: min(198px, 58vw);
    max-height: 50px;
  }
  .brand-copy strong {
    font-size: 14px;
  }
  .brand-copy small {
    font-size: 11px;
    margin-top: 3px;
  }
  .header-slogan {
    width: 108px;
    max-width: 34%;
  }
  .header-slogan-image {
    max-height: 31px;
  }
  .header-blessing {
    font-size: 15px;
  }
  .hero {
    height: 102px;
    margin: 11px 14px 0;
    border-radius: 11px;
  }
  .hero-track { transition-duration: 320ms; }
  .hero-dots { bottom: 5px; gap: 6px; }
  .hero-dot { width: 7px; height: 7px; }
  .hero-fallback {
    padding: 5px 10px 0 72px;
  }
  .fallback-kicker {
    font-size: 5px;
    margin-bottom: 3px;
  }
  .fallback-title {
    font-size: 18px;
  }
  .fallback-subtitle {
    font-size: 10px;
    margin-top: 6px;
  }
  .fallback-url {
    margin-top: 6px;
    font-size: 10px;
  }
  .notice {
    min-height: 30px;
    padding: 0 14px;
    gap: 5px;
    font-size: 12px;
  }
  .notice-image {
    width: 18px;
    height: 18px;
  }
  .notice-speaker {
    width: 17px;
    height: 16px;
  }
  .network-panel {
    margin: 0 14px;
    padding: 6px 10px 3px;
    border-width: 1px;
    border-radius: 11px;
  }
  .route-row {
    min-height: 46px;
    grid-template-columns: 54px minmax(0, 1fr) 64px;
    column-gap: 4px;
    border-bottom-width: 1px;
  }
  .route-latency {
    font-size: 12px;
    padding-left: 0;
    line-height: 20px;
    border-right-width: 1px;
  }
  .route-state {
    gap: 3px;
    font-size: 11px;
  }
  .route-flag {
    width: 20px;
    height: 20px;
    font-size: 7px;
  }
  .route-flow {
    width: 29px;
    height: 9px;
    font-size: 16px;
    letter-spacing: -5px;
  }
  .route-action {
    padding-left: 3px;
    border-left-width: 1px;
  }
  .route-row.is-app .route-action {
    padding-left: 2px;
  }
  .route-button {
    width: 61px;
    min-height: 31px;
    padding: 2px 3px;
    border-radius: 5px;
    font-size: 12px;
  }
  .route-action::after {
    right: -2px;
    top: -5px;
    padding: 1px 4px 2px;
    border-radius: 4px;
    font-size: 8px;
  }
  .refresh-button {
    width: calc(100% - 28px);
    margin: 16px 14px 15px;
    min-height: 45px;
    border-radius: 10px;
    box-shadow:
      0 3px 0 #d8d8d8,
      0 4px 7px rgba(181, 144, 55, 0.15);
    font-size: 14px;
  }
  .refresh-symbol {
    font-size: 17px;
  }
  .countdown-panel {
    margin: 0 14px 15px;
    padding: 5px;
    gap: 5px;
    border-width: 1px;
    border-radius: 10px;
  }
  .countdown-box {
    min-height: 64px;
    border-radius: 6px;
  }
  .countdown-box h2 {
    font-size: 13px;
  }
  .countdown-box strong {
    margin-top: 8px;
    font-size: 16px;
  }
  .quick-links {
    gap: 15px;
    padding: 0 14px 21px;
  }
  .quick-link {
    min-height: 68px;
    padding: 9px 28px 9px 135px;
    border-width: 1px;
    border-radius: 10px;
    box-shadow: 0 3px 0 #d7d7d7;
  }
  .quick-icon {
    left: 95px;
    width: 43px;
    height: 43px;
  }
  .quick-image {
    left: 95px;
    width: 43px;
    height: 43px;
  }
  .icon-phone::before {
    width: 19px;
    height: 29px;
    border-width: 4px;
    border-radius: 4px;
  }
  .icon-phone span {
    font-size: 20px;
  }
  .icon-telegram,
  .icon-gift,
  .icon-service {
    font-size: 27px;
  }
  .quick-copy {
    gap: 4px;
    min-width: 0;
  }
  .quick-copy strong {
    font-size: 15px;
  }
  .quick-copy small {
    font-size: 11px;
    white-space: nowrap;
  }
  .quick-arrow {
    right: 11px;
    font-size: 21px;
  }
  .download-panel {
    padding: 20px 14px 21px;
    border-top-width: 1px;
  }
  .download-brand-fallback {
    gap: 20px;
  }
  .app-logo-placeholder {
    width: 83px;
    height: 83px;
    border-radius: 18px;
  }
  .app-logo-fallback {
    font-size: 15px;
  }
  .app-logo-fallback::before {
    font-size: 30px;
    margin-bottom: 3px;
  }
  .app-logo-fallback b {
    font-size: 19px;
  }
  .download-brand-copy h2 {
    font-size: 17px;
  }
  .stars {
    font-size: 25px;
    margin: 4px 0;
  }
  .download-brand-copy p {
    font-size: 9px;
  }
  .download-slogan {
    margin: 16px 0;
    font-size: 13px;
  }
  .store-row {
    gap: 8px;
  }
  .store-badge {
    height: 45px;
    padding: 2px 5px 2px 8px;
    gap: 5px;
    font-size: 10px;
    border-radius: 9px;
  }
  .store-platform-image {
    width: 31px;
    height: 37px;
    flex-basis: 31px;
  }
  .store-icon {
    width: 25px;
    font-size: 26px;
  }
  .store-phone {
    width: 50px;
    height: 58px;
    border-width: 2px;
    right: 3px;
    border-radius: 8px 8px 0 0;
  }
  .store-preview {
    right: 3px;
    width: 53px;
    height: 56px;
  }
  .store-phone::after {
    inset: 7px 4px 5px;
  }
  .site-footer {
    padding: 12px 9px 13px;
    border-top-width: 1px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-track { transition: none; }
  .notice-track { animation-play-state: paused; }
}

@media (min-width: 561px) {
  .quick-link {
    padding-left: 256px;
  }
  .quick-icon {
    left: 183px;
  }
  .quick-image {
    left: 183px;
  }
}

@media (min-width: 900px) {
  html, body { width: 100%; min-width: 900px; min-height: 100%; }
  body { overflow: hidden; background: #f8f4e9; }
  .page-shell { display: none; }
  .pc-page {
    position: relative;
    display: block;
    width: 100vw;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: url("assets/pc/bg.png") center center / 100% 100% no-repeat;
  }
  .pc-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1920px;
    height: 900px;
    transform: translate(-50%, -50%) scale(var(--pc-stage-scale, 1));
    transform-origin: center;
  }
  .pc-visual {
    position: absolute;
    left: 230px;
    top: 63px;
    width: 762px;
    height: 837px;
    object-fit: contain;
  }
  .pc-actions {
    position: absolute;
    left: 1225px;
    top: 70px;
    width: 396px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pc-logo { width: 396px; height: 100px; object-fit: contain; }
  .pc-action-list { display: grid; gap: 13px; width: 320px; margin-top: 51px; }
  .pc-action {
    position: relative;
    width: 320px;
    height: 75px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .pc-action--image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .16s ease; }
  .pc-action--image .pc-action-hover { opacity: 0; }
  .pc-action--image:hover > img:first-child, .pc-action--image:focus-visible > img:first-child { opacity: 0; }
  .pc-action--image:hover .pc-action-hover, .pc-action--image:focus-visible .pc-action-hover { opacity: 1; }
  .pc-action--image.active > img:first-child { opacity: 0; }
  .pc-action--image.active .pc-action-hover { opacity: 1; }
  .pc-blessing { width: 359px; height: 101px; margin-top: 35px; object-fit: contain; }

  .pc-route-layer { position: fixed; inset: 0; z-index: 20; pointer-events: none; }
  .pc-route-layer[hidden] { display: none; }
  .pc-route-backdrop { display: none; }
  .pc-route-dialog {
    position: absolute;
    left: var(--pc-route-left, 50%);
    top: var(--pc-route-top, 260px);
    width: min(760px, calc(100vw - 48px));
    padding: 18px 20px;
    border: 3px solid #e9b72b;
    border-radius: 8px;
    background: rgba(255, 253, 250, .96);
    box-shadow: 0 12px 40px rgba(115, 88, 25, .18);
    transform: translateX(-50%);
    pointer-events: auto;
  }
  .pc-route-pointer {
    position: absolute;
    left: var(--pc-route-pointer-left, 50%);
    top: -12px;
    width: 21px;
    height: 21px;
    border-top: 3px solid #e9b72b;
    border-left: 3px solid #e9b72b;
    background: #fffdfa;
    transform: translateX(-50%) rotate(45deg);
  }
  .pc-route-close {
    position: absolute;
    right: 5px;
    top: 4px;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: #b99538;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
  .pc-route-list { display: grid; gap: 8px; }
  .pc-route-row {
    display: grid;
    grid-template-columns: 92px 40px minmax(290px, 1fr) 170px;
    align-items: center;
    gap: 12px;
    min-height: 48px;
  }
  .pc-route-latency, .pc-route-state, .pc-route-button {
    height: 48px;
    display: flex;
    align-items: center;
    border: 2px solid #d4a526;
    border-radius: 7px;
    color: #5e6673;
    background: rgba(255, 255, 255, .62);
  }
  .pc-route-latency { justify-content: center; font-size: 18px; }
  .pc-route-separator { width: 40px; height: 20px; object-fit: contain; }
  .pc-route-state { padding: 0 18px; gap: 9px; font-size: 18px; white-space: nowrap; }
  .pc-route-state img.pc-route-flag { width: 31px; height: 31px; object-fit: contain; }
  .pc-route-state img.pc-route-flow { width: 47px; height: 14px; object-fit: contain; }
  .pc-route-button {
    position: relative;
    justify-content: center;
    color: #c99721;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: color .15s ease, background-color .15s ease;
  }
  .pc-route-button:not(.download):hover,
  .pc-route-button:not(.download):focus-visible {
    color: #fff;
    background: #d1a735;
    outline: none;
  }
  .pc-route-button.download { border-color: transparent; color: #fff; background: linear-gradient(100deg, #43e2b5, #22aeea); }
  .pc-route-button.is-fast::after {
    content: "极速";
    position: absolute;
    right: -2px;
    top: 4px;
    padding: 2px 5px 4px;
    border-radius: 6px 6px 0 6px;
    color: #fff;
    background: #f30d26;
    font-size: 12px;
  }
}

@media (min-width: 900px) and (max-height: 800px) {
  .pc-route-dialog {
    width: min(760px, calc(100vw - 48px));
  }
}
