.page-products {
  --pd-line: rgba(244, 240, 230, 0.14);
  --pd-line-strong: rgba(244, 240, 230, 0.24);
}

/* ---------- 首屏 ---------- */
.page-products .pd-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 52px;
  background: linear-gradient(158deg, #0F1B36 0%, #070B18 48%, #0A211D 100%);
  border-bottom: 4px solid var(--line);
}

.page-products .pd-hero::before {
  content: "";
  position: absolute;
  top: -34%;
  right: -14%;
  width: 60%;
  height: 178%;
  background: linear-gradient(180deg, rgba(30, 122, 94, 0.42), rgba(30, 122, 94, 0) 72%);
  transform: skewX(-15deg);
  z-index: -1;
  pointer-events: none;
}

.page-products .pd-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  max-width: 420px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--amber) 52%, var(--cyan));
  z-index: 2;
  pointer-events: none;
}

.page-products .pd-hero__inner {
  position: relative;
  z-index: 1;
}

.page-products .pd-hero__eyebrow {
  margin: 22px 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

.page-products .pd-hero__title {
  margin: 0 0 18px;
  max-width: 15em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 6.4vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ivory);
}

.page-products .pd-hero__lede {
  margin: 0 0 34px;
  max-width: 42em;
  font-size: 16px;
  line-height: 1.92;
  color: var(--mist);
}

.page-products .pd-hero__facts {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr);
}

.page-products .pd-fact {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 2px solid var(--pd-line-strong);
  background: rgba(7, 11, 24, 0.74);
  box-shadow: var(--shadow-hard);
}

.page-products .pd-fact__k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--mist);
}

.page-products .pd-fact__v {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.1;
  color: var(--cyan);
}

.page-products .pd-fact__m {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

/* ---------- 章节骨架 ---------- */
.page-products .pd-section {
  padding: 62px 0;
  border-bottom: 2px solid var(--pd-line);
}

.page-products .pd-section .section__num {
  color: var(--coral);
}

.page-products .pd-p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.92;
  color: var(--mist);
}

.page-products .pd-p strong {
  color: var(--ivory);
  font-weight: 600;
}

.page-products .pd-p--note {
  margin-top: 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--felt);
  background: rgba(30, 122, 94, 0.12);
  color: var(--ivory);
}

.page-products .pd-h3 {
  margin: 26px 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ivory);
}

.page-products .pd-h3:first-child {
  margin-top: 0;
}

/* ---------- 玩法折叠组 ---------- */
.page-products .pd-games__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.page-products .pd-games {
  display: grid;
  gap: 12px;
}

.page-products .pd-game {
  border: 2px solid var(--pd-line-strong);
  background: linear-gradient(180deg, rgba(15, 27, 54, 0.94), rgba(7, 11, 24, 0.94));
  box-shadow: var(--shadow-hard);
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.page-products .pd-game:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.page-products .pd-game__head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 22px;
  grid-template-areas:
    "num name chev"
    "num meta chev";
  align-items: center;
  column-gap: 12px;
  row-gap: 3px;
  padding: 16px 18px;
  cursor: pointer;
}

.page-products .pd-game__num {
  grid-area: num;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--coral);
}

.page-products .pd-game__name {
  grid-area: name;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  color: var(--ivory);
}

.page-products .pd-game__meta {
  grid-area: meta;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mist);
}

.page-products .pd-game__chev {
  grid-area: chev;
}

.page-products .pd-game__desc {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--mist);
}

.page-products .pd-game__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pd-game__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ivory);
}

.page-products .pd-game__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: translateY(-50%);
}

/* ---------- 图文分栏 ---------- */
.page-products .pd-split {
  gap: 28px;
  align-items: start;
}

.page-products .pd-split__media {
  margin: 0;
  border: 2px solid var(--pd-line-strong);
  background: rgba(7, 11, 24, 0.7);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.page-products .pd-split__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pd-split__media--square img {
  aspect-ratio: 1 / 1;
}

.page-products .pd-split__media--arcade img {
  aspect-ratio: 12 / 7;
}

.page-products .pd-split__media--tall img {
  aspect-ratio: 9 / 11;
}

.page-products .pd-split--arcade .pd-split__text {
  order: 0;
}

/* ---------- 人数矩阵 ---------- */
.page-products .pd-seat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pd-seat {
  display: grid;
  gap: 2px;
  padding: 14px 12px 16px;
  border: 2px solid var(--pd-line-strong);
  background: linear-gradient(180deg, rgba(15, 27, 54, 0.95), rgba(7, 11, 24, 0.95));
  box-shadow: var(--shadow-hard);
}

.page-products .pd-seat__p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.page-products .pd-seat__h {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(22px, 5.4vw, 30px);
  line-height: 1.1;
  color: var(--ivory);
}

.page-products .pd-seat__u {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--mist);
}

.page-products .pd-seat__n {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--mist);
}

/* ---------- 手数条形 ---------- */
.page-products .pd-bars {
  display: grid;
  gap: 9px;
  margin: 26px 0 0;
  padding: 22px 18px;
  border: 2px solid var(--pd-line-strong);
  background: rgba(7, 11, 24, 0.68);
}

.page-products .pd-bar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 10px;
}

.page-products .pd-bar__k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mist);
}

.page-products .pd-bar__t {
  height: 12px;
  border: 1px solid var(--line);
  background: rgba(244, 240, 230, 0.06);
  overflow: hidden;
}

.page-products .pd-bar__t i {
  display: block;
  height: 100%;
}

