
:root{
  --brand:#ff7a00;
  --brand-deep:#e25f00;
  --text:#222;
  --muted:#666;
  --bg:#fffaf5;
  --card:#ffffff;
  --line:#f0d7be;
  --shadow:0 12px 32px rgba(255,122,0,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Microsoft YaHei","PingFang SC","Noto Sans SC",sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff9f2 0%,#ffffff 28%,#fffaf6 100%);
  line-height:1.9;
}
img{max-width:100%;height:auto;display:block;border-radius:18px}
a{color:var(--brand-deep);text-decoration:none}
a:hover{text-decoration:underline}
.site-header{background:#fff;box-shadow:0 2px 16px rgba(0,0,0,.04)}
.topbar{
  max-width:1200px;margin:0 auto;padding:16px 20px;
  display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
}
.brand{display:flex;align-items:center;gap:10px;font-size:1.4rem;font-weight:700;color:#1f1f1f}
.nav-list{display:flex;gap:18px;list-style:none;padding:0;margin:0;flex-wrap:wrap}
.nav-list a{padding:8px 10px;border-radius:999px}
.nav-list a:hover{background:#fff1e3;text-decoration:none}
.cta-btn,.ghost-btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:46px;padding:0 20px;border-radius:999px;font-weight:700;
}
.cta-btn{background:linear-gradient(135deg,var(--brand),#ff9340);color:#fff;box-shadow:var(--shadow)}
.ghost-btn{border:1px solid var(--line);background:#fff;color:var(--brand-deep)}
main{max-width:1200px;margin:0 auto;padding:16px 20px 40px}
.breadcrumb ol{display:flex;gap:8px;list-style:none;padding:0;margin:16px 0 24px;flex-wrap:wrap;color:var(--muted);font-size:.95rem}
.breadcrumb li::after{content:"/";margin-left:8px;color:#b8a18d}
.breadcrumb li:last-child::after{content:""}
.hero,.sub-hero{
  display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center;
  background:linear-gradient(145deg,#fff3e6,#ffffff 56%,#fff6ec);
  border:1px solid #ffe0c2;border-radius:28px;padding:28px;box-shadow:var(--shadow)
}
.sub-hero{grid-template-columns:1fr}
.eyebrow{color:var(--brand-deep);font-weight:700;letter-spacing:.08em}
h1{font-size:2.5rem;line-height:1.2;margin:.2em 0 .5em}
h2{font-size:1.8rem;line-height:1.35;margin:0 0 .7em;color:#1d1d1d}
h3{font-size:1.22rem;line-height:1.45;margin:.2em 0 .4em}
.lead{font-size:1.08rem;color:#444}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px}
.section{
  margin-top:28px;background:rgba(255,255,255,.88);backdrop-filter:blur(2px);
  border:1px solid #f5e2cf;border-radius:24px;padding:26px;box-shadow:0 10px 26px rgba(0,0,0,.03)
}
.section.alt{background:linear-gradient(180deg,#fff8f0,#fff)}
.section-head{margin-bottom:14px}
.card-grid,.review-grid,.gallery{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px
}
.sport-card,.review-card,.side-panel,.author-box{
  background:#fff;border:1px solid #f4ddc8;border-radius:22px;padding:18px;box-shadow:0 8px 20px rgba(0,0,0,.04)
}
.sport-card p,.review-card p,.panel-note,.author-role{color:#555}
.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:24px}
.feature-list,.support-list,.footer-grid ul{padding-left:20px}
.faq-list details{
  border:1px solid #f0ddc8;border-radius:18px;padding:14px 16px;background:#fff;margin-bottom:12px
}
.faq-list summary{font-weight:700;cursor:pointer}
.rating{color:#ff9300;font-size:1.1rem}
.author-box{display:grid;grid-template-columns:160px 1fr;gap:18px;align-items:center}
.gallery figure{margin:0;background:#fff;border:1px solid #f2decb;border-radius:20px;padding:14px}
.gallery figcaption{margin-top:10px;color:#5f5f5f;font-size:.96rem}
.site-footer{
  margin-top:40px;background:#1f1f1f;color:#f3f3f3;padding:36px 20px
}
.footer-grid{
  max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:24px
}
.site-footer a{color:#ffd4af}
.copyright{max-width:1200px;margin:24px auto 0;color:#c8c8c8}
@keyframes pulseScore{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.7;transform:scale(1.03)}
}
.score-flash{display:inline-block;animation:pulseScore 1.2s ease-in-out infinite}
@media (max-width: 900px){
  .hero,.sub-hero,.two-col,.author-box,.footer-grid,.card-grid,.review-grid,.gallery{
    grid-template-columns:1fr
  }
  h1{font-size:2rem}
  .topbar{justify-content:center}
}
