﻿:root {
  color-scheme: dark;
  --bg: #010101;
  --bg-2: #050505;
  --panel: #080808;
  --panel-2: #101010;
  --text: #f8fbff;
  --muted: rgba(226, 235, 245, 0.66);
  --line: rgba(212, 175, 55, 0.34);
  --orange: #d4af37;
  --orange-2: #f0c94d;
  --gold: #d4af37;
  --gold-light: #f7df84;
  --gold-deep: #8f6508;
  --green: #d4af37;
  --cyan: #d4af37;
  --shadow: 0 30px 110px rgba(0, 0, 0, 0.58);
  --radius: 8px;
}

body.modal-open {
  overflow: hidden;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.payment-modal.is-open {
  display: block;
}

.payment-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.payment-dialog {
  position: relative;
  width: min(760px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 28px;
  overflow: auto;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(143, 101, 8, 0.03)),
    rgba(6, 6, 6, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.56),
    0 0 24px rgba(212, 175, 55, 0.08);
}

.payment-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.payment-heading {
  margin-bottom: 22px;
}

.payment-kicker {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-subtitle,
.payment-helper,
.contact-copy p,
.payment-method small {
  color: var(--muted);
  line-height: 1.75;
}

.payment-form,
.payment-order-card,
.contact-card {
  display: grid;
  gap: 18px;
}

.is-hidden {
  display: none !important;
}

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

.payment-grid.is-hidden {
  display: none;
}

.payment-grid label,
.payment-method {
  display: grid;
  gap: 8px;
}

.payment-grid span,
.payment-summary span,
.payment-order-card span,
.contact-copy span {
  color: var(--muted);
  font-size: 13px;
}

.payment-grid input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 10px;
}

.payment-methods {
  display: grid;
  gap: 12px;
}

.payment-method {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
  cursor: pointer;
}

.payment-method input {
  margin: 0;
}

.payment-method span {
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.payment-method-meta {
  color: var(--gold-light);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.payment-method-tip {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--gold-light);
  font-size: 13px;
}

.payment-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
}

.payment-summary strong,
.payment-order-card strong,
.contact-copy strong {
  color: var(--gold-light);
}

.payment-summary strong {
  font-size: 30px;
}

.payment-order-card-single {
  margin-bottom: 22px;
}

.payment-order-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
}

.payment-qr-wrap,
.contact-qr {
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 14px;
}

.payment-qr-image {
  width: min(100%, 320px);
  border-radius: 12px;
}

.payment-qr-empty,
.payment-empty,
.payment-error {
  color: #ffd9d9;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-link {
  min-width: 180px;
}

.payment-submit {
  min-width: 210px;
}

.order-history-entry {
  display: block;
  width: min(760px, calc(100% - 48px));
  margin: 16px auto 0;
  padding: 12px 16px;
  color: var(--gold-light);
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(247, 223, 132, 0.48);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.order-history-list {
  display: grid;
  gap: 12px;
}

.order-history-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
  cursor: pointer;
}

.order-history-item span {
  font-weight: 900;
}

.order-history-item strong {
  color: var(--gold-light);
}

.order-history-item b {
  color: var(--gold-light);
}

.order-history-item em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
}

.contact-card {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
}

.contact-copy strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 28px;
}

.payment-status-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.payment-status-panel {
  width: min(760px, 100%);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(143, 101, 8, 0.03)),
    rgba(6, 6, 6, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.56),
    0 0 24px rgba(212, 175, 55, 0.08);
}