.page-products .pd-bar:nth-child(odd) .pd-bar__t i {
  background: linear-gradient(90deg, var(--coral), #FF9C7A);
}

.page-products .pd-bar:nth-child(even) .pd-bar__t i {
  background: linear-gradient(90deg, var(--green), #6FEFC4);
}

.page-products .pd-bar:nth-child(1) .pd-bar__t i { width: 100%; }
.page-products .pd-bar:nth-child(2) .pd-bar__t i { width: 84%; }
.page-products .pd-bar:nth-child(3) .pd-bar__t i { width: 74%; }
.page-products .pd-bar:nth-child(4) .pd-bar__t i { width: 68%; }
.page-products .pd-bar:nth-child(5) .pd-bar__t i { width: 63%; }
.page-products .pd-bar:nth-child(6) .pd-bar__t i { width: 58%; }
.page-products .pd-bar:nth-child(7) .pd-bar__t i { width: 53%; }

.page-products .pd-bar__v {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  text-align: right;
  color: var(--ivory);
}

.page-products .pd-wide-media {
  margin: 26px 0 0;
  border: 2px solid var(--pd-line-strong);
  box-shadow: var(--shadow-hard);
}

.page-products .pd-wide-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 4;
  object-fit: cover;
}

/* ---------- 状态面板 ---------- */
.page-products .pd-console {
  padding: 4px 18px;
  border: 2px solid var(--pd-line-strong);
  background: linear-gradient(180deg, rgba(15, 27, 54, 0.95), rgba(7, 11, 24, 0.95));
  box-shadow: var(--shadow-hard);
}

/* ---------- 说明折叠 ---------- */
.page-products .pd-folds {
  margin-top: 30px;
}

.page-products .pd-fold {
  border: 2px solid var(--pd-line-strong);
  background: rgba(15, 27, 54, 0.7);
}

.page-products .pd-fold__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
}

.page-products .pd-fold__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ivory);
}

.page-products .pd-fold .fold__inner .pd-p:last-child {
  margin-bottom: 0;
}

/* ---------- 好友局步骤 ---------- */
.page-products .pd-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pd-step {
  position: relative;
  padding: 0 0 28px 58px;
}

.page-products .pd-step:last-child {
  padding-bottom: 0;
}

.page-products .pd-step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 6px;
  width: 2px;
  background: var(--pd-line-strong);
}

.page-products .pd-step:last-child::before {
  display: none;
}

.page-products .pd-step__n {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(7, 11, 24, 0.9);
  background: var(--cyan);
  color: #06121F;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 3px 3px 0 rgba(69, 224, 255, 0.26);
}

.page-products .pd-step__t {
  margin: 6px 0 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ivory);
}

.page-products .pd-step__d {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.86;
  color: var(--mist);
}

.page-products .pd-step__tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 9px;
  border: 1px solid rgba(245, 185, 66, 0.5);
  background: rgba(245, 185, 66, 0.1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--amber);
}

/* ---------- 回放时间轴 ---------- */
.page-products .pd-timeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.page-products .pd-tl {
  padding: 16px 18px;
  border: 2px solid var(--pd-line-strong);
  border-left: 4px solid var(--green);
  background: rgba(15, 27, 54, 0.72);
}

.page-products .pd-tl--end {
  border-left-color: var(--amber);
}

.page-products .pd-tl__k {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.page-products .pd-tl--end .pd-tl__k {
  color: var(--amber);
}

.page-products .pd-tl__d {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--mist);
}

/* ---------- 尾部引导 ---------- */
.page-products .pd-split--replay {
  margin-top: 30px;
}

.page-products .pd-next {
  padding: 20px 20px 22px;
  border: 2px solid var(--pd-line-strong);
  border-top: 4px solid var(--coral);
  background: rgba(10, 33, 29, 0.62);
  box-shadow: var(--shadow-hard);
}

.page-products .pd-next__t {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ivory);
}

.page-products .pd-next__d {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--mist);
}

.page-products .pd-next__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.page-products .pd-next__link {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-products .pd-next__link:hover {
  color: var(--green);
}

.page-products .pd-next__link:focus-visible,
.page-products .pd-seat:focus-visible,
.page-products .pd-game__head:focus-visible,
.page-products .pd-fold__head:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* ---------- 断点 ---------- */
@media (min-width: 640px) {
  .page-products .pd-seat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .page-products .pd-hero {
    padding: 124px 0 62px;
  }

  .page-products .pd-hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-products .pd-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-products .pd-section {
    padding: 78px 0;
  }
}

@media (min-width: 900px) {
  .page-products .pd-game__head {
    grid-template-columns: 68px 210px minmax(0, 1fr) 22px;
    grid-template-areas: "num name meta chev";
    padding: 20px 24px;
  }

  .page-products .pd-game__num {
    font-size: 32px;
  }

  .page-products .pd-game__name {
    font-size: 21px;
  }
}

@media (min-width: 1080px) {
  .page-products .pd-seat-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .page-products .pd-split--reverse .pd-split__media {
    order: -1;
  }
}

@media (max-width: 479px) {
  .page-products .pd-bar {
    grid-template-columns: 38px minmax(0, 1fr) 52px;
    gap: 8px;
  }

  .page-products .pd-step {
    padding-left: 50px;
  }

  .page-products .pd-step__n {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .page-products .pd-step::before {
    left: 18px;
    top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pd-game,
  .page-products .pd-bar__t i {
    transition: none;
  }

  .page-products .pd-game:hover {
    transform: none;
  }
}
<<<END>>>
