:root{
  --bg:#0a1f12;--bg-2:#0d2818;
  --surface:#102e1c;--surface-2:#143a25;
  --line:#1f4a30;--text:#e8efe2;--muted:#7d9485;
  --primary:#aef359;--primary-2:#c7ff7d;--primary-deep:#6fa82e;
  --accent:#f5c12c;
  --radius:14px;--radius-lg:22px;
  --shadow-primary:0 10px 30px -8px #aef35959;
  --shadow-card:0 20px 60px -20px rgba(0,0,0,.6);
  --font-display:'Sora',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);background:var(--bg);color:var(--text);line-height:1.55;overflow-x:hidden;-webkit-font-smoothing:antialiased}
body::before{content:"";position:fixed;inset:0;background:radial-gradient(900px 500px at 80% -10%,rgba(174,243,89,.10),transparent 60%),radial-gradient(700px 500px at -10% 30%,rgba(245,193,44,.07),transparent 65%),radial-gradient(600px 400px at 50% 110%,rgba(111,168,46,.08),transparent 65%);z-index:-2;pointer-events:none}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;border:0;background:none;color:inherit;cursor:pointer}
.container{width:min(1180px,92%);margin-inline:auto}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:700;letter-spacing:-0.01em;line-height:1.15}
h1{font-size:clamp(2rem,5vw,3.6rem)}
h2{font-size:clamp(1.4rem,3.2vw,2.2rem);margin-bottom:.6em}
h3{font-size:1.15rem}
.accent{background:linear-gradient(135deg,var(--primary-2),var(--primary));-webkit-background-clip:text;background-clip:text;color:transparent}
.eyebrow{display:inline-flex;gap:.5rem;align-items:center;font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;color:var(--primary);font-weight:600;padding:.5rem .9rem;border:1px solid #aef35959;border-radius:999px;background:#aef3591a}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.95rem 1.6rem;font-family:var(--font-display);font-weight:600;font-size:.95rem;border-radius:999px;transition:transform .2s ease,box-shadow .2s ease;white-space:nowrap}
.btn-primary{background:linear-gradient(135deg,var(--primary-2) 0%,var(--primary) 50%,var(--primary-deep) 100%);color:#0a0a0a;box-shadow:var(--shadow-primary)}
.btn-primary:hover{transform:translateY(-2px)}
.btn-ghost{border:1px solid var(--line);color:var(--text)}
.btn-ghost:hover{border-color:var(--primary);color:var(--primary)}
.btn-sm{padding:.65rem 1.1rem;font-size:.85rem}

header{position:sticky;top:0;z-index:50;backdrop-filter:blur(18px);background:#0a1f12b8;border-bottom:1px solid rgba(255,255,255,.05)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.logo{display:flex;align-items:center;gap:.6rem;font-family:var(--font-display);font-weight:800;font-size:1.25rem}
.logo-mark{width:36px;height:36px;border-radius:10px;background:linear-gradient(135deg,var(--primary-2),var(--primary-deep));display:grid;place-items:center;color:#0a0a0a;font-weight:800;box-shadow:var(--shadow-primary)}
.logo-mark-img{background:transparent;box-shadow:none;overflow:hidden;padding:0}
.logo-mark-img img{width:100%;height:100%;object-fit:cover;display:block;border-radius:inherit}
.logo span:last-child{color:var(--primary)}
.nav-links{display:none;gap:.3rem;align-items:center}
.nav-links a{padding:.55rem .9rem;font-size:.9rem;color:var(--muted);border-radius:8px;font-weight:500}
.nav-links a:hover,.nav-links a.active{color:var(--primary);background:#aef35914}
.nav-cta{display:flex;gap:.5rem;align-items:center}
.menu-toggle{width:42px;height:42px;display:grid;place-items:center;border:1px solid var(--line);border-radius:10px}
@media(min-width:980px){.nav-links{display:flex}.menu-toggle{display:none}}
.drawer{position:fixed;inset:0;z-index:60;background:#0a1f12f2;backdrop-filter:blur(20px);padding:5rem 1.5rem 2rem;transform:translateY(-100%);transition:transform .35s ease;overflow-y:auto}
.drawer.open{transform:translateY(0)}
.drawer a{display:block;padding:.9rem 0;border-bottom:1px solid var(--line);font-size:1rem}
.drawer-close{position:absolute;top:1rem;right:1rem;width:42px;height:42px;border-radius:10px;border:1px solid var(--line)}

section{padding:4rem 0;position:relative}
.section-head{text-align:center;max-width:760px;margin:0 auto 2.5rem}
.section-head .lead{color:var(--muted);font-size:1.02rem;margin-top:.8rem}

.hero{padding:4rem 0 3rem}
.hero-sub{color:var(--muted);font-size:1.05rem;max-width:60ch;margin:1.2rem 0 2rem}
.hero-ctas{display:flex;flex-wrap:wrap;gap:.8rem}

/* hero 带 logo 时变成左右分栏 */
.hero-with-logo .container{display:grid;gap:2rem;grid-template-columns:1fr}
@media(min-width:920px){
  .hero-with-logo .container{grid-template-columns:1.3fr 1fr;gap:3rem;align-items:center}
}
.hero-logo{
  border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--surface-2),var(--surface));
  box-shadow:var(--shadow-card);
  position:relative;
  aspect-ratio:1/1;
}
.hero-logo img{
  width:100%;height:100%;object-fit:cover;display:block;
}

.trust-row{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem;margin-top:2.5rem}
@media(min-width:600px){.trust-row{grid-template-columns:repeat(4,1fr)}}
.trust-badge{padding:.9rem 1rem;border:1px solid var(--line);border-radius:12px;display:flex;align-items:center;gap:.6rem;background:linear-gradient(180deg,rgba(255,255,255,.03),transparent)}
.trust-badge .icon{font-size:1.3rem}
.trust-badge .txt{font-size:.78rem;color:var(--muted);line-height:1.2}
.trust-badge .txt b{display:block;color:var(--text);font-size:.92rem;margin-bottom:2px}

.card-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:720px){.card-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1000px){.card-grid.cg-3{grid-template-columns:repeat(3,1fr)}}
.card{padding:1.6rem;border-radius:var(--radius-lg);background:linear-gradient(180deg,var(--surface),#102e1c99);border:1px solid var(--line);position:relative;overflow:hidden}
.card h3{font-size:1.1rem;margin-bottom:.7rem;color:var(--primary)}
.card p{color:var(--muted);font-size:.95rem}
.card .ico{width:48px;height:48px;border-radius:12px;background:linear-gradient(135deg,#aef35940,#aef3590d);display:grid;place-items:center;font-size:1.5rem;margin-bottom:1rem}

.section-banner{width:100%;height:260px;object-fit:cover;border-radius:var(--radius-lg);margin-bottom:2.5rem;filter:brightness(.55) saturate(1.2);border:1px solid var(--line);box-shadow:0 30px 80px -30px rgba(0,0,0,.5)}

.compare{overflow-x:auto;margin-top:2rem}
.compare table{width:100%;min-width:600px;border-collapse:collapse}
.compare th,.compare td{padding:1rem;text-align:left;border-bottom:1px solid var(--line);font-size:.92rem}
.compare th{background:#aef35914;color:var(--primary);font-family:var(--font-display);font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:.1em}
.compare td:nth-child(2){color:var(--primary);font-weight:600}

.faq{max-width:780px;margin:0 auto}
.faq-item{border:1px solid var(--line);border-radius:var(--radius);margin-bottom:.7rem;overflow:hidden;background:var(--surface)}
.faq-item summary{list-style:none;padding:1.2rem 1.4rem;font-family:var(--font-display);font-weight:600;font-size:1rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";color:var(--primary);font-size:1.5rem;transition:transform .2s ease}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item .answer{padding:0 1.4rem 1.4rem;color:var(--muted);font-size:.95rem}

.final-cta{text-align:center;padding:4rem 2rem;border-radius:var(--radius-lg);background:radial-gradient(600px 300px at 50% 0%,#aef3592e,transparent 70%),linear-gradient(180deg,var(--surface-2),var(--surface));border:1px solid var(--line);margin:2rem 0}
.final-cta h2{max-width:600px;margin-inline:auto}
.final-cta p{color:var(--muted);margin:1rem auto 2rem;max-width:600px}

footer{background:#0a1f12;padding:4rem 0 2rem;border-top:1px solid var(--line)}
.foot-grid{display:grid;gap:2rem;grid-template-columns:1fr}
@media(min-width:720px){.foot-grid{grid-template-columns:1.5fr 1fr 1fr 1fr}}
.foot-grid h4{color:var(--primary);font-size:.85rem;text-transform:uppercase;letter-spacing:.15em;margin-bottom:1rem;font-family:var(--font-body);font-weight:700}
.foot-grid ul{list-style:none}
.foot-grid li{padding:.3rem 0}
.foot-grid a{color:var(--muted);font-size:.9rem}
.foot-grid a:hover{color:var(--primary)}
.foot-about p{color:var(--muted);font-size:.88rem;margin:1rem 0}
.foot-bottom{margin-top:3rem;padding-top:2rem;border-top:1px solid var(--line);display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;color:var(--muted);font-size:.82rem}
.foot-badges{display:flex;gap:1rem;flex-wrap:wrap}
.foot-badges span{padding:.3rem .7rem;border:1px solid var(--line);border-radius:6px;font-size:.75rem}
.age{margin-top:1.5rem;text-align:center;color:var(--muted);font-size:.78rem;padding:1rem;border:1px dashed var(--line);border-radius:var(--radius)}
.age strong{color:var(--accent)}

.reveal{opacity:0;transform:translateY(20px);transition:opacity .8s ease,transform .8s ease}
.reveal.in{opacity:1;transform:translateY(0)}

/* ============================================================
   HOMEPAGE GAMES TABLE — 所有 layout 共用,SEO 排行表
   ============================================================ */
.games-block{padding:4.5rem 0;position:relative}
.games-block .section-head{max-width:820px;text-align:center;margin:0 auto 2.5rem}
.games-block .section-head h2{font-size:clamp(1.6rem,3.4vw,2.4rem);letter-spacing:-0.015em;line-height:1.2}
.games-block .section-head .lead{font-size:1rem;line-height:1.65;color:var(--muted);margin-top:1rem}
.games-table-wrap{
  max-width:1100px;margin:0 auto;
  border:1px solid var(--line);border-radius:var(--radius-lg);
  background:var(--surface);overflow-x:auto;
  box-shadow:0 4px 24px -12px rgba(0,0,0,.2);
}
.games-table{width:100%;min-width:760px;border-collapse:collapse;font-size:.92rem}
.games-table thead th{
  padding:1rem .9rem;text-align:left;font-family:var(--font-display);
  font-weight:700;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;
  color:var(--text);background:linear-gradient(180deg,#143a25,#102e1c);
  border-bottom:2px solid var(--primary);white-space:nowrap;
}
.games-table thead th.col-rtp-teo{color:#16a34a}
.games-table thead th.col-rtp-real,
.games-table thead th.col-maxwin{color:var(--primary)}
.games-table thead th.col-rtp-real small{display:block;font-size:.65rem;font-weight:500;opacity:.7;text-transform:none;letter-spacing:0;margin-top:.2rem}
.games-table tbody td{
  padding:.95rem .9rem;border-bottom:1px solid var(--line);
  color:var(--text);vertical-align:middle;
}
.games-table tbody tr:nth-child(even){background:#aef35906}
.games-table tbody tr:last-child td{border-bottom:0}
.games-table .g-rank{font-weight:800;white-space:nowrap;font-family:var(--font-display)}
.games-table .g-rank .medal{margin-right:.3rem;font-size:1.1em}
.games-table .g-name{font-weight:700}
.games-table .g-prov{color:var(--muted)}
.games-table .g-rtp-teo{color:#16a34a;font-weight:700;font-family:var(--font-display);white-space:nowrap}
.games-table .g-rtp-real{color:var(--primary);font-weight:700;font-family:var(--font-display);white-space:nowrap}
.games-table .g-maxwin{color:var(--primary);font-weight:600;white-space:nowrap}
.games-table .g-vol{white-space:nowrap}
.vol-badge{
  display:inline-block;padding:.3rem .8rem;border-radius:999px;
  font-size:.78rem;font-weight:700;color:#fff;letter-spacing:.02em;
}
.vol-alta{background:#dc2626}
.vol-media-alta{background:#f59e0b}
.vol-media{background:#3b82f6}
.vol-baixa-media{background:#10b981}
.vol-baixa{background:#16a34a}
.games-footnote{
  max-width:920px;margin:1.8rem auto 0;padding:1.2rem 1.4rem;
  background:#aef35908;border:1px solid #aef35926;
  border-radius:var(--radius);color:var(--muted);font-size:.88rem;line-height:1.65;
  text-align:center;
}
.games-footnote b{color:var(--text)}

/* ============================================================
   HOMEPAGE SEO BLOCK — 共享基础 + classic 风格
   ============================================================ */
.seo-block{padding:4.5rem 0;position:relative}
.seo-block .section-head{max-width:820px}
.seo-block .section-head h2{
  font-size:clamp(1.6rem,3.4vw,2.4rem);letter-spacing:-0.015em;line-height:1.2;
}
.seo-block .section-head .lead{
  font-size:1.02rem;line-height:1.7;color:var(--muted);margin-top:1rem;
}

/* 关键词内链 */
.seo-block a.kw{
  color:var(--primary);font-weight:600;
  border-bottom:1px solid #aef35940;
  transition:border-color .2s ease,color .2s ease;
}
.seo-block a.kw:hover{
  color:var(--primary-2);border-bottom-color:var(--primary);
}

/* ---------- CLASSIC 风格:2 列卡片 ---------- */
.seo-block-classic .seo-grid{
  display:grid;gap:1.2rem;grid-template-columns:1fr;margin-top:1rem;
}
@media(min-width:780px){
  .seo-block-classic .seo-grid{grid-template-columns:repeat(2,1fr);gap:1.4rem}
}
.seo-card{
  padding:1.8rem;border-radius:var(--radius-lg);
  background:linear-gradient(180deg,var(--surface),#102e1c99);
  border:1px solid var(--line);position:relative;overflow:hidden;
  transition:transform .25s ease,border-color .25s ease;
}
.seo-card::before{
  content:"";position:absolute;left:0;top:0;width:3px;height:100%;
  background:linear-gradient(180deg,var(--primary-2),var(--primary));
  opacity:.7;
}
.seo-card:hover{transform:translateY(-2px);border-color:#aef35959}
.seo-card h3{
  font-family:var(--font-display);font-size:1.15rem;font-weight:700;
  color:var(--primary);margin-bottom:.9rem;line-height:1.3;letter-spacing:-0.01em;
}
.seo-card p{color:var(--muted);font-size:.96rem;line-height:1.7}

/* CTA 居中按钮区 */
.seo-cta-wrap{text-align:center;margin-top:2.5rem}

/* ============================================================
   EDITORIAL LAYOUT - 杂志/报刊风
   ============================================================ */

/* Header 左侧装饰条 */
.lay-editorial header {
  border-bottom:1px solid #aef35926;
  background:linear-gradient(180deg,#0a1f12cc,#0a1f1299);
}
.lay-editorial .nav{padding:1.1rem 0;position:relative}
.lay-editorial .nav::before{
  content:"";position:absolute;left:-2rem;top:50%;transform:translateY(-50%);
  width:6px;height:60%;background:linear-gradient(180deg,var(--primary),var(--primary-deep));
  border-radius:0 3px 3px 0;
}
.lay-editorial .logo{letter-spacing:-0.02em;font-size:1.35rem}

/* ---------- HERO: 左右分栏 ---------- */
.lay-editorial .hero{padding:5rem 0 4rem;border-bottom:1px solid var(--line)}
.ed-hero-grid{
  display:grid;gap:3rem;grid-template-columns:1fr;align-items:start;
}
@media(min-width:920px){
  .ed-hero-grid{grid-template-columns:1.4fr 1fr;gap:4rem;align-items:center}
}
.ed-hero-meta{
  display:flex;gap:1.5rem;font-size:.72rem;letter-spacing:.18em;
  text-transform:uppercase;color:var(--muted);margin-bottom:1.5rem;
  padding-bottom:1rem;border-bottom:1px solid var(--line);
}
.ed-hero-meta b{color:var(--primary);font-weight:600}
.lay-editorial h1{
  font-size:clamp(2.2rem,5.5vw,4rem);line-height:1.05;letter-spacing:-0.025em;
}
.ed-hero-lede{
  font-size:1.1rem;line-height:1.6;color:var(--muted);max-width:54ch;
  margin:1.6rem 0 2.2rem;
  padding-left:1.2rem;border-left:3px solid var(--primary);
}
.ed-hero-stats{
  background:linear-gradient(180deg,var(--surface-2),var(--surface));
  border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:2rem;position:relative;overflow:hidden;
}
.ed-hero-stats::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent),var(--primary));
}
.ed-hero-stats h4{
  font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);margin-bottom:1.2rem;font-family:var(--font-body);font-weight:700;
}
.ed-stat-row{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:.85rem 0;border-bottom:1px dashed var(--line);
}
.ed-stat-row:last-child{border-bottom:0}
.ed-stat-row .label{color:var(--muted);font-size:.88rem}
.ed-stat-row .val{
  font-family:var(--font-display);font-weight:700;font-size:1.15rem;color:var(--primary);
}

/* editorial 风:右侧 logo 大卡(替代数据面板) */
.ed-hero-logo{
  border-radius:var(--radius-lg);overflow:hidden;position:relative;
  border:1px solid #aef35940;
  background:linear-gradient(180deg,var(--surface-2),var(--surface));
  box-shadow:0 30px 80px -30px #aef35940, 0 1px 3px rgba(0,0,0,.1);
  aspect-ratio:1/1;
}
.ed-hero-logo::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent),var(--primary));
  z-index:1;
}
.ed-hero-logo img{
  width:100%;height:100%;object-fit:cover;display:block;
}

/* ---------- SECTION HEAD: 编号 + 左侧 eyebrow ---------- */
.ed-section{padding:5rem 0;border-bottom:1px solid var(--line)}
.ed-section:last-of-type{border-bottom:0}
.ed-sec-grid{display:grid;gap:2.5rem;grid-template-columns:1fr}
@media(min-width:920px){.ed-sec-grid{grid-template-columns:240px 1fr;gap:4rem}}
.ed-sec-head{position:sticky;top:6rem;align-self:start}
.ed-sec-num{
  font-family:var(--font-display);font-size:3rem;font-weight:800;
  line-height:1;color:var(--primary);opacity:.4;
  display:block;margin-bottom:.5rem;
}
.ed-sec-eyebrow{
  font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--primary);font-weight:700;display:block;margin-bottom:.8rem;
}
.ed-sec-head h2{font-size:clamp(1.5rem,3vw,2rem);margin-bottom:.8rem}
.ed-sec-head p{color:var(--muted);font-size:.93rem;line-height:1.55}

/* ---------- 卡片改成列表行 ---------- */
.ed-list{display:flex;flex-direction:column;gap:0}
.ed-row{
  display:grid;gap:1.2rem;grid-template-columns:48px 1fr;
  padding:1.6rem 0;border-bottom:1px solid var(--line);align-items:start;
  transition:padding-left .25s ease;
}
.ed-row:first-child{border-top:1px solid var(--line)}
.ed-row:hover{padding-left:1rem;background:linear-gradient(90deg,#aef3590d,transparent)}
.ed-row .ed-ico{
  width:48px;height:48px;border-radius:10px;
  background:#aef3591a;border:1px solid #aef35940;
  display:grid;place-items:center;font-size:1.3rem;
}
.ed-row h3{
  font-family:var(--font-display);font-size:1.15rem;
  margin-bottom:.4rem;color:var(--text);letter-spacing:-0.01em;
}
.ed-row p{color:var(--muted);font-size:.95rem;line-height:1.55}
@media(min-width:720px){
  .ed-row{grid-template-columns:48px 1fr auto;align-items:center}
  .ed-row::after{
    content:"→";color:var(--primary);font-size:1.3rem;opacity:.5;
    transition:transform .25s ease,opacity .25s ease;
  }
  .ed-row:hover::after{transform:translateX(6px);opacity:1}
}

/* ---------- pull-quote 摘录 ---------- */
.ed-pull{
  border-top:2px solid var(--primary);border-bottom:2px solid var(--primary);
  padding:2rem 0;margin:3rem 0;
  font-family:var(--font-display);font-size:clamp(1.3rem,2.5vw,1.7rem);
  line-height:1.35;letter-spacing:-0.01em;color:var(--text);
  text-align:center;font-weight:600;
}
.ed-pull::before{content:"" "";display:block;color:var(--primary);font-size:2rem;line-height:.5;margin-bottom:1rem}

/* ---------- HERO IMAGE: 全宽细高 banner ---------- */
.lay-editorial .section-banner{
  height:200px;border-radius:0;border-left:0;border-right:0;
  margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);
  width:100vw;max-width:none;filter:brightness(.45) saturate(1.3) contrast(1.1);
  margin-bottom:0;
}

/* ---------- FAQ 双列 + 锚点 ---------- */
.ed-faq-wrap{display:grid;gap:2rem;grid-template-columns:1fr}
@media(min-width:920px){.ed-faq-wrap{grid-template-columns:200px 1fr;gap:3rem}}
.ed-faq-toc{
  font-size:.78rem;line-height:1.8;letter-spacing:.02em;
  position:sticky;top:6rem;align-self:start;
}
.ed-faq-toc h4{
  font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--primary);margin-bottom:.8rem;font-family:var(--font-body);font-weight:700;
}
.ed-faq-toc a{display:block;padding:.3rem 0;color:var(--muted);border-bottom:1px dashed transparent}
.ed-faq-toc a:hover{color:var(--primary);border-bottom-color:var(--primary)}
.ed-faq-list{display:flex;flex-direction:column;gap:0}
.ed-faq-q{
  border-top:1px solid var(--line);padding:1.6rem 0;
  display:grid;gap:1rem;grid-template-columns:32px 1fr;align-items:start;
}
.ed-faq-q:last-child{border-bottom:1px solid var(--line)}
.ed-faq-q .qnum{
  font-family:var(--font-display);font-weight:700;font-size:.95rem;
  color:var(--primary);padding-top:2px;
}
.ed-faq-q h3{
  font-family:var(--font-display);font-size:1.1rem;margin-bottom:.6rem;
  color:var(--text);letter-spacing:-0.01em;
}
.ed-faq-q p{color:var(--muted);font-size:.95rem;line-height:1.6}

/* ---------- FINAL CTA: 横幅条带 ---------- */
.lay-editorial .final-cta{
  border-radius:0;margin:0;padding:4rem 0;text-align:left;
  margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);width:100vw;
  background:linear-gradient(135deg,var(--primary-deep) 0%,var(--bg-2) 60%);
  border:0;border-top:1px solid #aef35959;border-bottom:1px solid #aef35959;
}
.ed-cta-grid{
  display:grid;gap:2rem;grid-template-columns:1fr;align-items:center;
  width:min(1180px,92%);margin-inline:auto;
}
@media(min-width:780px){.ed-cta-grid{grid-template-columns:1.6fr auto;gap:3rem}}
.ed-cta-grid h2{color:var(--text);margin:0;max-width:none}
.ed-cta-grid p{color:var(--text);opacity:.85;margin:.8rem 0 0;max-width:50ch}

/* ---------- FOOTER 调整成更紧凑的报刊页脚 ---------- */
.lay-editorial footer{border-top:3px solid var(--primary);padding-top:3rem}
.lay-editorial .foot-grid h4{color:var(--text);letter-spacing:.18em}

/* ============================================================
   LIGHT TONE OVERRIDES
   只对 body.lay-editorial[data-tone="light"] 生效,
   修复深色 CSS 里写死的几处颜色在浅底下的对比/可读性问题
   ============================================================ */
body.lay-editorial[data-tone="light"]{
  background:var(--bg);
}
body.lay-editorial[data-tone="light"]::before{
  background:
    radial-gradient(900px 500px at 80% -10%,rgba(174,243,89,.10),transparent 60%),
    radial-gradient(700px 500px at -10% 30%,rgba(245,193,44,.07),transparent 65%);
}
/* primary 按钮在浅底下需要白色字 */
.lay-editorial[data-tone="light"] .btn-primary{
  color:#fff;
  box-shadow:0 8px 20px -8px #aef35980;
}
/* header 半透明在浅底下用白色 */
.lay-editorial[data-tone="light"] header{
  background:rgba(255,255,255,.85);
  border-bottom:1px solid var(--line);
}
.lay-editorial[data-tone="light"] .menu-toggle,
.lay-editorial[data-tone="light"] .drawer-close{
  background:#fff;
}
.lay-editorial[data-tone="light"] .drawer{
  background:rgba(255,255,255,.96);
}
/* logo-mark 在浅底下也用深字 */
.lay-editorial[data-tone="light"] .logo-mark{color:#fff}
/* eyebrow 在浅底下提升对比 */
.lay-editorial[data-tone="light"] .eyebrow{
  background:#aef35912;
  border-color:#aef35940;
}
/* 卡片 / surface 在浅底下去掉深色渐变 */
.lay-editorial[data-tone="light"] .card,
.lay-editorial[data-tone="light"] .seo-card,
.lay-editorial[data-tone="light"] .ed-hero-stats,
.lay-editorial[data-tone="light"] .trust-badge{
  background:#fff;
  box-shadow:0 1px 3px rgba(11,26,51,.04),0 4px 16px -8px rgba(11,26,51,.06);
}
.lay-editorial[data-tone="light"] .ed-row:hover{
  background:linear-gradient(90deg,#aef3590a,transparent);
}
/* section banner 浅底下不要把图片暗化 */
.lay-editorial[data-tone="light"] .section-banner{
  filter:brightness(.92) saturate(1.1);
}
/* pull quote 浅底下加点背景增强存在感 */
.lay-editorial[data-tone="light"] .ed-pull{
  background:linear-gradient(180deg,#aef35906,transparent);
  padding:2.4rem 1.5rem;
}
/* final CTA 横幅:浅底下用纯深蓝大色块,文字反白 */
.lay-editorial[data-tone="light"] .final-cta{
  background:linear-gradient(135deg,var(--primary-deep) 0%,var(--primary) 100%);
  border-color:transparent;
}
.lay-editorial[data-tone="light"] .ed-cta-grid h2,
.lay-editorial[data-tone="light"] .ed-cta-grid p{
  color:#fff;
}
.lay-editorial[data-tone="light"] .ed-cta-grid .eyebrow{
  color:#fff;background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.3);
}
.lay-editorial[data-tone="light"] .ed-cta-grid .btn-primary{
  background:#fff;color:var(--primary-deep);box-shadow:0 8px 24px -8px rgba(0,0,0,.25);
}
/* footer 浅底版 */
.lay-editorial[data-tone="light"] footer{
  background:var(--bg-2);
  border-top:3px solid var(--primary);
}
.lay-editorial[data-tone="light"] .foot-badges span,
.lay-editorial[data-tone="light"] .age{
  background:#fff;
}

/* ---------- EDITORIAL 风格:居中标题 + 编号列表 ---------- */
.seo-block-editorial{padding:5rem 0;border-bottom:1px solid var(--line)}
.ed-seo-head{text-align:center;max-width:780px;margin:0 auto 3rem}
.ed-seo-head h2{
  font-family:var(--font-display);font-size:clamp(1.8rem,3.6vw,2.6rem);
  letter-spacing:-0.02em;line-height:1.15;margin-bottom:1rem;
}
.ed-seo-lead{
  font-size:1.05rem;line-height:1.7;color:var(--muted);max-width:62ch;margin:0 auto;
}
.ed-seo-list{
  display:grid;gap:0;max-width:920px;margin:0 auto;
}
.ed-seo-row{
  display:grid;gap:1.5rem;grid-template-columns:48px 1fr;
  padding:2rem 0;border-bottom:1px solid var(--line);align-items:start;
}
.ed-seo-row:first-child{border-top:1px solid var(--line)}
.ed-seo-num{
  font-family:var(--font-display);font-weight:800;font-size:1.4rem;
  color:var(--primary);line-height:1;padding-top:.3rem;
  display:inline-block;
}
.ed-seo-body h3{
  font-family:var(--font-display);font-size:clamp(1.15rem,2vw,1.4rem);
  color:var(--primary);margin-bottom:.7rem;line-height:1.3;letter-spacing:-0.01em;
  font-weight:700;
}
.ed-seo-body p{color:var(--muted);font-size:1rem;line-height:1.75}
@media(min-width:720px){
  .ed-seo-row{grid-template-columns:64px 1fr;gap:2rem;padding:2.2rem 0}
  .ed-seo-num{font-size:1.8rem}
}

/* ============================================================
   GREENYELLOW — 赌场风(深绿+亮黄绿+大圆角+斜纹纹理)
   ============================================================ */
.lay-greenyellow {
  font-family:'Inter','Helvetica Neue',Arial,sans-serif;
}
.lay-greenyellow h1,
.lay-greenyellow h2,
.lay-greenyellow h3 {
  font-family:'Sora','Inter',sans-serif;font-weight:700;letter-spacing:-0.015em;
}
.lay-greenyellow h1 {
  font-size:clamp(2.2rem,5vw,3.6rem);line-height:1.05;
}
.lay-greenyellow header {
  background:transparent;border-bottom:0;backdrop-filter:none;padding-top:1rem;position:relative;
}
.lay-greenyellow header::after {
  content:"";display:block;width:min(1100px,90%);margin:.8rem auto 0;
  height:48px;border-radius:999px;
  background:linear-gradient(180deg,#143a25,#102e1c);
  border:1px solid #aef35933;
  box-shadow:0 8px 24px -12px #aef35940;
}
.lay-greenyellow .btn-primary {
  background:linear-gradient(180deg,var(--primary-2),var(--primary) 60%,var(--primary-deep));
  color:#0a1f12;font-weight:700;
  box-shadow:0 8px 24px -10px #aef35980, inset 0 1px 0 rgba(255,255,255,.3);
  border:1px solid #aef35966;
}
.lay-greenyellow .btn-ghost {
  border:1px solid #aef35940;color:var(--primary);background:#aef3590a;
}
.lay-greenyellow .ed-section {border-bottom:0;padding:4.5rem 0;position:relative}
.lay-greenyellow .ed-section + .ed-section::before {
  content:"";position:absolute;top:0;left:0;right:0;height:32px;
  background-image:repeating-linear-gradient(-45deg,#aef35910 0,#aef35910 12px,transparent 12px,transparent 24px);
  opacity:.6;
}
.lay-greenyellow .ed-sec-grid {display:block;text-align:center;max-width:920px;margin:0 auto 3rem}
.lay-greenyellow .ed-sec-head {position:static;text-align:center;margin-bottom:2.5rem}
.lay-greenyellow .ed-sec-num {display:none}
.lay-greenyellow .ed-sec-eyebrow {color:var(--accent);font-weight:700;letter-spacing:.15em;font-size:.78rem;margin-bottom:.7rem}
.lay-greenyellow .ed-sec-head h2 {
  font-size:clamp(1.7rem,3.4vw,2.5rem);display:inline-block;padding-bottom:.6rem;position:relative;
}
.lay-greenyellow .ed-sec-head h2::after {
  content:"";position:absolute;left:25%;right:25%;bottom:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--primary),transparent);
}
.lay-greenyellow .ed-sec-head p {font-size:1rem;color:var(--muted);max-width:62ch;margin:.8rem auto 0}
.lay-greenyellow .ed-list {display:flex;flex-direction:column;gap:1.2rem;max-width:920px;margin:0 auto}
.lay-greenyellow .ed-row {
  border:1px solid #aef35926;border-radius:24px;
  background:linear-gradient(135deg,#102e1c 0%,#143a25 100%);
  padding:1.6rem 2rem;grid-template-columns:64px 1fr;gap:1.4rem;
  box-shadow:0 4px 20px -8px rgba(0,0,0,.3);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.lay-greenyellow .ed-row:first-child {border-top:1px solid #aef35926}
.lay-greenyellow .ed-row:hover {
  transform:translateY(-2px);border-color:#aef35966;padding-left:2rem;
  box-shadow:0 12px 32px -12px #aef35940;
}
.lay-greenyellow .ed-row .ed-ico {
  width:64px;height:64px;border-radius:50%;
  background:radial-gradient(circle,#aef35926 0%,#143a25 70%);
  border:2px solid #aef35980;font-size:1.6rem;
  box-shadow:0 0 24px -6px #aef35960;
}
.lay-greenyellow .ed-row::after {display:none}
.lay-greenyellow .ed-row h3 {color:var(--text);font-weight:700;font-size:1.15rem}
.lay-greenyellow .ed-hero-logo {
  border:2px solid #f5c12c66;border-radius:32px;
  box-shadow:0 0 60px -10px #f5c12c40, 0 30px 80px -30px rgba(0,0,0,.5);
}
.lay-greenyellow .ed-hero-logo::before {
  height:4px;background:linear-gradient(90deg,var(--accent),var(--primary),var(--accent));
}
.lay-greenyellow .ed-hero-lede {border-left:3px solid var(--accent)}
.lay-greenyellow .ed-hero-meta {border-bottom:1px dashed #aef35940}
.lay-greenyellow .ed-hero-meta b {color:var(--accent)}
.lay-greenyellow .ed-seo-head h2 {display:inline-block;padding-bottom:.6rem;position:relative}
.lay-greenyellow .ed-seo-head h2::after {
  content:"";position:absolute;left:20%;right:20%;bottom:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--primary),transparent);
}
.lay-greenyellow .ed-seo-list {display:flex;flex-direction:column;gap:1.2rem}
.lay-greenyellow .ed-seo-row {
  border:1px solid #aef35926;border-radius:24px;
  background:linear-gradient(135deg,#102e1c,#143a25);
  padding:1.8rem 2rem;grid-template-columns:72px 1fr;gap:1.5rem;
}
.lay-greenyellow .ed-seo-row:first-child {border-top:1px solid #aef35926}
.lay-greenyellow .ed-seo-num {
  width:56px;height:56px;border-radius:50%;display:grid;place-items:center;
  background:radial-gradient(circle,#aef35926 0%,transparent 70%);
  border:2px solid #aef359;color:var(--primary);
  font-size:1.4rem;font-weight:800;line-height:1;padding:0;
  box-shadow:0 0 24px -4px #aef35980;
}
.lay-greenyellow .ed-seo-body h3 {
  color:var(--text);font-family:'Sora',sans-serif;font-weight:700;
  text-transform:none;letter-spacing:-0.01em;
}
.lay-greenyellow .ed-pull {
  background:linear-gradient(180deg,#aef3590a,transparent);
  border-top:1px solid #aef35940;border-bottom:1px solid #aef35940;
  border-radius:16px;padding:2.5rem 2rem;color:var(--text);
}
.lay-greenyellow .ed-pull::before {content:"⚡";color:var(--accent);font-size:2rem}
.lay-greenyellow .ed-faq-q {
  border:1px solid #aef3591a;border-radius:16px;
  padding:1.4rem 1.6rem;margin-bottom:.8rem;
  background:linear-gradient(135deg,#102e1c,#143a25);
}
.lay-greenyellow .ed-faq-q .qnum {
  color:var(--primary);background:#aef3591a;
  width:32px;height:32px;border-radius:50%;display:grid;place-items:center;
  padding:0;font-weight:700;
}
.lay-greenyellow .final-cta {
  background:radial-gradient(800px 400px at 50% 0%,#aef35920,transparent 70%),
             linear-gradient(180deg,var(--bg-2),var(--surface));
  border-top:1px solid #aef35940;border-bottom:1px solid #aef35940;
  text-align:center;
}
.lay-greenyellow .ed-cta-grid {grid-template-columns:1fr;text-align:center;gap:1.5rem;justify-items:center}
.lay-greenyellow .ed-cta-grid h2,
.lay-greenyellow .ed-cta-grid p {margin-inline:auto}