@media (max-width: 720px) {
  .payment-dialog {
    padding: 20px 16px 18px;
  }

  .payment-grid,
  .payment-order-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .payment-actions {
    flex-direction: column;
  }

  .order-history-entry {
    width: calc(100% - 40px);
    margin-top: 14px;
    border-radius: 12px;
  }

  .order-history-item {
    grid-template-columns: 1fr;
  }

  .payment-status-panel {
    padding: 20px 16px 18px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Microsoft YaHei", "HarmonyOS Sans SC", "Source Han Sans SC", sans-serif;
  background:
    radial-gradient(ellipse at 72% 12%, rgba(212, 175, 55, 0.14), transparent 24%),
    radial-gradient(ellipse at 18% 10%, rgba(255, 255, 255, 0.035), transparent 20%),
    radial-gradient(ellipse at 84% 84%, rgba(143, 101, 8, 0.08), transparent 28%),
    linear-gradient(180deg, #010101 0%, #040404 36%, #010101 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.022) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(212, 175, 55, 0.018) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(126deg, transparent 0 47%, rgba(212, 175, 55, 0.042) 48%, transparent 49% 100%) 0 0 / 320px 320px;
  opacity: 0.66;
  mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0.44) 56%, transparent 84%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 12%, transparent 0 30%, rgba(0, 0, 0, 0.42) 74%, rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
  opacity: 1;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 60px);
  background: rgba(3, 3, 3, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #08080b;
  background: linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 24%, var(--gold) 48%, var(--gold-deep) 100%);
  border-radius: 7px;
  font-size: 13px;
  box-shadow: 0 0 28px rgba(231, 221, 208, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 15px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 223, 132, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-links a,
.lang-button,
.header-cta,
.button,
.sticky-buy a {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--orange-2);
}

.lang-button {
  min-width: 54px;
  padding: 9px 12px;
  color: rgba(248, 251, 255, 0.76);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-button:hover {
  color: #100d08;
  background: linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 22%, var(--gold) 48%, #b8860b 72%, var(--gold-deep) 100%);
  border-color: rgba(247, 223, 132, 0.48);
}

.lang-button.is-active {
  color: #100d08;
  background: linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 22%, var(--gold) 48%, #b8860b 72%, var(--gold-deep) 100%);
  border-color: rgba(247, 223, 132, 0.66);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.24);
}

.header-cta {
  position: relative;
  padding: 14px 28px;
  overflow: hidden;
  color: #100d08;
  background: linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 22%, var(--gold) 48%, #b8860b 72%, var(--gold-deep) 100%);
  border: 1px solid rgba(247, 223, 132, 0.66);
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(247, 223, 132, 0.24), 0 14px 38px rgba(212, 175, 55, 0.35);
  letter-spacing: 0.04em;
}

.header-cta::after,
.button.primary::after,
.sticky-buy a::after {
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: rotate(18deg);
  animation: cta-shine 3.2s ease-in-out infinite;
}

.header-cta:hover,
.button:hover,
.sticky-buy a:hover {
  transform: translateY(-2px);
}

@keyframes cta-shine {
  0%,
  45% {
    left: -45%;
  }

  70%,
  100% {
    left: 125%;
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(44px, 7vw, 98px) clamp(18px, 5vw, 76px) clamp(64px, 8vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

.fake-order-toast {
  position: fixed;
  top: 118px;
  left: clamp(76px, 5vw, 118px);
  z-index: 15;
  display: block;
  width: 430px;
  height: 58px;
  overflow: hidden;
  padding: 0 22px;
  color: rgba(248, 251, 255, 0.88);
  background:
    radial-gradient(circle at 10% 50%, rgba(140, 255, 154, 0.16), transparent 18%),
    radial-gradient(circle at 78% 50%, rgba(247, 223, 132, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.26), rgba(0, 0, 0, 0.78)),
    rgba(7, 7, 7, 0.94);
  border: 1px solid rgba(247, 223, 132, 0.58);
  border-radius: 999px;
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(212, 175, 55, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.fake-order-toast::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  content: "";
  background: #8cff9a;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(140, 255, 154, 0.9);
  transform: translateY(-50%);
}

.fake-order-track {
  display: grid;
  animation: order-ticker 9.6s steps(4) infinite;
}

.fake-order-track div {
  display: grid;
  justify-content: start;
  height: 58px;
  padding: 10px 0 10px 18px;
}

.fake-order-toast span {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.fake-order-toast strong {
  color: #fff7d5;
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes order-ticker {
  to {
    transform: translateY(-232px);
  }
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 2% 2% 6%;
  background:
    radial-gradient(ellipse at 22% 12%, rgba(255, 255, 255, 0.04), transparent 18%),
    radial-gradient(ellipse at 76% 22%, rgba(212, 175, 55, 0.12), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.015), rgba(212, 175, 55, 0.018) 36%, rgba(0, 0, 0, 0.08) 100%),
    rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -60px 120px rgba(0, 0, 0, 0.42),
    0 36px 120px rgba(0, 0, 0, 0.44);
}

.hero::after {
  right: 7%;
  bottom: 12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 62%);
  filter: blur(38px);
}

.hero-copy,
.supply-copy,
.poster-copy,
.open > div {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.2vw, 88px);
  line-height: 1.02;
  text-shadow:
    0 0 18px rgba(212, 175, 55, 0.12),
    0 10px 42px rgba(212, 175, 55, 0.16);
}

.hero-title {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-bottom: 26px;
  line-height: 1;
}

.hero-title span {
  display: block;
}

.title-brand {
  color: #ffffff;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 900;
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.16);
}

.title-main {
  width: max-content;
  max-width: 100%;
  padding: 10px 18px 12px;
  color: #100d08;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.58) 0 12%, transparent 13% 100%),
    linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 24%, var(--gold) 52%, #b8860b 78%, var(--gold-deep) 100%);
  border: 1px solid rgba(247, 223, 132, 0.78);
  border-radius: 8px;
  box-shadow:
    0 18px 46px rgba(212, 175, 55, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -14px 26px rgba(76, 49, 0, 0.18);
  font-size: clamp(34px, 4.6vw, 70px);
  font-weight: 900;
}

.title-accent {
  color: transparent;
  background: linear-gradient(90deg, #f8fbff 0%, #d4af37 48%, #f7df84 82%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(48px, 6.2vw, 96px);
  font-weight: 900;
  text-shadow: 0 0 36px rgba(212, 175, 55, 0.28);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-lead,
.supply-copy p,
.poster-copy p,
.open p,
.rights-grid p {
  color: var(--muted);
  line-height: 1.82;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(17px, 1.6vw, 22px);
}

.hero-offer {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 0.64fr);
  gap: 18px;
  max-width: 760px;
  margin-bottom: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(212, 175, 55, 0.06)),
    rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 10px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offer-price span {
  display: block;
  margin-bottom: 6px;
  color: rgba(248, 251, 255, 0.7);
  font-weight: 800;
}

.offer-price del {
  color: rgba(248, 251, 255, 0.48);
  text-decoration-color: rgba(255, 69, 69, 0.9);
  text-decoration-thickness: 2px;
}

.offer-price strong {
  display: grid;
  color: var(--gold-light);
  line-height: 1.05;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.24);
}

.offer-price em,
.offer-price b {
  font-style: normal;
  font-weight: 900;
}

.offer-price em {
  font-size: clamp(34px, 3.6vw, 52px);
}

.offer-price b {
  font-size: clamp(27px, 2.9vw, 40px);
}

.hero-offer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-offer li {
  position: relative;
  padding-left: 20px;
  color: rgba(248, 251, 255, 0.86);
  font-weight: 800;
}

.hero-offer li::before {
  position: absolute;
  left: 0;
  color: var(--gold-light);
  content: "◆";
  font-size: 12px;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-badges span {
  padding: 9px 13px;
  color: #fff5c6;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(143, 101, 8, 0.08)),
    rgba(10, 10, 14, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 18px rgba(212, 175, 55, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.countdown-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 0.6fr);
  gap: 18px;
  max-width: 760px;
  margin-bottom: 24px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(143, 101, 8, 0.04)),
    rgba(8, 8, 8, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.countdown-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.countdown-card strong {
  color: var(--gold);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.countdown-card p {
  margin: 0;
  color: rgba(255, 248, 239, 0.78);
}

.hero-actions,
.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 239, 0.24);
  border-radius: 6px;
  font-weight: 900;
}

.button.primary {
  min-height: 66px;
  padding: 19px 36px;
  color: #100d08;
  background: linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 22%, var(--gold) 48%, #b8860b 72%, var(--gold-deep) 100%);
  border-color: rgba(247, 223, 132, 0.68);
  box-shadow:
    0 0 0 1px rgba(247, 223, 132, 0.26),
    0 18px 48px rgba(212, 175, 55, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  font-size: 17px;
  letter-spacing: 0.04em;
}

.button.secondary {
  background: rgba(255, 247, 232, 0.045);
  border-color: rgba(231, 221, 208, 0.26);
}

.button.large {
  width: 100%;
  min-height: 74px;
  font-size: 22px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 28px;
}

.metric-item {
  min-height: 86px;
  padding: 16px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(212, 175, 55, 0.024));
  border: 1px solid rgba(231, 221, 208, 0.1);
  border-radius: var(--radius);
}

.metric-item strong {
  display: block;
  color: var(--text);
  font-size: 30px;
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.hero-panel {
  position: relative;
  max-height: 82vh;
  padding: 12px;
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(231, 221, 208, 0.08), rgba(212, 175, 55, 0.04)),
    rgba(5, 5, 5, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px rgba(231, 221, 208, 0.1);
}

.hero-panel img,
.poster-frame img {
  width: 100%;
  border-radius: 6px;
}

.panel-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding: 13px 14px;
  color: #08080b;
  background: linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 24%, var(--gold) 48%, var(--gold-deep) 100%);
  border-radius: 6px;
  font-size: 14px;
}

.panel-top strong {
  text-align: right;
}

.section {
  padding: clamp(58px, 8vw, 116px) clamp(18px, 5vw, 76px);
}

.section-title {
  max-width: 1000px;
  margin-bottom: 34px;
}

.rights {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.075), rgba(255, 255, 255, 0.018));
}

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

.rights-grid article {
  min-height: 270px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(10, 10, 14, 0.76));
  border: 1px solid rgba(231, 221, 208, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.rights-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--orange-2);
  font-size: 40px;
  font-weight: 900;
}

.supply {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  padding: 12px 13px;
  color: #f8f4ef;
  background: rgba(212, 175, 55, 0.11);
  border: 1px solid rgba(247, 223, 132, 0.24);
  border-radius: 6px;
  font-weight: 800;
}

.supply-visual {
  display: grid;
  gap: 14px;
}

.supply-visual img {
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.products {
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.105), transparent 28%),
    linear-gradient(180deg, #0d0d12, #050507);
}

.product-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.035);
}

