.page-products {
  --apps-border: rgba(155, 89, 182, 0.24);
  --apps-border-hot: rgba(255, 45, 120, 0.45);
  --apps-panel: linear-gradient(145deg, #140823, #1b0c33);
  --apps-bar: linear-gradient(90deg, var(--neon-pink), var(--electric), var(--lemon));
  background:
    radial-gradient(900px 480px at 86% 6%, rgba(108, 92, 231, 0.20), transparent 62%),
    radial-gradient(780px 460px at 6% 72%, rgba(255, 45, 120, 0.10), transparent 60%),
    var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

/* ---------- 标题区 ---------- */
.apps-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 26px;
}
.apps-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
}
.apps-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 10, 0.92) 22%, rgba(10, 10, 10, 0.55) 60%, rgba(10, 10, 10, 0.75));
}
.apps-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apps-hero .container {
  position: relative;
  z-index: 1;
}
.apps-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(249, 202, 36, 0.35);
  border-radius: 2px;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lemon);
  transform: skewX(-6deg);
}
.kicker-glyph {
  display: inline-block;
  transform: skewX(6deg);
  font-size: 15px;
  line-height: 1;
}
.apps-hero h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 18ch;
}
.h1-accent {
  display: block;
  position: relative;
  width: fit-content;
  margin-top: 4px;
  font-style: normal;
  color: var(--lemon);
}
.h1-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 64%;
  height: 7px;
  background: var(--neon-pink);
  transform: skewX(-20deg);
  border-radius: 2px;
}
.apps-lead {
  max-width: 62ch;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.82);
}
.lead-key {
  color: var(--lemon);
  font-weight: 700;
  background: linear-gradient(transparent 68%, rgba(255, 45, 120, 0.28) 68%);
}
.apps-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 660px;
  margin-top: 26px;
  background: rgba(155, 89, 182, 0.18);
  border: 1px solid rgba(155, 89, 182, 0.18);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: rgba(10, 10, 10, 0.78);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.2;
  color: var(--lemon);
}
.stat-label {
  font-size: 12px;
  color: var(--grey-purple);
}
.comic-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 660px;
  margin-top: 30px;
}
.comic-line {
  flex: 1;
  height: 2px;
  background: rgba(155, 89, 182, 0.4);
}
.comic-burst {
  font-size: 20px;
  line-height: 1;
  color: var(--lemon);
}

/* ---------- 控制台总览 ---------- */
.apps-console {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 64px;
}
.console-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.console-rail::-webkit-scrollbar {
  display: none;
}
.rail-label {
  display: none;
}
.console-nav {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--apps-border);
  background: rgba(26, 10, 46, 0.6);
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.console-nav:hover,
.console-nav:focus-visible {
  border-color: var(--neon-pink);
  background: rgba(255, 45, 120, 0.12);
}
.console-nav.is-active {
  border-color: var(--lemon);
  box-shadow: 0 0 0 3px rgba(249, 202, 36, 0.15);
}
.console-nav-num {
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--grey-purple);
}
.console-nav-status {
  display: none;
  margin-left: auto;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--lemon);
}
.console-status {
  position: relative;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--apps-border);
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.82), rgba(10, 10, 10, 0.72));
  overflow: hidden;
}
.console-status::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 3px;
  background: var(--neon-pink);
}
.console-status-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--grey-purple);
}
.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--lemon);
  box-shadow: 0 0 10px rgba(249, 202, 36, 0.8);
}
.status-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status-time {
  margin-left: auto;
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--grey-purple);
}
.console-health {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 16px;
}
.health-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.34);
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.health-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--lemon);
  box-shadow: 0 0 8px rgba(249, 202, 36, 0.6);
}
.console-status-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 245, 240, 0.08);
  overflow: hidden;
}
.status-bar-fill {
  display: block;
  height: 100%;
  background: var(--apps-bar);
}
.console-status-foot {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-purple);
}

/* ---------- 通用章节 ---------- */
.apps-section {
  padding: 60px 0;
  position: relative;
}
.page-products .section-head {
  margin-bottom: 30px;
  position: relative;
}
.page-products .section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 45, 120, 0.34);
  border-radius: 2px;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--neon-pink);
  transform: skewX(-7deg);
}
.page-products .section-title {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.page-products .section-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--neon-pink);
  transform: skewX(-24deg);
}
.page-products .section-desc {
  max-width: 64ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-purple);
}

