.page-products {
  --page-card: rgba(11, 61, 46, 0.62);
  --page-card-strong: rgba(11, 61, 46, 0.88);
  --page-line: rgba(199, 208, 204, 0.16);
  --page-line-strong: rgba(199, 208, 204, 0.34);
  --page-glow: rgba(180, 74, 255, 0.2);
  --page-hot-glow: rgba(255, 107, 43, 0.2);
  --page-lime-glow: rgba(198, 244, 58, 0.18);
  --page-grad-ink: linear-gradient(135deg, #0b3d2e 0%, #071512 100%);
  --page-grad-hot: linear-gradient(135deg, #ff6b2b 0%, #f2551f 100%);
  overflow-x: clip;
}

.page-products h1,
.page-products h2,
.page-products h3,
.page-products h4 {
  font-family: var(--font-display);
  color: var(--color-moon);
  line-height: 1.12;
}

.page-products h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
}

.page-products h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.page-products p {
  margin: 0.5rem 0 0;
  color: rgba(242, 245, 243, 0.72);
  font-size: 0.94rem;
  line-height: 1.7;
}

.page-products a {
  color: inherit;
  text-decoration: none;
}

.page-products .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--color-silver);
}

.page-products .breadcrumbs a {
  color: rgba(199, 208, 204, 0.66);
  transition: color var(--duration-fast) var(--ease-out);
}

.page-products .breadcrumbs a:hover {
  color: var(--color-orange);
}

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

.page-products .media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--page-line-strong);
  background: var(--page-grad-ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
  isolation: isolate;
}

.page-products .media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(199, 208, 204, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 208, 204, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-products .media-frame::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  z-index: 2;
  width: 70%;
  height: 180%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(242, 245, 243, 0.12) 48%, transparent 52%);
  transform: rotate(10deg);
}

.page-products .media-frame img {
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.page-products .media-frame__index {
  position: absolute;
  z-index: 3;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-silver);
  background: rgba(7, 21, 18, 0.78);
  border: 1px solid var(--page-line-strong);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.page-products .media-frame figcaption {
  position: relative;
  z-index: 3;
  margin-top: -2.4rem;
  padding: 0.8rem 1rem 0.9rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(242, 245, 243, 0.86);
  background: linear-gradient(180deg, transparent 0%, rgba(7, 21, 18, 0.88) 40%);
}

.page-products .media-frame--16x10 img {
  aspect-ratio: 86 / 52;
}

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

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.35rem;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.page-products .btn--hot {
  background: var(--page-grad-hot);
  color: var(--color-night);
  box-shadow: 0 6px 24px rgba(255, 107, 43, 0.28);
}

.page-products .btn--hot:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 43, 0.4);
}

.page-products .btn--ghost {
  border: 1px solid var(--page-line-strong);
  background: rgba(7, 21, 18, 0.4);
  color: var(--color-moon);
}

.page-products .btn--ghost:hover {
  border-color: rgba(180, 74, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(180, 74, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* 顶部章节索引 */
.page-products-index {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background: rgba(7, 21, 18, 0.82);
  border-bottom: 1px solid var(--page-line);
  backdrop-filter: blur(10px);
}

.page-products-index__inner {
  display: flex;
  gap: 0.2rem;
  overflow-x: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.page-products-index__inner::-webkit-scrollbar {
  display: none;
}

.page-products-index__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(199, 208, 204, 0.76);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.page-products-index__item i {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-style: normal;
  color: var(--color-silver);
}

.page-products-index__item:hover {
  color: var(--color-moon);
  border-color: var(--page-line-strong);
}

.page-products-index__item.is-active {
  color: var(--color-orange);
  border-color: rgba(255, 107, 43, 0.4);
  background: rgba(255, 107, 43, 0.08);
}

/* Hero */
.page-products-hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem) 0 0;
}

.page-products-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 auto auto 0;
  width: 44vw;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.64), rgba(7, 21, 18, 0));
  pointer-events: none;
}