.product-table th,
.product-table td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 248, 239, 0.1);
}

.product-table th {
  color: #08080b;
  background: linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 24%, var(--gold) 55%, #b8860b 100%);
  font-size: 15px;
}

.product-table td {
  color: rgba(255, 248, 239, 0.82);
}

.product-table tr:hover td {
  background: rgba(255, 122, 47, 0.08);
}

.table-actions {
  margin-top: 22px;
}

.poster-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.poster-frame {
  max-width: 520px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.open {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: 132px;
  background:
    radial-gradient(circle at 78% 10%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(143, 101, 8, 0.08), transparent 36%),
    #020306;
}

.open-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(212, 175, 55, 0.08)),
    rgba(8, 8, 12, 0.9);
  border: 1px solid rgba(231, 221, 208, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 46px rgba(212, 175, 55, 0.15);
}

.open-card strong {
  color: var(--gold);
  font-size: 30px;
}

.open-card span,
.risk-note {
  color: var(--muted);
  line-height: 1.7;
}

.risk-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.rights,
.products,
.open {
  background:
    radial-gradient(circle at 12% 10%, rgba(212, 175, 55, 0.05), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(212, 175, 55, 0.05), transparent 20%),
    linear-gradient(180deg, #010101, #040404 48%, #010101);
}

.countdown-card,
.metric-item,
.rights-grid article,
.open-card,
.poster-frame,
.product-table-wrap {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.045), rgba(143, 101, 8, 0.03)),
    rgba(6, 6, 6, 0.9);
  border-color: rgba(212, 175, 55, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 0 24px rgba(212, 175, 55, 0.035);
}