/* ---------- 01 播放器 ---------- */
.player-section {
  background: linear-gradient(180deg, rgba(26, 10, 46, 0.1), rgba(26, 10, 46, 0.55));
}
.player-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.player-stage-left {
  width: 100%;
}
.player-screen {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #070210;
  border: 1px solid var(--apps-border);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
  transform: rotate(-0.5deg);
}
.player-screen img {
  display: block;
  width: 100%;
  height: auto;
}
.player-screen-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}
.player-live {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red);
}
.player-title {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.92;
}
.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}
.pc-btn {
  font-size: 14px;
  line-height: 1;
  color: var(--cream);
  opacity: 0.88;
  flex: 0 0 auto;
}
.pc-skip,
.pc-volume {
  display: none;
}
.pc-progress {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(245, 245, 240, 0.2);
  overflow: hidden;
}
.pc-progress-fill {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--lemon);
  border-radius: 999px;
}
.pc-time {
  flex: 0 0 auto;
  font-family: var(--font-accent);
  font-size: 11px;
  color: rgba(245, 245, 240, 0.7);
}
.pc-quality {
  flex: 0 0 auto;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--lemon);
  color: #000;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: rgba(10, 10, 10, 0.4);
  border-left: 3px solid var(--neon-pink);
  border-radius: 0 10px 10px 0;
  transition: border-color var(--ease), transform var(--ease);
}
.feature-list li:hover {
  border-left-color: var(--lemon);
  transform: translateX(4px);
}
.feature-sn {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: var(--lemon);
  color: var(--ink);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 15px;
  transform: skewX(-7deg);
}
.feature-list h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--cream);
}
.feature-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-purple);
}

/* ---------- 02 下载引擎 ---------- */
.download-section {
  padding: 64px 0;
}
.download-section::before {
  content: "";
  position: absolute;
  inset: 28px -60px;
  background: linear-gradient(100deg, rgba(26, 10, 46, 0.4), rgba(26, 10, 46, 0.82));
  border-top: 1px solid rgba(155, 89, 182, 0.2);
  border-bottom: 1px solid rgba(255, 45, 120, 0.16);
  transform: skewY(-1.6deg);
  pointer-events: none;
}
.download-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.download-copy {
  order: 2;
}
.engine-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.engine-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.34);
  transition: border-color var(--ease), transform var(--ease);
}
.engine-list li:hover {
  border-color: rgba(255, 45, 120, 0.5);
  transform: translateX(3px);
}
.engine-check {
  color: var(--lemon);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
.engine-title {
  display: block;
  font-size: 15px;
  color: var(--cream);
}
.engine-desc {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--grey-purple);
}
.download-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--lemon);
  background: rgba(249, 202, 36, 0.06);
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey-purple);
}
.download-visual {
  position: relative;
  order: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(155, 89, 182, 0.28);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.48);
  transform: rotate(0.6deg);
}
.download-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.55) 88%);
  pointer-events: none;
}
.download-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.download-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(249, 202, 36, 0.2);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(6px);
}
.dl-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 4px 6px;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--cream);
}
.dl-row.is-active {
  border: 1px dashed rgba(249, 202, 36, 0.6);
  background: rgba(249, 202, 36, 0.12);
  color: var(--lemon);
}
.dl-tag,
.dl-size {
  font-size: 11px;
  color: var(--grey-purple);
}

/* ---------- 03 进度续接 ---------- */
.sync-section {
  padding: 68px 0 56px;
}
.sync-visual {
  position: relative;
  margin-top: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.3);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}
