
:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --surface-3: #f8fbff;
  --text: #000000;
  --muted: #000000;
  --line: rgba(18,32,56,.10);
  --accent: #2c65ff;
  --accent-2: #7158ff;
  --shadow: 0 18px 50px rgba(18,32,56,.12);
  --header-bg: rgba(255,255,255,.88);
}
body.theme-support-clean {
  --bg: #fbfaf4;
  --surface: #ffffff;
  --surface-2: #f6f2e8;
  --surface-3: #fffaf0;
  --text: #000000;
  --muted: #000000;
  --line: rgba(29,34,48,.10);
  --accent: #2470ff;
  --accent-2: #ff8e3c;
  --shadow: 0 18px 50px rgba(29,34,48,.10);
  --header-bg: rgba(255,255,248,.88);
}
body.theme-software-blue {
  --bg: #f1f7ff;
  --surface: #ffffff;
  --surface-2: #e9f1ff;
  --surface-3: #f8fbff;
  --text: #000000;
  --muted: #000000;
  --line: rgba(36,70,160,.10);
  --accent: #245cff;
  --accent-2: #7d56ff;
  --shadow: 0 18px 50px rgba(36,70,160,.11);
  --header-bg: rgba(245,249,255,.88);
}
body.theme-dark-poker {
  --bg: #0e1320;
  --surface: #121c30;
  --surface-2: #18243b;
  --surface-3: #1c2b45;
  --text: #ffffff;
  --muted: #ffffff;
  --line: rgba(255,255,255,.10);
  --accent: #e6b84d;
  --accent-2: #9f62ff;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --header-bg: rgba(11,16,28,.82);
}
body.theme-premium-gold {
  --bg: #f8f2e4;
  --surface: #fffdf8;
  --surface-2: #f7ecd3;
  --surface-3: #fff8ea;
  --text: #000000;
  --muted: #000000;
  --line: rgba(118,91,24,.13);
  --accent: #b98a2f;
  --accent-2: #6f4cff;
  --shadow: 0 20px 60px rgba(117,88,26,.15);
  --header-bg: rgba(255,250,236,.88);
}
body.theme-mobile-green {
  --bg: #eef8f0;
  --surface: #ffffff;
  --surface-2: #e3f4e7;
  --surface-3: #f5fcf6;
  --text: #000000;
  --muted: #000000;
  --line: rgba(17,51,28,.10);
  --accent: #2ea865;
  --accent-2: #2a76ff;
  --shadow: 0 18px 50px rgba(17,51,28,.10);
  --header-bg: rgba(245,252,246,.88);
}
body.theme-status-slate {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-2: #ebeff5;
  --surface-3: #f8fafc;
  --text: #000000;
  --muted: #000000;
  --line: rgba(23,32,51,.10);
  --accent: #385dff;
  --accent-2: #16a3b8;
  --shadow: 0 18px 50px rgba(23,32,51,.10);
  --header-bg: rgba(248,250,252,.88);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #fff 58%, var(--surface-3));
  line-height: 1.72;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-download, .header-support, .header-product, .header-brand, .header-status {
  display: grid;
  gap: 12px;
  padding: 14px 0;
}
.header-download { grid-template-columns: auto 1fr auto; align-items: center; }
.header-support { grid-template-columns: auto 1fr auto; align-items: center; }
.header-product { grid-template-columns: auto 1fr auto; align-items: center; }
.header-brand { grid-template-columns: 1fr; justify-items: center; }
.header-status { grid-template-columns: auto 1fr auto; align-items: center; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand strong { display: block; font-size: 15px; line-height: 1.1; }
.brand small { display: block; color: var(--text); font-size: 12px; max-width: 280px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-brand .brand { justify-content: center; }
.header-brand .brand strong { text-align: center; }
.header-brand .brand small { text-align: center; }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  font-size: 13px;
}
.theme-dark-poker .nav a {
  background: rgba(255,255,255,.05);
}
.header-cta, .btn, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 18px;
}
.header-cta, .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 32px rgba(60, 88, 255, .18);
}
.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
}
.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
}
.header-search::before { content: "搜索"; font-weight: 700; color: var(--text); }
.header-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 0;
  color: var(--text);
  font-size: 13px;
}
.breadcrumb span::before { content: "/"; margin: 0 8px; color: var(--text); }
.hero { padding: 26px 0 8px; }
.hero-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero-copy p {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--text);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(44, 101, 255, .10);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}
.hero-actions, .brand-tags, .tag-row, .related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag, .related a, .brand-tags span, .status-pill {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px;
}
.hero-card {
  border-radius: 34px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-center {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
}
.hero-center .hero-actions { justify-content: center; margin-top: 18px; }
.hero-center .tag-row, .hero-center .brand-tags { justify-content: center; }
.hero-image {
  margin-top: 20px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-map {
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #101a31, #243c83 54%, #6b55ff);
}
.hero-map .kicker, .hero-map .hero-copy p, .hero-map .hero-title { color: #fff; }
.hero-map .kicker { background: rgba(255,255,255,.12); }
.hero-map .hero-actions .btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: var(--text);
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.map-node {
  min-height: 88px;
  padding: 15px;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.map-node b { display: block; margin-bottom: 4px; }
.map-node small { color: var(--text); }
.hero-wide {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #111c34, #1b3478 52%, #6957ff);
}
.hero-wide-inner {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: center;
  color: #fff;
}
.hero-wide .kicker, .hero-wide .hero-copy p, .hero-wide .hero-title { color: #fff; }
.hero-wide .kicker { background: rgba(255,255,255,.12); }
.hero-wide .btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: var(--text);
}
.hero-wide .wide-panel {
  border-radius: 28px;
  padding: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.wide-panel img {
  border-radius: 22px;
  width: 100%;
  object-fit: cover;
}
.wide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}
.wide-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-panel, .hero-brand, .hero-doc, .hero-data, .hero-status {
  display: grid;
  gap: 18px;
}
.hero-panel {
  grid-template-columns: 1.04fr .96fr;
  align-items: stretch;
}
.panel-copy, .brand-copy, .doc-copy, .data-copy, .status-copy {
  padding: 24px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.panel-figure, .doc-figure, .data-figure, .status-figure {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.panel-figure img, .doc-figure img, .data-figure img, .status-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.metric-grid, .status-grid, .brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.metric, .status-box, .brand-box {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--surface), var(--surface-3));
  border: 1px solid var(--line);
}
.metric b, .status-box b, .brand-box b {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}
.section { padding: 18px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.section-head h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}
.section-head p {
  margin: 0;
  max-width: 760px;
  color: var(--text);
}
.card, .faq-item, .info, .step, .note-card {
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(18,32,56,.05);
}
.card { padding: 20px; }
.card p { margin: 0 0 10px; color: var(--text); }
.card-grid {
  display: grid;
  gap: 14px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card figure {
  margin: 0 0 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.card figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--text); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.info {
  padding: 16px;
}
.info b { display: block; margin-bottom: 4px; }
.step-list {
  display: grid;
  gap: 12px;
}
.step {
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
}
.step strong { display: block; margin-bottom: 4px; }
.step-list { counter-reset: step; }
.faq {
  display: grid;
  gap: 12px;
}
.faq-item {
  padding: 18px 20px;
}
.faq-item h3 { margin: 0 0 8px; font-size: 18px; }
.faq-item p { margin: 0; color: var(--text); }
.related a {
  background: var(--surface);
}
.cta {
  margin-top: 24px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, #101d38, #22479d 55%, #684cff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}
.cta p { margin: 0; color: var(--text); }
.cta .btn-primary { background: #fff; color: var(--text); box-shadow: none; }
.site-footer {
  margin-top: 28px;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.footer-grid {
  display: grid;
  gap: 14px;
}
.footer-grid.download { grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr)); }
.footer-grid.support { grid-template-columns: 1fr 1fr 1fr; }
.footer-grid.product { grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr)); }
.footer-grid.brand { grid-template-columns: 1.2fr 1fr 1fr; }
.footer-grid.status { grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr)); }
.footer-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.footer-card h3 { margin: 0 0 10px; font-size: 16px; }
.footer-card a {
  display: block;
  margin: 6px 0;
  color: var(--text);
  font-size: 14px;
}
.footer-brand p {
  margin: 0;
  color: var(--text);
}
.footer-bottom {
  margin-top: 18px;
  color: var(--text);
  font-size: 13px;
}
.note { margin-top: 10px; color: var(--text); font-size: 13px; }
@media (max-width: 1024px) {
  .header-download, .header-support, .header-product, .header-status {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .hero-panel, .hero-wide-inner, .footer-grid.download, .footer-grid.product, .footer-grid.brand, .footer-grid.status, .info-grid, .card-grid.two, .card-grid.three, .map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid.support { grid-template-columns: 1fr 1fr; }
  .hero-panel, .hero-wide-inner { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .shell { width: min(100% - 20px, 1180px); }
  .hero-title { font-size: clamp(30px, 10vw, 48px); }
  .hero { padding-top: 20px; }
  .nav { gap: 8px; }
  .nav a { padding: 8px 11px; font-size: 12px; }
  .hero-wide-inner, .panel-copy, .brand-copy, .doc-copy, .data-copy, .status-copy { padding: 18px; }
  .map-grid, .info-grid, .card-grid.two, .card-grid.three, .footer-grid.download, .footer-grid.support, .footer-grid.product, .footer-grid.brand, .footer-grid.status {
    grid-template-columns: 1fr;
  }
  .cta { flex-direction: column; align-items: flex-start; }
}
</style>
/* EVP-TYPO-CONTRAST-FIX v2 light override */
body[data-page="43-evpoker-feature-center"] .hero h1,
body[data-page="43-evpoker-feature-center"] .hero .hero-title,
body[data-page="43-evpoker-feature-center"] .hero-copy h1,
body[data-page="43-evpoker-feature-center"] .hero-center h1,
body[data-page="43-evpoker-feature-center"] .hero-tool h1,
body[data-page="43-evpoker-feature-center"] .hero-apple h1,
body[data-page="43-evpoker-feature-center"] .hero-desktop h1,
body[data-page="43-evpoker-feature-center"] .hero-split h1,
body[data-page="43-evpoker-feature-center"] .center-shell h1,
body[data-page="43-evpoker-feature-center"] .hero h2,
body[data-page="43-evpoker-feature-center"] .section-title h2,
body[data-page="43-evpoker-feature-center"] .card h3,
body[data-page="43-evpoker-feature-center"] .step h3,
body[data-page="43-evpoker-feature-center"] .timeline-row h3,
body[data-page="43-evpoker-feature-center"] .check-row h3,
body[data-page="43-evpoker-feature-center"] .faq-list summary,
body[data-page="43-evpoker-feature-center"] .cta-band h2 {
  color: var(--text);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.15;
  text-shadow:none;
  opacity:1;
}
body[data-page="43-evpoker-feature-center"] .hero,
body[data-page="43-evpoker-feature-center"] .hero-copy,
body[data-page="43-evpoker-feature-center"] .section-title,
body[data-page="43-evpoker-feature-center"] .card,
body[data-page="43-evpoker-feature-center"] .panel,
body[data-page="43-evpoker-feature-center"] .step,
body[data-page="43-evpoker-feature-center"] .timeline-row,
body[data-page="43-evpoker-feature-center"] .check-row,
body[data-page="43-evpoker-feature-center"] .faq-list details,
body[data-page="43-evpoker-feature-center"] .cta-band,
body[data-page="43-evpoker-feature-center"] .compare,
body[data-page="43-evpoker-feature-center"] .floating-note,
body[data-page="43-evpoker-feature-center"] .trust-row span,
body[data-page="43-evpoker-feature-center"] .pill {
  color: var(--text);
  opacity:1;
  text-shadow:none;
}
body[data-page="43-evpoker-feature-center"] .hero p,
body[data-page="43-evpoker-feature-center"] .hero-copy p,
body[data-page="43-evpoker-feature-center"] .section-title p,
body[data-page="43-evpoker-feature-center"] .card p,
body[data-page="43-evpoker-feature-center"] .step p,
body[data-page="43-evpoker-feature-center"] .timeline-row p,
body[data-page="43-evpoker-feature-center"] .check-row p,
body[data-page="43-evpoker-feature-center"] .faq-list p,
body[data-page="43-evpoker-feature-center"] .cta-band p,
body[data-page="43-evpoker-feature-center"] .compare td,
body[data-page="43-evpoker-feature-center"] .footer-links a {
  color: var(--text);
  opacity:1;
  text-shadow:none;
}
body[data-page="43-evpoker-feature-center"] .hero .trust-row span,
body[data-page="43-evpoker-feature-center"] .pill {
  color: var(--text);
  background:rgba(255,255,255,.86);
  opacity:1;
}
body[data-page="43-evpoker-feature-center"] .btn,
body[data-page="43-evpoker-feature-center"] .header-cta {
  font-weight:700;
  line-height:1;
  text-shadow:none;
  opacity:1;
}
body[data-page="43-evpoker-feature-center"] .btn-primary,
body[data-page="43-evpoker-feature-center"] .header-cta {
  color:#ffffff;
}
body[data-page="43-evpoker-feature-center"] .btn-secondary {
  color: var(--text);
}
body[data-page="43-evpoker-feature-center"] .menu-btn span { opacity:1; }
body[data-page="43-evpoker-feature-center"] .card,
body[data-page="43-evpoker-feature-center"] .faq-list details,
body[data-page="43-evpoker-feature-center"] .timeline-row,
body[data-page="43-evpoker-feature-center"] .check-row,
body[data-page="43-evpoker-feature-center"] .panel {
  color: var(--text);
}