.hero-panel,
.supply-visual img {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(143, 101, 8, 0.03)),
    rgba(4, 4, 4, 0.94);
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow:
    0 30px 110px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(212, 175, 55, 0.05);
}

.feature-list span {
  color: #eafcff;
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.26);
}

.product-table {
  background: rgba(6, 6, 6, 0.94);
}

.product-table th {
  background: linear-gradient(135deg, #100d08, rgba(212, 175, 55, 0.18));
  color: #f8fbff;
  border-bottom-color: rgba(212, 175, 55, 0.26);
}

.product-table td {
  color: rgba(226, 235, 245, 0.84);
}

.product-table tr:hover td {
  background: rgba(212, 175, 55, 0.065);
}

.sticky-buy {
  position: fixed;
  right: auto;
  bottom: 20px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(850px, calc(100vw - 44px));
  min-width: 0;
  padding: 13px 14px 13px 20px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.07), rgba(10, 10, 10, 0.9)),
    rgba(3, 3, 3, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 14px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 38px rgba(212, 175, 55, 0.16);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.sticky-buy::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.36), rgba(247, 223, 132, 0.2), rgba(212, 175, 55, 0.28));
  filter: blur(12px);
  opacity: 0.35;
}

.sticky-price {
  min-width: 210px;
  padding: 4px 0;
}