.sync-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(249, 202, 36, 0.14) 45%, rgba(255, 45, 120, 0.08) 50%, transparent 65%);
  transform: translateX(-35%);
  transition: transform 300ms ease;
  pointer-events: none;
}
.sync-section:hover .sync-visual::after,
.sync-section:focus-within .sync-visual::after {
  transform: translateX(42%);
}
.sync-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.sync-devices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.sync-device {
  padding: 10px 8px;
  border: 1px solid rgba(108, 92, 231, 0.28);
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.3);
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--cream);
}
.sync-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
.sync-step {
  padding: 20px;
  border: 1px solid rgba(108, 92, 231, 0.24);
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.26);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.sync-step:hover {
  border-color: rgba(108, 92, 231, 0.55);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.16);
}
.sync-step-num {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--electric);
}
.sync-step h3 {
  margin: 10px 0 6px;
  font-size: 17px;
  color: var(--cream);
}
.sync-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-purple);
}

/* ---------- 04 收藏夹迁移 ---------- */
.migration-section {
  padding: 62px 0 72px;
}
.migration-section::before {
  content: "";
  position: absolute;
  inset: 24px -60px 8px;
  background: linear-gradient(260deg, rgba(26, 10, 46, 0.34), rgba(155, 89, 182, 0.16));
  border-top: 1px solid rgba(155, 89, 182, 0.16);
  border-bottom: 1px solid rgba(155, 89, 182, 0.14);
  transform: skewY(1.2deg);
  pointer-events: none;
}
.migration-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.migration-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--apps-border);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
  transform: rotate(-0.6deg);
}
.migration-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.migration-steps {
  list-style: none;
  margin: 22px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.migration-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(155, 89, 182, 0.18);
  border-left: 3px solid var(--electric);
  border-radius: 0 6px 6px 0;
  background: rgba(10, 10, 10, 0.32);
  font-size: 15px;
  color: var(--cream);
  transition: transform var(--ease), border-color var(--ease);
}
.migration-steps li:hover {
  transform: translateX(4px);
  border-left-color: var(--lemon);
}
.migration-steps li span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 3px;
  background: var(--lemon);
  color: var(--ink);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
}
.migration-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.link-with-arrow {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(249, 202, 36, 0.45);
  color: var(--lemon);
  font-size: 15px;
  text-decoration: none;
  transition: color var(--ease), border-color var(--ease);
}
.link-with-arrow:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* ---------- 底部 CTA ---------- */
.apps-cta {
  padding: 12px 0 72px;
}
.apps-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 28px;
  border-radius: 4px;
  border: 1px dashed rgba(255, 45, 120, 0.4);
  background: linear-gradient(120deg, rgba(255, 45, 120, 0.12), rgba(108, 92, 231, 0.1));
}
.apps-cta-copy h2 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--cream);
}
.apps-cta-copy p {
  margin: 0;
  font-size: 15px;
  color: var(--grey-purple);
}
.apps-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---------- 响应式增强 ---------- */
@media (min-width: 480px) {
  .pc-skip,
  .pc-volume {
    display: block;
  }
  .download-copy {
    order: 1;
  }
  .download-visual {
    order: 2;
  }
}

@media (min-width: 768px) {
  .apps-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .console-health {
    grid-template-columns: repeat(4, 1fr);
  }
  .sync-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-products .section-desc {
    font-size: 17px;
  }
}

@media (min-width: 960px) {
  .apps-hero {
    padding: 46px 0 32px;
  }
  .apps-kicker {
    margin-top: 20px;
  }
  .apps-console {
    grid-template-columns: minmax(230px, 268px) 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
  }
  .console-rail {
    flex-direction: column;
    gap: 10px;
    padding: 12px 18px 12px 0;
    overflow: visible;
    border-right: 1px solid var(--apps-border);
  }
  .rail-label {
    display: block;
    margin-bottom: 4px;
    padding-left: 10px;
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey-purple);
  }
  .console-nav {
    width: 100%;
    border-radius: 2px;
    padding: 13px 12px;
    transform: skewX(-7deg);
  }
  .console-nav > * {
    transform: skewX(7deg);
  }
  .console-nav.is-active {
    transform: skewX(-7deg) translateX(4px);
  }
  .console-nav:hover,
  .console-nav:focus-visible {
    transform: skewX(-7deg) translateX(4px);
    border-color: var(--neon-pink);
  }
  .console-nav-status {
    display: inline;
  }
  .console-status {
    padding: 24px;
  }
  .player-stage {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
  }
  .download-wrap {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 46px;
  }
  .migration-wrap {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
  }
  .apps-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 32px 36px;
  }
}