.page-products-hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-products-hero__copy {
  position: relative;
  z-index: 2;
}

.page-products-hero__kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.page-products-hero__kicker-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--color-silver);
}

.page-products-hero .tag--hot {
  color: var(--color-night);
  background: var(--page-grad-hot);
  font-weight: 700;
}

.page-products-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 1.15rem;
  letter-spacing: -0.01em;
}

.page-products-hero h1 .page-products-hero__subline {
  display: block;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-silver);
}

.page-products-hero__lead {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(242, 245, 243, 0.78);
}

.page-products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-products-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.8rem 0 0;
  padding: 0;
  max-width: 30rem;
}

.page-products-hero__stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--page-line);
  border-radius: var(--radius-sm);
  background: rgba(11, 61, 46, 0.34);
}

.page-products-hero__stats dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(199, 208, 204, 0.72);
}

.page-products-hero__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-moon);
}

.page-products-hero__window {
  position: relative;
  z-index: 2;
}

.page-products-window {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  border: 1px solid var(--page-line-strong);
  border-radius: calc(var(--radius-md) + 4px);
  background: linear-gradient(160deg, #0c2a22 0%, #050f0d 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(180, 74, 255, 0.08);
  overflow: hidden;
}

.page-products-window__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-bottom: 1px solid var(--page-line);
  background: rgba(7, 21, 18, 0.7);
}

.page-products-window__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(199, 208, 204, 0.25);
}

.page-products-window__bar i.is-close {
  background: #ff5f56;
}

.page-products-window__bar i.is-min {
  background: #ffbd2e;
}

.page-products-window__bar i.is-max {
  background: #27c93f;
}

.page-products-window__url {
  margin-left: 0.6rem;
  flex: 1;
  min-width: 0;
  padding: 0.28rem 0.75rem;
  border-radius: 99px;
  background: rgba(199, 208, 204, 0.09);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(199, 208, 204, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-products-window__screen {
  padding: 1rem;
}

.page-products-window__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.page-products-window__nav b {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--color-moon);
  text-shadow: 0 0 14px rgba(180, 74, 255, 0.4);
}

.page-products-window__menu {
  display: flex;
  gap: 0.55rem;
}

.page-products-window__menu i {
  width: 0.85rem;
  height: 2px;
  background: rgba(199, 208, 204, 0.55);
}

.page-products-window__live {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--page-line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(11, 61, 46, 0.66) 0%, rgba(7, 21, 18, 0.92) 100%);
  overflow: hidden;
}

.page-products-window__live::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--page-grad-hot);
}

.page-products-window__liveinfo {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-products-window__live-dot {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--color-lime);
}

.page-products-window__live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 10px rgba(198, 244, 58, 0.8);
}

.page-products-window__liveinfo em {
  font-style: normal;
  font-size: 0.68rem;
  color: rgba(199, 208, 204, 0.7);
}

.page-products-window__liveinfo strong {
  font-size: 0.85rem;
  color: var(--color-moon);
}

.page-products-window__score {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-family: var(--font-display);
}

.page-products-window__score b {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-orange);
}

.page-products-window__score i {
  font-style: normal;
  font-size: 1.1rem;
  color: rgba(199, 208, 204, 0.6);
}

.page-products-window__tabs {
  display: flex;
  gap: 0.35rem;
  margin: 0.8rem 0;
}

.page-products-window__tabs i {
  flex: 1;
  text-align: center;
  font-style: normal;
  font-size: 0.7rem;
  padding: 0.4rem 0.2rem;
  border-radius: var(--radius-sm);
  color: rgba(199, 208, 204, 0.62);
  background: rgba(199, 208, 204, 0.06);
  border: 1px solid transparent;
}

.page-products-window__tabs i.is-active {
  color: var(--color-orange);
  border-color: rgba(255, 107, 43, 0.32);
  background: rgba(255, 107, 43, 0.08);
}

.page-products-window__rows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-products-window__rows span {
  height: 22px;
  border-radius: 4px;
  background: rgba(199, 208, 204, 0.09);
  display: block;
}

