.page-products {
  position: relative;
  color: var(--color-body);
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 179, 0, 0.10), transparent 34%),
    radial-gradient(circle at 4% 38%, rgba(0, 210, 106, 0.08), transparent 30%),
    linear-gradient(180deg, var(--color-bg-deep) 0%, #081426 100%);
  overflow: hidden;
}

.page-products img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-products .container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--content-gutter);
}

.page-products .apps-shell {
  padding-top: 32px;
}

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-muted);
}

.page-products .breadcrumb__link {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-products .breadcrumb__link:hover {
  color: var(--color-amber);
}

.page-products .breadcrumb__sep {
  color: rgba(168, 180, 200, 0.5);
}

.page-products .breadcrumb__item[aria-current="page"] {
  color: var(--color-amber);
}

/* ===== Hero / 手机模拟框 ===== */
.apps-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding-bottom: 56px;
}

.apps-hero__intro {
  order: -1;
}

.apps-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw + 0.6rem, 4rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  color: var(--color-heading);
}

.apps-hero__title-en {
  display: inline-block;
  margin-left: 12px;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
}

.apps-hero__points {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.apps-hero__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 360px;
}

.apps-hero__phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-shell {
  position: relative;
  width: 260px;
  border-radius: 44px;
  background: var(--color-bg-deep);
  box-shadow:
    var(--shadow-deep),
    0 0 70px rgba(255, 179, 0, 0.16),
    0 28px 60px rgba(10, 22, 40, 0.55);
  padding: 8px;
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 48px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.5), rgba(0, 210, 106, 0.22) 40%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}

.phone-shell__screen {
  position: relative;
  aspect-ratio: 375 / 812;
  border-radius: 36px;
  overflow: hidden;
  background: #071426;
}

.phone-shell__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.phone-shell__status {
  position: absolute;
  top: 14px;
  left: 26px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  color: var(--color-heading);
  font-family: var(--font-mono);
  font-size: 12px;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.phone-shell__match {
  position: absolute;
  top: 132px;
  left: 16px;
  right: 16px;
  z-index: 3;
  padding: 16px;
  border-radius: 22px;
  background: rgba(11, 30, 58, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.35);
  color: var(--color-heading);
}

.phone-shell__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--color-green);
}

.phone-shell__league {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-muted);
}

.phone-shell__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-heading);
}

.phone-shell__teams strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.phone-shell__teams em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--color-amber);
}

.phone-shell__sub {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-body);
  opacity: 0.9;
}

.phone-shell__notify {
  position: absolute;
  bottom: 22px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 179, 0, 0.14);
  border: 1px solid rgba(255, 179, 0, 0.26);
  color: var(--color-heading);
  font-size: 12px;
  line-height: 1.4;
  backdrop-filter: blur(7px);
}

.phone-shell__glow {
  position: absolute;
  top: 18%;
  right: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ===== 通用 section 标题 ===== */
.apps-section-head {
  margin-bottom: 32px;
  max-width: 720px;
}

.apps-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw + 0.4rem, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-heading);
  margin: 10px 0 12px;
}

.apps-section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

/* ===== 功能亮点 ===== */
.apps-features {
  padding-block: 42px 64px;
}

.apps-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.apps-fig {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-deep);
  min-height: 0;
}

.apps-fig__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apps-fig__cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 30, 58, 0.74);
  color: var(--color-heading);
  font-size: 13px;
  backdrop-filter: blur(6px);
  line-height: 1.4;
}

.feature-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(18, 44, 79, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-deep);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--grad-amber);
  border-radius: var(--radius-pill);
  opacity: 0.8;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 179, 0, 0.35);
  box-shadow: 0 22px 48px rgba(10, 22, 40, 0.5), 0 0 30px rgba(255, 179, 0, 0.08);
}

.feature-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(255, 179, 0, 0.12);
  color: var(--color-amber);
  border: 1px solid rgba(255, 179, 0, 0.2);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  color: var(--color-body);
  opacity: 0.88;
}

/* ===== 数据能力 ===== */
.apps-data {
  padding-block: 40px 64px;
}

.apps-data__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 20px;
}

.apps-data__panel.panel {
  background: linear-gradient(140deg, rgba(18, 44, 79, 0.9), rgba(11, 30, 58, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.apps-data__text p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 14px;
}

.apps-data__awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.apps-data__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.data-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(11, 30, 58, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.data-stat .data-code {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 2vw + 0.6rem, 2.2rem);
  line-height: 1;
  color: var(--color-amber);
  margin-bottom: 8px;
}

.data-stat:nth-child(2) .data-code,
.data-stat:nth-child(3) .data-code {
  color: var(--color-green);
}

.data-stat__label {
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

.apps-data__fig {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-deep);
  background: var(--color-bg-card);
}

.apps-data__fig-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apps-data__fig-cap {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 30, 58, 0.76);
  color: var(--color-heading);
  font-size: 12px;
  backdrop-filter: blur(5px);
}

/* ===== 版本记录 ===== */
.apps-versions {
  padding-block: 28px 64px;
}

.apps-versions__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.apps-versions__list {
  display: grid;
  gap: 12px;
}

.version-card {
  border-radius: 22px;
  background: rgba(18, 44, 79, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.version-card:hover {
  border-color: rgba(255, 179, 0, 0.24);
}

.version-card summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 700;
}

.version-card summary::-webkit-details-marker {
  display: none;
}

.version-card__num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-amber);
  background: rgba(255, 179, 0, 0.1);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  line-height: 1.4;
}