.sticky-price span {
  display: block;
  margin-bottom: 3px;
  color: rgba(226, 235, 245, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.sticky-price del {
  color: rgba(226, 235, 245, 0.52);
  text-decoration-color: rgba(255, 74, 74, 0.82);
  text-decoration-thickness: 2px;
}

.sticky-price strong {
  display: grid;
  gap: 0;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.24);
}

.sticky-price em,
.sticky-price b {
  font-style: normal;
  font-weight: 900;
}

.sticky-price em {
  font-size: 31px;
}

.sticky-price b {
  margin-top: 2px;
  font-size: 21px;
}

.sticky-timer {
  position: relative;
  min-width: 176px;
  padding-left: 14px;
}

.sticky-timer::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, #ff3b3b, var(--gold-light), var(--gold-deep));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 59, 59, 0.55), 0 0 22px rgba(212, 175, 55, 0.42);
  animation: urgent-pulse 1s ease-in-out infinite;
}

.sticky-buy span {
  display: block;
  margin-bottom: 4px;
  color: #ffdf7a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.sticky-buy strong {
  color: var(--gold-light);
  font-size: 33px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 59, 59, 0.34), 0 0 22px rgba(212, 175, 55, 0.42);
  animation: urgent-text 1s ease-in-out infinite;
}