.page-products-window__rows span.is-hot {
  background: linear-gradient(90deg, rgba(255, 107, 43, 0.34) 0%, rgba(199, 208, 204, 0.08) 100%);
}

.page-products-window__footer {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--page-line);
}

.page-products-window__footer span {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: rgba(199, 208, 204, 0.56);
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--page-line);
  border-radius: 3px;
}

.page-products-window__footer span.is-focus {
  color: var(--color-lime);
  border-color: rgba(198, 244, 58, 0.36);
}

/* 区块标题 */
.page-products-section-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.page-products-section-head--right {
  flex-direction: row-reverse;
  text-align: right;
}

.page-products-section-head--right .page-products-section-head__copy p {
  margin-left: auto;
}

.page-products-section-head__num {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(199, 208, 204, 0.42);
}

.page-products-section-head__copy {
  max-width: 40rem;
}

.page-products-section-head__copy p {
  margin-top: 0.55rem;
  max-width: 34rem;
}

/* 功能总览 */
.page-products-overview {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
}

.page-products-overview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 208, 204, 0.24) 0%, transparent 70%);
}

.page-products-overview__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-products-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-products-feature {
  position: relative;
  display: block;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--page-line);
  border-radius: var(--radius-md);
  background: var(--page-card);
  transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
  clip-path: polygon(0 0, calc(100% - 0.85rem) 0, 100% 0.85rem, 100% 100%, 0.85rem 100%, 0 calc(100% - 0.85rem));
}

.page-products-feature::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.85rem;
  height: 0.85rem;
  background: linear-gradient(225deg, rgba(180, 74, 255, 0.72) 50%, transparent 50%);
}

.page-products-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 74, 255, 0.45);
  background: var(--page-card-strong);
}

.page-products-feature__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin-bottom: 0.55rem;
  border: 1px solid rgba(255, 107, 43, 0.24);
  border-radius: 3px;
  padding: 0.12rem 0.4rem;
}

.page-products-feature p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.page-products-feature__arrow {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-silver);
  transition: color var(--duration-fast) var(--ease-out);
}

.page-products-feature:hover .page-products-feature__arrow {
  color: var(--color-orange);
}

.page-products-feature--cta {
  border-color: rgba(255, 107, 43, 0.28);
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.14) 0%, rgba(11, 61, 46, 0.6) 70%);
}

.page-products-feature--cta h3 {
  font-size: 1.3rem;
}

.page-products-feature--cta a {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--color-orange);
}

.page-products-overview__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-products-overview__badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(198, 244, 58, 0.2);
  border-radius: var(--radius-md);
  background: rgba(198, 244, 58, 0.07);
}

.page-products-overview__badge-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 16px rgba(198, 244, 58, 0.72);
  animation: page-products-pulse 2s ease-in-out infinite;
}

@keyframes page-products-pulse {
  0%,
  100% {
    box-shadow: 0 0 6px rgba(198, 244, 58, 0.55);
  }

  50% {
    box-shadow: 0 0 18px rgba(198, 244, 58, 0.9);
  }
}

.page-products-overview__badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-lime);
  letter-spacing: 0.04em;
}

.page-products-overview__badge em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(242, 245, 243, 0.68);
}

/* 赛程中心 */
.page-products-schedule {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-products-schedule::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10% 0 10% -20%;
  width: 70%;
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
  background: linear-gradient(135deg, rgba(11, 61, 46, 0.34), transparent 70%);
  pointer-events: none;
}

.page-products-schedule__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.page-products-league-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.page-products-league-tabs button {
  appearance: none;
  border: 1px solid var(--page-line);
  background: rgba(7, 21, 18, 0.45);
  color: rgba(199, 208, 204, 0.78);
  font-size: 0.82rem;
  padding: 0.42rem 0.9rem;
  border-radius: 99px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.page-products-league-tabs button.is-active {
  border-color: rgba(255, 107, 43, 0.48);
  color: var(--color-orange);
  background: rgba(255, 107, 43, 0.09);
}

.page-products-league-tabs button:hover {
  border-color: rgba(199, 208, 204, 0.4);
}

.page-products-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-left: 0.8rem;
}