.version-card__title {
  flex: 1 1 auto;
  min-width: 140px;
}

.version-card summary .tag-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 210, 106, 0.14);
  color: var(--color-green);
  border: 1px solid rgba(0, 210, 106, 0.24);
}

.version-card summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.version-card[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.version-card__body {
  padding: 0 20px 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.version-card__body ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.version-card__body li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-body);
  opacity: 0.9;
}

.version-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
}

.apps-versions__fig {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-deep);
  min-height: 220px;
  background: var(--color-bg-card);
}

.apps-versions__fig-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apps-versions__fig-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(11, 30, 58, 0.76);
  color: var(--color-heading);
  font-size: 13px;
  backdrop-filter: blur(5px);
  line-height: 1.5;
}

/* ===== 下载入口 ===== */
.apps-download {
  padding-block: 40px 64px;
  position: relative;
}

.apps-download__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.apps-download__scene {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
  background: var(--color-bg-card);
  min-height: 220px;
}

.apps-download__scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apps-download__scene-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(11, 30, 58, 0.78);
  color: var(--color-heading);
  font-size: 13px;
  backdrop-filter: blur(5px);
}

.apps-download__panel {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 179, 0, 0.09), transparent 44%),
    rgba(18, 44, 79, 0.84);
  border: 1px solid rgba(255, 179, 0, 0.18);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}

.apps-download__panel::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 106, 0.1), transparent 70%);
  pointer-events: none;
}

.apps-download__lead {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--color-body);
  opacity: 0.9;
}

.apps-download__stores {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 26px;
  max-width: 360px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(11, 30, 58, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-heading);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.store-badge:hover {
  transform: scale(1.02);
  border-color: rgba(255, 179, 0, 0.36);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.4);
}

.store-badge__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--color-amber);
}

.store-badge--play .store-badge__icon {
  color: var(--color-green);
}

.store-badge__line {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.store-badge__name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.apps-download__qr {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 360px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.apps-qr {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  color: var(--color-amber);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 4px;
  box-sizing: border-box;
}

.apps-download__qr span {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ===== 用户口碑 ===== */
.apps-reviews {
  padding-block: 28px 72px;
}

.apps-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.review-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 179, 0, 0.16), transparent 45%),
    var(--color-bg-card);
  border: 1px solid rgba(255, 179, 0, 0.16);
  box-shadow: var(--shadow-deep);
}

.review-summary__score {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-amber);
  letter-spacing: -0.02em;
}

.review-summary__stars {
  margin: 8px 0 6px;
  color: var(--color-amber);
  font-size: 18px;
  letter-spacing: 4px;
}

.review-summary__meta {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.review-summary__tag {
  font-size: 12px;
  background: rgba(0, 210, 106, 0.12);
  color: var(--color-green);
  border: 1px solid rgba(0, 210, 106, 0.24);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.review-card {
  margin: 0;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: rgba(18, 44, 79, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-deep);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
}

.review-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-heading);
  margin: 0 0 16px;
}

.review-card__meta {
  font-size: 13px;
  color: var(--color-muted);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.apps-reviews__support {
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(18, 44, 79, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
}

.apps-reviews__support a {
  color: var(--color-amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 179, 0, 0.4);
  transition: border-color 0.3s ease;
}

.apps-reviews__support a:hover {
  border-bottom-color: var(--color-amber);
}

/* ===== 平板 ===== */
@media (min-width: 768px) {
  .apps-hero {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
  }

  .apps-hero__intro {
    order: 2;
  }

  .apps-hero__phone-col {
    order: 1;
  }

  .apps-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apps-fig {
    grid-column: span 2;
  }

  .apps-data__panel {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 32px;
  }

  .apps-data__stats {
    align-content: start;
  }

  .apps-versions__wrap {
    grid-template-columns: 1fr 1fr;
  }

  .apps-download__grid {
    grid-template-columns: 1fr 1fr;
  }

  .apps-download__stores {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .apps-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-summary {
    grid-row: span 2;
  }
}

/* ===== 桌面 ===== */
@media (min-width: 1080px) {
  .page-products .apps-shell {
    padding-top: 48px;
  }

  .apps-hero {
    grid-template-columns: 11fr 9fr;
    padding-bottom: 72px;
  }

  .phone-shell {
    width: 300px;
  }

  .apps-hero__cta {
    grid-template-columns: 1fr 1fr;
  }

  .apps-features {
    padding-block: 56px 80px;
  }

  .apps-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .apps-fig {
    grid-column: span 3;
    max-height: 320px;
    min-height: 240px;
  }

  .apps-data {
    padding-block: 56px 80px;
  }

  .apps-data__panel {
    gap: 48px;
  }

  .apps-data__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .apps-versions {
    padding-block: 48px 80px;
  }

  .apps-versions__wrap {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .apps-reviews {
    padding-block: 48px 88px;
  }

  .apps-reviews__grid {
    grid-template-columns: 0.9fr 1fr 1fr 1fr;
  }
}