.sticky-timer::after {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 9px;
  color: #fff7e8;
  content: "最后 2 小时";
  background: rgba(255, 59, 59, 0.18);
  border: 1px solid rgba(255, 59, 59, 0.44);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 59, 59, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-buy a {
  position: relative;
  display: grid;
  place-items: center;
  width: 174px;
  min-height: 62px;
  padding: 12px 20px;
  overflow: hidden;
  border: 1px solid rgba(247, 223, 132, 0.62);
  border-radius: 10px;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
}

.sticky-open {
  color: #100d08;
  background: linear-gradient(135deg, #fff3a8 0%, var(--gold-light) 22%, var(--gold) 48%, #b8860b 72%, var(--gold-deep) 100%);
  box-shadow:
    0 18px 46px rgba(212, 175, 55, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -10px 24px rgba(81, 51, 0, 0.22);
  font-size: 25px;
  letter-spacing: 0.04em;
}

.sticky-open::before {
  display: block;
  margin-bottom: 8px;
  color: rgba(16, 13, 8, 0.72);
  content: "赠同款货源站商城";
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.sticky-mall {
  color: var(--gold-light);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.08)),
    rgba(10, 10, 14, 0.86);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 22px rgba(212, 175, 55, 0.1);
  font-size: 18px;
}

.sticky-mall::before {
  display: block;
  margin-bottom: 8px;
  color: rgba(247, 223, 132, 0.72);
  content: "先看货源价格";
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

@keyframes urgent-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scaleY(0.88);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes urgent-text {
  0%,
  100% {
    filter: brightness(0.96);
  }

  50% {
    filter: brightness(1.28);
  }
}

@media (max-width: 1120px) {
  .hero,
  .supply,
  .poster-section,
  .open {
    grid-template-columns: 1fr;
  }

  .rights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
    padding-top: 10px;
  }

  .language-switcher {
    gap: 4px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 4px;
  }

  .lang-button {
    min-width: 0;
    flex: 1 1 0;
    padding: 8px 8px;
    font-size: 11px;
  }

  .header-cta {
    flex: 0 0 auto;
    padding: 11px 16px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .fake-order-toast {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    display: block;
    width: min(328px, calc(100vw - 36px));
    height: 34px;
    margin: 16px auto 0;
    overflow: hidden;
    padding: 0 14px;
    color: rgba(248, 251, 255, 0.88);
    background:
      radial-gradient(circle at 12% 50%, rgba(247, 223, 132, 0.24), transparent 28%),
      linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.72)),
      rgba(7, 7, 7, 0.9);
    border: 1px solid rgba(247, 223, 132, 0.36);
    border-radius: 999px;
    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.28),
      0 0 28px rgba(212, 175, 55, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    pointer-events: none;
  }

  .fake-order-toast::before {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 7px;
    height: 7px;
    content: "";
    background: #8cff9a;
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(140, 255, 154, 0.75);
    transform: translateY(-50%);
  }

  .fake-order-track {
    display: grid;
    animation: order-ticker 9.6s steps(4) infinite;
  }

  .fake-order-track div {
    display: grid;
    justify-content: start;
    height: 34px;
    padding: 4px 0 4px 12px;
  }

  .fake-order-toast span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
  }

  .fake-order-toast strong {
    color: #fff7d5;
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
  }

  @keyframes order-ticker {
    to {
      transform: translateY(-136px);
    }
  }

  h1 {
    max-width: calc(100vw - 48px);
    font-size: 30px;
    line-height: 1.16;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-title {
    gap: 8px;
    max-width: calc(100vw - 48px);
  }

  .title-brand {
    font-size: 42px;
  }

  .title-main {
    width: auto;
    padding: 7px 10px;
    font-size: 27px;
    line-height: 1.15;
  }

  .title-accent {
    font-size: 38px;
  }

  .hero-badges {
    max-width: calc(100vw - 48px);
    gap: 8px;
  }

  .hero-badges span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-offer {
    grid-template-columns: 1fr;
    max-width: 324px;
    padding: 15px;
  }

  .offer-price strong {
    font-size: 28px;
  }

  .offer-price em {
    font-size: 34px;
  }

  .offer-price b {
    font-size: 28px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy,
  .countdown-card,
  .hero-panel,
  .open-card,
  .poster-frame {
    width: 100%;
    max-width: 324px;
  }

  .hero-lead,
  .countdown-card p,
  .open p {
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .countdown-card {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .table-actions {
    flex-direction: column;
  }

  .metric-grid,
  .rights-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    gap: 10px;
  }

  .metric-item {
    min-height: 0;
    padding: 14px;
  }

  .metric-item strong {
    font-size: 24px;
  }

  .metric-label {
    margin-top: 6px;
    font-size: 14px;
  }

  .rights-grid article {
    min-height: auto;
  }

  .product-table-wrap {
    width: 100%;
    max-width: 324px;
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .product-table,
  .product-table tbody,
  .product-table tr,
  .product-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .product-table {
    background: transparent;
  }

  .product-table thead {
    display: none;
  }

  .product-table tbody {
    display: grid;
    gap: 12px;
  }

  .product-table tr {
    padding: 14px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(212, 175, 55, 0.06)),
      rgba(3, 3, 3, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 10px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  }

  .product-table td {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 0;
    color: rgba(248, 251, 255, 0.86);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .product-table td:last-child {
    border-bottom: 0;
  }

  .product-table td::before {
    content: attr(data-label);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 900;
  }

  .sticky-buy {
    right: auto;
    bottom: 12px;
    left: 50%;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    width: min(356px, calc(100vw - 28px));
    max-width: 356px;
    min-width: 0;
    gap: 5px 6px;
    padding: 6px 7px;
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 20%, rgba(247, 223, 132, 0.2), transparent 30%),
      linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(10, 10, 10, 0.94) 42%, rgba(143, 101, 8, 0.18)),
      rgba(3, 3, 3, 0.98);
    border-color: rgba(247, 223, 132, 0.52);
    box-shadow:
      0 18px 70px rgba(0, 0, 0, 0.72),
      0 0 34px rgba(212, 175, 55, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.13);
    transform: translateX(-50%);
  }

  .sticky-buy::after {
    position: absolute;
    top: -35%;
    bottom: -35%;
    left: -28%;
    width: 26%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: rotate(18deg);
    animation: sticky-sweep 3.2s ease-in-out infinite;
  }

  .sticky-timer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    padding: 5px 6px 5px 8px;
    background:
      linear-gradient(135deg, rgba(255, 59, 59, 0.1), rgba(247, 223, 132, 0.08)),
      rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(247, 223, 132, 0.3);
    border-radius: 9px;
  }

  .sticky-timer span {
    margin: 0;
    font-size: 8px;
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .sticky-timer strong {
    color: #ffe98e;
    font-size: 18px;
    white-space: nowrap;
    text-shadow: 0 0 18px rgba(247, 223, 132, 0.42);
  }

  .sticky-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-width: 0;
    padding: 0 4px;
  }

  .sticky-price span {
    margin: 0 0 1px;
    font-size: 10px;
  }

  .sticky-price strong {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    font-size: 15px;
    color: #ffe98e;
    text-shadow: 0 0 18px rgba(247, 223, 132, 0.34);
  }

  .sticky-price em {
    font-size: 16px;
  }

  .sticky-price b {
    font-size: 11px;
  }

  .sticky-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .sticky-buy div {
    min-width: 0;
  }

  .sticky-buy a {
    width: 100%;
    min-height: 34px;
    padding: 5px 7px;
    border-radius: 11px;
    font-size: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .sticky-open {
    font-size: 14px;
  }

  .sticky-open::before,
  .sticky-mall::before {
    margin-bottom: 2px;
    font-size: 8px;
  }

  .sticky-buy strong {
    font-size: 20px;
  }

  .sticky-timer::after {
    display: none;
  }

  @keyframes sticky-sweep {
    0%,
    42% {
      left: -32%;
      opacity: 0;
    }

    58% {
      opacity: 0.75;
    }

    100% {
      left: 112%;
      opacity: 0;
    }
  }
}