.page-products-timeline__axis {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.65rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 107, 43, 0.4) 0%, rgba(199, 208, 204, 0.14) 80%);
}

.page-products-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--page-line);
  border-radius: var(--radius-md);
  background: rgba(11, 61, 46, 0.36);
  transition: background var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.page-products-timeline__item::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 1.15rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-silver);
  box-shadow: 0 0 0 3px rgba(199, 208, 204, 0.14);
}

.page-products-timeline__item:hover,
.page-products-timeline__item:focus-within {
  background: rgba(11, 61, 46, 0.7);
  border-color: rgba(180, 74, 255, 0.35);
  transform: translateX(4px);
}

.page-products-timeline__item:hover::before {
  background: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(180, 74, 255, 0.3), 0 0 16px rgba(180, 74, 255, 0.65);
}

.page-products-timeline__time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-silver);
  padding-top: 0.25rem;
}

.page-products-timeline__match {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.page-products-timeline__league {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: rgba(199, 208, 204, 0.62);
}

.page-products-timeline__teams {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-moon);
}

.page-products-timeline__teams b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-orange);
  letter-spacing: 0.04em;
}

.page-products-timeline__status {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.16rem 0.5rem;
  border-radius: 2px;
  color: rgba(199, 208, 204, 0.7);
  border: 1px solid var(--page-line);
}

.page-products-timeline__status.is-focus {
  color: var(--color-purple);
  border-color: rgba(180, 74, 255, 0.4);
}

.page-products-timeline__status.is-live {
  color: var(--color-lime);
  border-color: rgba(198, 244, 58, 0.36);
}

.page-products-timeline__tip {
  grid-column: 2;
  margin-top: 0.25rem;
  max-width: 26rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(199, 208, 204, 0.74);
}

.page-products-schedule__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-products-schedule__note {
  padding: 1rem 1.2rem;
  border-left: 2px solid rgba(255, 107, 43, 0.65);
  background: rgba(11, 61, 46, 0.4);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-products-schedule__note strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-moon);
}

/* 球队页 */
.page-products-team {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-products-team::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10% -20% 10% 0;
  width: 70%;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  background: linear-gradient(135deg, rgba(180, 74, 255, 0.07), transparent 70%);
  pointer-events: none;
}

.page-products-team__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.page-products-team__demo {
  order: 2;
}

.page-products-teamcard {
  max-width: 30rem;
  border: 1px solid var(--page-line-strong);
  border-radius: calc(var(--radius-md) + 2px);
  background: linear-gradient(150deg, rgba(11, 61, 46, 0.72), rgba(7, 21, 18, 0.9));
  overflow: hidden;
  box-shadow: var(--shadow-raise);
}

.page-products-teamcard__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--page-line);
}

.page-products-teamcard__crest {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 107, 43, 0.55);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-orange);
  background: rgba(255, 107, 43, 0.12);
  text-shadow: 0 0 12px rgba(255, 107, 43, 0.6);
}

.page-products-teamcard__head p {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
}

.page-products-teamcard__tag {
  margin-left: auto;
}

.page-products-teamcard__next {
  padding: 1.05rem 1.15rem 0.9rem;
}

.page-products-teamcard__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: rgba(199, 208, 204, 0.64);
  margin-bottom: 0.45rem;
}

.page-products-teamcard__next strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-moon);
}

.page-products-teamcard__next strong i {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-silver);
  margin: 0 0.3rem;
}

.page-products-teamcard__next em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(199, 208, 204, 0.64);
  margin-top: 0.3rem;
}

.page-products-teamcard__form {
  padding: 0.9rem 1.15rem 1.15rem;
  border-top: 1px solid var(--page-line);
}

.page-products-teamcard__form ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0.2rem 0 0.5rem;
  padding: 0;
}

.page-products-teamcard__form li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.page-products-teamcard__form li i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  padding: 0.24rem 0.42rem;
  border-radius: 3px;
  color: var(--color-night);
  font-weight: 700;
}

.page-products-teamcard__form li i.is-win {
  background: var(--color-lime);
}

.page-products-teamcard__form li i.is-draw {
  background: var(--color-silver);
}

.page-products-teamcard__form li i.is-loss {
  background: var(--color-orange);
}

.page-products-teamcard__form li b {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--color-moon);
}

.page-products-teamcard__form p {
  font-size: 0.78rem;
  margin: 0.3rem 0 0;
}

.page-products-team__hint {
  margin-top: 0.9rem;
  max-width: 32rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(199, 208, 204, 0.66);
}

.page-products-team__hint kbd {
  display: inline-block;
  min-width: 1.5rem;
  text-align: center;
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--page-line-strong);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(199, 208, 204, 0.08);
}

.page-products-team__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  order: 1;
}

.page-products-team__note {
  padding: 1rem 1.2rem;
  border-left: 2px solid rgba(180, 74, 255, 0.65);
  background: rgba(11, 61, 46, 0.4);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-products-team__note strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-moon);
}

/* 集锦 */
.page-products-highlights {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-products-highlights::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 320px;
  background: radial-gradient(600px 200px at 80% 0%, rgba(180, 74, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.page-products-highlights__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.page-products-highlights__media {
  display: flex;
  align-items: flex-start;
}

.page-products-highlights__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.page-products-highlights__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--page-line);
  border-radius: var(--radius-md);
  background: rgba(11, 61, 46, 0.38);
  transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.page-products-highlights__item:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 74, 255, 0.4);
}

.page-products-highlights__item .tag {
  grid-row: span 2;
  align-self: start;
  margin-top: 0.1rem;
  font-size: 0.7rem;
}

.page-products-highlights__item h3 {
  font-size: 1.05rem;
}

.page-products-highlights__item p {
  font-size: 0.82rem;
  line-height: 1.6;
}

/* 直播导航 */
.page-products-live {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-products-live::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  width: 15%;
  background: linear-gradient(180deg, rgba(255, 107, 43, 0.08), transparent);
  pointer-events: none;
}

.page-products-live__demo {
  position: relative;
  z-index: 1;
  border: 1px solid var(--page-line-strong);
  border-radius: calc(var(--radius-md) + 2px);
  overflow: hidden;
  background: linear-gradient(150deg, rgba(11, 61, 46, 0.6), rgba(7, 21, 18, 0.9));
}

.page-products-live-strip {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--page-line);
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 74, 255, 0.5) rgba(199, 208, 204, 0.08);
}

.page-products-live-strip__item {
  flex: 0 0 auto;
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--page-line);
  border-radius: 99px;
  background: rgba(7, 21, 18, 0.5);
  color: rgba(199, 208, 204, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.page-products-live-strip__item span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--color-silver);
}

.page-products-live-strip__item.is-active {
  border-color: rgba(180, 74, 255, 0.5);
  background: rgba(180, 74, 255, 0.1);
  color: var(--color-moon);
}

.page-products-live-strip__item.is-active span {
  color: var(--color-purple);
}

.page-products-live-strip__item:hover {
  border-color: rgba(199, 208, 204, 0.42);
}

.page-products-live-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1rem;
}

.page-products-live-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.page-products-live-panel__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: rgba(199, 208, 204, 0.64);
}

.page-products-live-panel__head strong {
  font-size: 1.3rem;
  color: var(--color-moon);
}

.page-products-live-panel__state {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: rgba(242, 245, 243, 0.7);
}

.page-products-live-panel__state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 12px rgba(198, 244, 58, 0.8);
}

.page-products-live-panel__matches {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.page-products-live-match {
  padding: 1rem;
  border: 1px solid var(--page-line);
  border-radius: var(--radius-md);
  background: rgba(7, 21, 18, 0.4);
}

.page-products-live-match span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: rgba(199, 208, 204, 0.6);
}

.page-products-live-match strong {
  display: block;
  font-size: 1rem;
  color: var(--color-moon);
  margin: 0.2rem 0;
}

.page-products-live-match em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(199, 208, 204, 0.58);
}

.page-products-live__note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.1rem 1.25rem;
  border-left: 2px solid rgba(180, 74, 255, 0.6);
  background: rgba(11, 61, 46, 0.34);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-products-live__note p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.88rem;
}

/* 快捷键 */
.page-products-shortcuts {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-products-shortcuts::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 12% 0 12% -15%;
  width: 60%;
  clip-path: polygon(0 0, 90% 0, 0 100%);
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.06), transparent 70%);
  pointer-events: none;
}

.page-products-shortcuts__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.page-products-shortcuts__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-products-shortcuts__shelf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--page-line);
  border-radius: var(--radius-md);
  background: rgba(11, 61, 46, 0.44);
}

.page-products-shortcuts__shelf-title {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(199, 208, 204, 0.64);
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--page-line);
  border-radius: 3px;
}

.page-products-shortcuts__shelf button {
  appearance: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--page-line);
  border-radius: 99px;
  background: rgba(7, 21, 18, 0.45);
  color: var(--color-moon);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.page-products-shortcuts__shelf button i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(199, 208, 204, 0.58);
}

.page-products-shortcuts__shelf button.is-active {
  border-color: rgba(255, 107, 43, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 107, 43, 0.18), 0 0 16px rgba(255, 107, 43, 0.12);
}

.page-products-shortcuts__shelf button:hover {
  border-color: rgba(199, 208, 204, 0.4);
}

.page-products-shortcuts__keys {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.page-products-keycap {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--page-line);
  border-radius: var(--radius-md);
  background: rgba(11, 61, 46, 0.36);
  transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.page-products-keycap:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 43, 0.36);
}

.page-products-keycap__key {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-width: 2.6rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.page-products-keycap__key kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.42rem 0.55rem;
  border: 1px solid var(--page-line-strong);
  border-bottom-width: 3px;
  border-radius: 5px;
  background: rgba(199, 208, 204, 0.09);
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.page-products-keycap__key b {
  font-style: normal;
  color: var(--color-silver);
  font-weight: 400;
}

.page-products-keycap h3 {
  font-size: 1rem;
}

.page-products-keycap p {
  font-size: 0.84rem;
}

/* 底部更多 */
.page-products-more {
  padding: clamp(2rem, 5vw, 4rem) 0 5rem;
}

.page-products-more__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--page-line-strong);
  border-radius: calc(var(--radius-md) + 4px);
  background: linear-gradient(135deg, rgba(11, 61, 46, 0.66) 0%, rgba(7, 21, 18, 0.92) 100%);
  box-shadow: var(--shadow-panel);
}

.page-products-more__copy p {
  max-width: 40rem;
  font-size: 0.9rem;
}

.page-products-more__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.page-products-more__links .btn {
  font-size: 0.82rem;
  padding: 0.6rem 1.1rem;
}

@media (min-width: 768px) {
  .page-products-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products-overview__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .page-products-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products-schedule__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .page-products-team__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .page-products-team__demo {
    order: 1;
  }

  .page-products-team__media {
    order: 2;
  }

  .page-products-highlights__layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .page-products-highlights__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products-live-panel__matches {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products-shortcuts__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-products-more__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .page-products-hero {
    padding-top: clamp(2.5rem, 6vw, 5rem);
  }

  .page-products-hero__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 3.5rem;
  }

  .page-products-hero__copy {
    padding-left: 1.5rem;
  }

  .page-products-hero__window {
    transform: rotate(0.6deg);
  }

  .page-products-timeline {
    padding-left: 1.2rem;
    gap: 0.9rem;
  }

  .page-products-timeline__axis {
    left: 1.05rem;
  }

  .page-products-timeline__item::before {
    left: -1.3rem;
  }

  .page-products-live-panel {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}
