/*
Theme Name:        MK体育
Theme URI:         https://mksport.net/
Author:            MK体育编辑部
Author URI:        https://mksport.net/
Description:       MK体育官方主题。包含首页、官网、下载、资讯四个页面,资讯页自动抓取后台文章。完全适配Google SEO,移动端响应式。
Version:           1.0.0
Requires at least: 5.5
Tested up to:      6.5
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       mksport
Tags:              custom-menu, featured-images, threaded-comments, translation-ready, sports, news
*/

/* ================================================================
   MK体育 — 共享样式表
   ================================================================ */

:root {
  /* —— 色彩系统：呼应 logo 的浅蓝渐变 —— */
  --bg-base:       #f6f8fc;
  --bg-paper:      #ffffff;
  --bg-soft:       #eef2f9;
  --bg-tint:       #e3ebf7;

  --brand-50:      #eaf0fb;
  --brand-100:     #d6e0f5;
  --brand-200:     #b8c9ed;
  --brand-300:     #8fa6e0;
  --brand-400:     #6f88d1;
  --brand-500:     #4f6cb8;
  --brand-700:     #2c437a;
  --brand-900:     #1a2540;

  --accent:        #d49157;     /* 暖色高亮 — 用于 CTA / 数字 */
  --accent-soft:   #f5e1cc;

  --ink-primary:   #131a2e;
  --ink-secondary: #4d5a78;
  --ink-muted:     #8893ad;
  --line:          #dde4f0;
  --line-soft:     #ecf0f7;

  /* —— 字体:系统字体优先,零下载 —— */
  --font-display:  "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-sport:    "Oswald", "Helvetica Neue", "Arial Narrow", Impact, sans-serif;
  --font-body:     "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* —— 间距 / 圆角 —— */
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(31, 49, 95, 0.06);
  --shadow:    0 8px 28px rgba(31, 49, 95, 0.08);
  --shadow-lg: 0 20px 48px rgba(31, 49, 95, 0.12);

  --max-w: 1240px;
}

/* —— 基础 reset —— */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--ink-primary); margin: 0; line-height: 1.25; letter-spacing: -.01em; }

/* 微噪点纹理 — 已移除以提升性能 */
main, header, footer { position: relative; z-index: 1; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ================================================================
   导航栏
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav__logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-secondary);
  border-radius: 999px;
  transition: all .25s ease;
}
.nav__link:hover {
  color: var(--brand-900);
  background: var(--brand-50);
}
.nav__link.is-active {
  color: var(--brand-900);
  background: var(--brand-100);
}
.nav__link.is-active::before {
  content: "";
  position: absolute;
  left: 18px; right: 18px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* App 入口 CTA 按钮 */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  border-radius: 999px;
  transition: all .28s ease;
  box-shadow: 0 4px 14px rgba(44, 67, 122, 0.25);
  white-space: nowrap;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(44, 67, 122, 0.38);
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
}
.nav__cta svg { display: block; flex-shrink: 0; }
.nav__cta::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  top: 4px; right: 4px;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease infinite;
}
.nav__cta { position: relative; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

/* 移动端汉堡 */
.nav__toggle { display: none; }

@media (max-width: 880px) {
  .container { padding: 0 20px; }
  .nav { height: 64px; }
  .nav__logo img { height: 42px; }
  .nav__menu {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link { padding: 14px 18px; }
  .nav__cta {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
    padding: 14px 18px;
  }
  .nav__cta::after { top: 8px; right: 12px; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    padding: 10px;
  }
  .nav__toggle span {
    width: 22px; height: 2px; background: var(--ink-primary); border-radius: 2px;
    transition: transform .25s ease;
  }
}

/* ================================================================
   通用按钮
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: all .28s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #fff;
  box-shadow: 0 8px 22px rgba(44, 67, 122, 0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(44, 67, 122, 0.36);
}
.btn--ghost {
  background: var(--bg-paper);
  color: var(--brand-900);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--brand-300);
  background: var(--brand-50);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: #c1804a; transform: translateY(-2px); }

/* ================================================================
   首页 — Hero
   ================================================================ */
.hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sport);
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--brand-700);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--brand-400);
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}
.hero__sub {
  font-size: 17px;
  color: var(--ink-secondary);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat__num {
  display: block;
  font-family: var(--font-sport);
  font-size: 44px;
  font-weight: 600;
  color: var(--brand-900);
  letter-spacing: .01em;
}
.stat__num em {
  font-style: normal;
  color: var(--accent);
  margin-left: 2px;
}
.stat__label {
  display: block;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero 视觉区 */
.hero__visual {
  position: relative;
  aspect-ratio: 12/7;
  max-height: 560px;
  width: 100%;
}
.hero__card {
  position: absolute;
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__card--main {
  inset: 0;
  background: var(--brand-900);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.hero__card--badge {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%;
  padding: 24px;
  border: 1px solid var(--line);
}
.hero__card--badge::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-400));
}
.hero__sport-tag {
  display: inline-block;
  font-family: var(--font-sport);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--brand-700);
  background: rgba(255,255,255,.7);
  padding: 6px 12px;
  border-radius: 4px;
  align-self: flex-start;
}
.hero__match {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.hero__match-team {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-900);
}
.hero__match-score {
  font-family: var(--font-sport);
  font-size: 56px;
  font-weight: 600;
  color: var(--brand-900);
  line-height: 1;
}
.hero__match-vs {
  font-family: var(--font-sport);
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: .2em;
  padding-bottom: 10px;
}
.hero__card--badge .badge-num {
  font-family: var(--font-sport);
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
}
.hero__card--badge .badge-label {
  font-size: 13px;
  color: var(--ink-secondary);
  margin-top: 6px;
}

/* 装饰几何 */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}
.hero__shape--1 {
  top: -80px; left: -120px;
  width: 320px; height: 320px;
  background: var(--brand-200);
  opacity: .55;
}
.hero__shape--2 {
  bottom: -60px; right: -100px;
  width: 260px; height: 260px;
  background: var(--accent-soft);
  opacity: .7;
}

@media (max-width: 880px) {
  .hero { padding: 56px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { aspect-ratio: 12/7; max-height: none; }
  .hero__stats { gap: 16px; margin-top: 40px; }
  .stat__num { font-size: 32px; }
}

/* ================================================================
   通用 Section / 标题
   ================================================================ */
.section { padding: 90px 0; }
.section--soft { background: var(--bg-paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head__left { max-width: 640px; }
.section-head__eyebrow {
  display: inline-block;
  font-family: var(--font-sport);
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
}
.section-head__sub {
  margin-top: 14px;
  color: var(--ink-secondary);
  font-size: 16px;
}
.section-head__link {
  font-family: var(--font-sport);
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--brand-700);
  border-bottom: 1px solid var(--brand-300);
  padding-bottom: 4px;
}
.section-head__link:hover { color: var(--accent); border-color: var(--accent); }

/* ================================================================
   新闻卡片
   ================================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.news-card {
  grid-column: span 4;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-200);
}
.news-card--featured {
  grid-column: span 8;
  grid-row: span 2;
}
.news-card--small { grid-column: span 4; }
.news-card__visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-200), var(--brand-100));
}
.news-card--featured .news-card__visual { aspect-ratio: 16/9; }
.news-card__visual svg {
  width: 100%; height: 100%;
  display: block;
}
.news-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-sport);
  font-size: 11px;
  letter-spacing: .18em;
  background: rgba(255,255,255,.92);
  color: var(--brand-900);
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.news-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.news-card--featured .news-card__body { padding: 32px 36px 36px; }
.news-card__meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-family: var(--font-sport);
}
.news-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-primary);
}
.news-card--featured .news-card__title { font-size: 30px; line-height: 1.25; }
.news-card__excerpt {
  font-size: 14.5px;
  color: var(--ink-secondary);
  line-height: 1.65;
}
.news-card--featured .news-card__excerpt { font-size: 16px; }
.news-card__more {
  margin-top: auto;
  font-family: var(--font-sport);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.news-card__more::after { content: "→"; transition: transform .25s ease; }
.news-card:hover .news-card__more::after { transform: translateX(4px); }
.news-card:hover .news-card__more { color: var(--accent); }

@media (max-width: 880px) {
  .section { padding: 64px 0; }
  .news-card,
  .news-card--featured,
  .news-card--small { grid-column: span 12; }
  .news-card--featured .news-card__title { font-size: 24px; }
}

/* ================================================================
   官网（首页锚点）
   ================================================================ */
#official { scroll-margin-top: 90px; }
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__visual::before { display: none; }
.about__visual-grid { display: none; }
.about__sticker {
  position: absolute;
  bottom: 32px; right: 32px;
  background: var(--bg-paper);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  font-family: var(--font-sport);
}
.about__sticker .num {
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.about__sticker .txt {
  font-size: 12px;
  color: var(--ink-secondary);
  letter-spacing: .15em;
  line-height: 1.4;
}
.about h2 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 22px; }
.about__text { color: var(--ink-secondary); font-size: 16px; margin-bottom: 18px; }
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.feature {
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--brand-400);
}
.feature__num {
  font-family: var(--font-sport);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .15em;
  margin-bottom: 8px;
}
.feature__title { font-size: 16px; margin-bottom: 6px; }
.feature__desc { font-size: 14px; color: var(--ink-secondary); line-height: 1.6; }

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__features { grid-template-columns: 1fr; }
  .about__visual::before { font-size: 200px; }
}

/* ================================================================
   赛事亮点条
   ================================================================ */
.events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.event {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .25s ease;
}
.event:last-child { border-right: none; }
.event:hover { background: var(--bg-soft); }
.event__cat {
  font-family: var(--font-sport);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
}
.event__title { font-size: 17px; font-weight: 700; color: var(--ink-primary); font-family: var(--font-display); }
.event__meta { font-size: 13px; color: var(--ink-muted); display: flex; gap: 12px; }

@media (max-width: 880px) {
  .events { grid-template-columns: 1fr 1fr; }
  .event:nth-child(2) { border-right: none; }
  .event:nth-child(odd) { border-right: 1px solid var(--line); }
  .event:nth-child(1), .event:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ================================================================
   下载页 hero
   ================================================================ */
.dl-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.dl-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.dl-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.dl-hero__sub { font-size: 17px; color: var(--ink-secondary); margin-bottom: 32px; max-width: 520px; }
.dl-hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: var(--brand-900);
  color: #fff;
  border-radius: var(--radius);
  transition: all .28s ease;
  min-width: 200px;
}
.dl-btn:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(44,67,122,.3); }
.dl-btn__icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.dl-btn__small { display: block; font-size: 11px; opacity: .7; letter-spacing: .12em; }
.dl-btn__big { display: block; font-size: 16px; font-weight: 600; margin-top: 2px; }

.dl-hero__meta {
  display: flex; gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.dl-meta__item .k { font-family: var(--font-sport); font-size: 22px; color: var(--brand-900); display: block; }
.dl-meta__item .v { font-size: 12px; letter-spacing: .12em; color: var(--ink-muted); text-transform: uppercase; }

/* 手机预览 */
.phone-mock {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  aspect-ratio: 9/19;
  background: var(--brand-900);
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(31,49,95,.25);
}
.phone-mock__screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--brand-50), var(--bg-paper) 30%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.phone-mock__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: var(--brand-900);
  border-radius: 14px;
  z-index: 2;
}
.phone-mock__content { padding: 56px 22px 22px; }
.pm-tag {
  font-family: var(--font-sport);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 8px;
}
.pm-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-900);
  line-height: 1.3;
  margin-bottom: 20px;
}
.pm-card {
  background: var(--bg-paper);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(31,49,95,.08);
  margin-bottom: 12px;
}
.pm-card__row { display: flex; justify-content: space-between; align-items: center; }
.pm-card__team { font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.pm-card__score { font-family: var(--font-sport); font-size: 20px; color: var(--brand-900); }
.pm-card__meta { font-size: 10px; color: var(--ink-muted); margin-top: 6px; letter-spacing: .1em; }

@media (max-width: 880px) {
  .dl-hero { padding: 56px 0 60px; }
  .dl-hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .phone-mock { margin: 0 auto; max-width: 280px; }
}

/* ================================================================
   功能块 / 步骤
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s ease;
}
.feat-card:hover {
  border-color: var(--brand-200);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feat-card__num {
  font-family: var(--font-sport);
  font-size: 36px;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.feat-card h3 { font-size: 19px; margin-bottom: 10px; }
.feat-card p { color: var(--ink-secondary); font-size: 14.5px; line-height: 1.7; margin: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 24px;
  background: var(--bg-paper);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-sport);
  font-size: 32px;
  color: var(--brand-200);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-secondary); margin: 0; line-height: 1.6; }

@media (max-width: 880px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   FAQ
   ================================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-primary);
  list-style: none;
  gap: 20px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--font-sport);
  font-size: 28px;
  color: var(--brand-400);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .25s ease;
}
details[open] .faq__q::after { transform: rotate(45deg); color: var(--accent); }
.faq__a {
  margin-top: 14px;
  color: var(--ink-secondary);
  font-size: 15px;
  line-height: 1.75;
}

/* ================================================================
   资讯页
   ================================================================ */
.page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero p { font-size: 17px; color: var(--ink-secondary); max-width: 640px; }

.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 56px;
}
.cat-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-secondary);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}
.cat-tab.is-active,
.cat-tab:hover {
  background: var(--brand-900);
  color: #fff;
  border-color: var(--brand-900);
}

.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--brand-50), var(--bg-paper));
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  margin-bottom: 56px;
}
.featured-article__visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-200), var(--brand-100));
}
.featured-article__visual svg { width: 100%; height: 100%; display: block; }
.featured-article__tag {
  display: inline-block;
  font-family: var(--font-sport);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 14px;
}
.featured-article h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.featured-article p { color: var(--ink-secondary); font-size: 16px; margin-bottom: 24px; }
.featured-article__meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: .08em;
  font-family: var(--font-sport);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .featured-article { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
}

/* 文章列表 */
.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-soft);
  transition: opacity .3s ease;
}
.article:hover { opacity: .85; }
.article__visual {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-200), var(--brand-100));
}
.article__visual svg { width: 100%; height: 100%; }
.article__cat {
  font-family: var(--font-sport);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--accent);
}
.article__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
.article__excerpt { font-size: 14.5px; color: var(--ink-secondary); line-height: 1.65; margin: 0; }
.article__meta { font-size: 12px; color: var(--ink-muted); font-family: var(--font-sport); letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 880px) {
  .article-list { grid-template-columns: 1fr; gap: 24px; }
}

/* 分页 */
.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pager a, .pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px; height: 42px;
  padding: 0 14px;
  font-family: var(--font-sport);
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-secondary);
  transition: all .2s ease;
}
.pager a:hover, .pager .is-active {
  background: var(--brand-900);
  color: #fff;
  border-color: var(--brand-900);
}

/* ================================================================
   下载 CTA banner
   ================================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--brand-900), var(--brand-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--brand-400) 0%, transparent 70%);
  opacity: .4;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.2; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0 0 0 0; font-size: 15.5px; max-width: 540px; }
.cta-band__buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }
.cta-band .btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.15); }
.cta-band .btn--accent:hover { background: #be7e44; }

@media (max-width: 880px) {
  .cta-band { grid-template-columns: 1fr; padding: 36px 28px; text-align: left; }
  .cta-band__buttons { justify-content: flex-start; }
}

/* ================================================================
   页脚
   ================================================================ */
.site-footer {
  background: var(--brand-900);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
  margin-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 48px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.75; max-width: 320px; }
.footer-col h4 {
  font-size: 14px;
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-sport);
  font-weight: 600;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.65); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;  /* 移动端两列 */
    gap: 32px 24px;
    margin-bottom: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;             /* 品牌区横跨整行 */
  }
  .footer-brand p { max-width: 100%; }
  .footer-col h4 {
    margin-bottom: 14px;
    font-size: 13px;
  }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { font-size: 13.5px; }
  .footer-bottom {
    padding-top: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
  }
  .site-footer { padding: 56px 0 28px; margin-top: 60px; }
}

/* ================================================================
   入场动画
   ================================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: rise .8s ease both; }
.reveal--d1 { animation-delay: .12s; }
.reveal--d2 { animation-delay: .24s; }
.reveal--d3 { animation-delay: .36s; }
.reveal--d4 { animation-delay: .48s; }

/* ================================================================
   官网页 (official.html) 专属样式
   ================================================================ */
.official-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.official-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.official-hero h1 {
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.official-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.official-hero__lead {
  font-size: 18px;
  color: var(--ink-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.official-hero__pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.pill {
  padding: 8px 16px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-secondary);
  font-family: var(--font-sport);
  letter-spacing: .1em;
}
.pill--accent { background: var(--accent-soft); border-color: var(--accent); color: #8a5a2a; }

/* 大字号品牌主张 */
.brand-statement {
  position: relative;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-sm);
}
.brand-statement::before {
  content: "“";
  position: absolute;
  top: -20px; left: 32px;
  font-family: var(--font-display);
  font-size: 140px;
  color: var(--brand-200);
  line-height: 1;
}
.brand-statement p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink-primary);
  margin: 0;
  font-weight: 500;
}
.brand-statement footer {
  margin-top: 24px;
  font-family: var(--font-sport);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--ink-muted);
}

/* 体育项目网格 */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sport-cat {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.sport-cat:hover {
  transform: translateY(-3px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow);
}
.sport-cat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-200));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.sport-cat:hover::before { transform: scaleX(1); }
.sport-cat__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border-radius: 12px;
  color: var(--brand-700);
}
.sport-cat__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-primary);
}
.sport-cat__title em {
  display: block;
  font-style: normal;
  font-family: var(--font-sport);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--ink-muted);
  margin-top: 4px;
  font-weight: 500;
}
.sport-cat__desc { font-size: 13.5px; color: var(--ink-secondary); line-height: 1.6; margin: 0; }

@media (max-width: 880px) {
  .official-hero { padding: 56px 0 60px; }
  .official-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-statement { padding: 32px; }
  .brand-statement p { font-size: 18px; }
  .sports-grid { grid-template-columns: 1fr 1fr; }
}

/* 编辑流程时间轴 */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 2px;
  background: var(--brand-200);
  z-index: 0;
}
.process__step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process__num {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  background: var(--bg-paper);
  border: 2px solid var(--brand-300);
  border-radius: 50%;
  font-family: var(--font-sport);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-700);
}
.process__step:hover .process__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.process__title { font-size: 17px; margin-bottom: 8px; font-family: var(--font-display); font-weight: 700; }
.process__desc { font-size: 14px; color: var(--ink-secondary); line-height: 1.65; margin: 0; }

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .process::before { display: none; }
}

/* 团队介绍 */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-card__avatar {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--brand-200), var(--brand-100));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--brand-900);
  position: relative;
  overflow: hidden;
}
.team-card__avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
}
.team-card__avatar span { position: relative; z-index: 1; }
.team-card__body { padding: 22px 22px 26px; }
.team-card__role {
  font-family: var(--font-sport);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 6px;
}
.team-card__name { font-size: 18px; margin-bottom: 8px; font-family: var(--font-display); font-weight: 700; }
.team-card__bio { font-size: 13.5px; color: var(--ink-secondary); line-height: 1.65; margin: 0; }

@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* 数据带 */
.metrics-band {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.metrics-band::before {
  content: "MK";
  position: absolute;
  right: -40px; bottom: -80px;
  font-family: var(--font-sport);
  font-size: 320px;
  font-weight: 700;
  color: rgba(255,255,255,.04);
  letter-spacing: -.05em;
  line-height: 1;
}
.metric { position: relative; z-index: 1; }
.metric__num {
  font-family: var(--font-sport);
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -.01em;
}
.metric__num em { font-style: normal; color: var(--accent); margin-left: 2px; font-size: 36px; }
.metric__label {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}

@media (max-width: 880px) {
  .metrics-band { grid-template-columns: 1fr 1fr; padding: 40px 28px; gap: 28px; }
  .metric__num { font-size: 40px; }
}

/* 联系卡 */
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  padding: 32px 28px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .25s ease;
}
.contact-card:hover { border-color: var(--brand-300); box-shadow: var(--shadow-sm); }
.contact-card__label {
  font-family: var(--font-sport);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-card__value { font-family: var(--font-display); font-size: 19px; color: var(--ink-primary); font-weight: 700; margin-bottom: 6px; }
.contact-card__hint { font-size: 13.5px; color: var(--ink-secondary); margin: 0; }

@media (max-width: 880px) {
  .contact-row { grid-template-columns: 1fr; }
}

/* 滚动渐显 */
.fade-in { opacity: 0; transform: translateY(20px); transition: all .8s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   Hero 卡片内的 Banner 图片
   ================================================================ */
.hero__card--main {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden;
}
.hero__banner {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  background: var(--brand-900);
}
.hero__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__sport-tag--overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}
.hero__card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 22px 20px;
  background: linear-gradient(to top, rgba(10,18,45,0.88) 0%, rgba(10,18,45,0.55) 60%, transparent 100%);
  z-index: 3;
}
.hero__card-info .hero__match-team { color: #fff; font-size: 22px; }
.hero__card-info .hero__match-score { color: #fff; font-size: 44px; }
.hero__card-info .hero__match-vs { color: rgba(255,255,255,.5); }
.hero__card-info p { color: rgba(255,255,255,.65); font-size: 12px; margin-top: 8px; }

/* ================================================================
   MK体育在线下载 — 双栏模块
   ================================================================ */
.online-dl {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.online-dl__lead {
  font-size: 16px;
  color: var(--ink-secondary);
  line-height: 1.75;
  margin: 18px 0 24px;
  max-width: 520px;
}
.online-dl__points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.online-dl__points li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--ink-secondary);
}
.online-dl__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--accent);
}
.online-dl__points strong {
  color: var(--ink-primary);
  font-weight: 600;
  margin-right: 6px;
}
.online-dl__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.online-dl__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 12px;
}
.dl-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s ease;
  position: relative;
}
.dl-badge:hover {
  transform: translateX(6px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-sm);
}
.dl-badge--1 { margin-left: 0; }
.dl-badge--2 { margin-left: 32px; }
.dl-badge__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--brand-900);
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
}
.dl-badge__small {
  font-family: var(--font-sport);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--ink-muted);
}
.dl-badge__big {
  font-family: var(--font-sport);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-primary);
  margin-top: 2px;
}
.dl-stat {
  margin-left: 16px;
  margin-top: 8px;
  padding: 14px 20px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.dl-stat__num {
  font-family: var(--font-sport);
  font-size: 26px;
  font-weight: 600;
  color: #8a5a2a;
  line-height: 1;
}
.dl-stat__num span { font-size: 16px; margin-left: 4px; }
.dl-stat__label {
  font-size: 12px;
  color: #8a5a2a;
  letter-spacing: .08em;
  margin-top: 4px;
}

@media (max-width: 880px) {
  .online-dl { grid-template-columns: 1fr; gap: 40px; }
  .dl-badge--2 { margin-left: 0; }
  .dl-stat { margin-left: 0; }
}

/* ================================================================
   MK体育游戏 — 游戏卡片网格
   ================================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow);
}
.game-card__visual {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.game-card__visual svg { width: 100%; height: 100%; display: block; }
.game-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-sport);
  font-size: 11px;
  letter-spacing: .18em;
  background: rgba(255,255,255,.95);
  color: var(--brand-900);
  padding: 5px 10px;
  border-radius: 4px;
}
.game-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.game-card__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-primary);
  line-height: 1.4;
}
.game-card__body p {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.65;
  margin: 0;
}
.game-card__more {
  margin-top: auto;
  font-family: var(--font-sport);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--brand-700);
  transition: color .25s ease;
}
.game-card:hover .game-card__more { color: var(--accent); }

@media (max-width: 880px) {
  .games-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   专题策划 - 杂志式 2x2 布局
   ================================================================ */
.series-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.series-card {
  grid-column: span 4;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.series-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow);
}
.series-card--feature {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
}
.series-card__visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.series-card--feature .series-card__visual {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}
.series-card__visual svg { width: 100%; height: 100%; display: block; }
.series-card__count {
  position: absolute;
  bottom: 14px; right: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sport);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--brand-900);
  border-radius: 4px;
}
.series-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.series-card--feature .series-card__body {
  padding: 36px 40px 40px;
  justify-content: center;
}
.series-card__tag {
  font-family: var(--font-sport);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--accent);
}
.series-card__body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-primary);
  line-height: 1.4;
}
.series-card--feature .series-card__body h3 {
  font-size: 32px;
  line-height: 1.2;
}
.series-card__body p {
  font-size: 14.5px;
  color: var(--ink-secondary);
  line-height: 1.65;
  margin: 0;
}
.series-card--feature .series-card__body p { font-size: 16px; }
.series-card__more {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-sport);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--brand-700);
}
.series-card:hover .series-card__more { color: var(--accent); }

@media (max-width: 880px) {
  .series-card,
  .series-card--feature { grid-column: span 12; grid-template-columns: 1fr; }
  .series-card--feature .series-card__visual { min-height: 200px; }
  .series-card--feature .series-card__body { padding: 24px; }
  .series-card--feature .series-card__body h3 { font-size: 24px; }
}

/* ================================================================
   数据看球 - 大数字网格
   ================================================================ */
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.data-card {
  position: relative;
  padding: 32px 30px 30px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all .3s ease;
  overflow: hidden;
}
.data-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--brand-400));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.data-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow);
}
.data-card:hover::before { transform: scaleY(1); }
.data-card__label {
  display: block;
  font-family: var(--font-sport);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.data-card__num {
  font-family: var(--font-sport);
  font-size: 64px;
  font-weight: 600;
  color: var(--brand-900);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.data-card__num em {
  font-style: normal;
  font-size: 24px;
  font-weight: 500;
  color: var(--accent);
  margin-left: 6px;
}
.data-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}
.data-card__desc {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 880px) {
  .data-grid { grid-template-columns: 1fr; }
  .data-card__num { font-size: 48px; }
}

/* ================================================================
   读者评价
   ================================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.review-card {
  position: relative;
  padding: 36px 32px 28px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin: 0;
  transition: all .3s ease;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: 4px; left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--brand-200);
  line-height: 1;
}
.review-card:hover {
  border-color: var(--brand-300);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-card__quote {
  position: relative;
  z-index: 1;
  font-size: 15.5px;
  color: var(--ink-primary);
  line-height: 1.75;
  margin: 0 0 24px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.review-card__avatar {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-200), var(--brand-300));
  color: var(--brand-900);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.review-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-primary);
}
.review-card__role {
  font-size: 12.5px;
  color: var(--ink-muted);
  letter-spacing: .04em;
  margin-top: 2px;
}

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.reviews-stat:last-child { border-right: none; }
.reviews-stat__num {
  font-family: var(--font-sport);
  font-size: 38px;
  font-weight: 600;
  color: var(--brand-900);
  line-height: 1;
}
.reviews-stat__num span {
  font-size: 18px;
  color: var(--accent);
  margin-left: 2px;
}
.reviews-stat__label {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-muted);
  letter-spacing: .08em;
}

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-stats { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .reviews-stat { border-right: none; padding: 12px 16px; }
  .reviews-stat:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ================================================================
   FAQ 模块 - 首页常见问题
   ================================================================ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item:hover {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-sm);
}
.faq-item[open] {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-sm);
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-primary);
  list-style: none;
  gap: 20px;
  padding: 22px 28px;
  user-select: none;
  line-height: 1.5;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  font-family: var(--font-sport);
  font-size: 28px;
  color: var(--brand-400);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .3s ease, color .3s ease;
  width: 28px;
  text-align: center;
}
.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item__q span { flex: 1; }
.faq-item__q:hover { color: var(--brand-700); }
.faq-item__a {
  padding: 0 28px 26px;
  border-top: 1px solid var(--line-soft);
  margin-top: -1px;
}
.faq-item__a > div { padding-top: 18px; }
.faq-item__a p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.78;
  margin: 0;
}
.faq-item__a p + p { margin-top: 12px; }
.faq-item__a strong {
  color: var(--ink-primary);
  font-weight: 600;
}
.faq-item__a a {
  color: var(--brand-700);
  border-bottom: 1px solid var(--brand-300);
  transition: color .2s ease;
}
.faq-item__a a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 880px) {
  .faq-item__q { padding: 18px 22px; font-size: 15.5px; }
  .faq-item__a { padding: 0 22px 22px; }
}

/* ================================================================
   移动端综合优化 (≤880px)
   覆盖现有规则,修复细节、统一边距、优化触控体验
   ================================================================ */
@media (max-width: 880px) {

  /* —— 全局 —— */
  body { font-size: 15px; }
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }

  /* —— 通用标题间距优化 —— */
  .section-head { margin-bottom: 32px; gap: 16px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 34px) !important; line-height: 1.2; }
  .section-head__sub { font-size: 15px; margin-top: 12px; }
  .section-head__link { padding: 6px 0; font-size: 13px; }

  /* —— Hero 区:确保卡片紧凑、badge 不溢出 —— */
  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: clamp(34px, 9vw, 46px) !important; line-height: 1.12; margin-bottom: 18px; }
  .hero__sub { font-size: 15.5px; margin-bottom: 26px; }
  .hero__ctas { gap: 10px; }
  .hero__ctas .btn { padding: 12px 22px; font-size: 14.5px; }
  .hero__stats {
    margin-top: 30px;
    padding-top: 26px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stat__num { font-size: 28px !important; }
  .stat__label { font-size: 11.5px; letter-spacing: .04em; }
  .hero__visual { max-height: 380px; margin-top: 8px; }
  .hero__card--main { width: 100%; }
  .hero__card--badge { width: 50%; min-width: 180px; padding: 16px 18px; }
  .hero__card--badge .badge-num { font-size: 26px; }
  .hero__card--badge .badge-label { font-size: 11.5px; }
  .hero__card-info { padding: 16px 18px 18px; }
  .hero__match-team { font-size: 22px; }
  .hero__match-score { font-size: 38px; }
  .hero__match-vs { font-size: 12px; padding-bottom: 6px; }
  .hero__sport-tag,
  .hero__sport-tag--overlay { font-size: 10.5px; padding: 5px 10px; letter-spacing: .12em; }

  /* —— Events 模块:让 meta 行不挤 —— */
  .event { padding: 22px 18px; gap: 8px; }
  .event__cat { font-size: 11px; }
  .event__title { font-size: 15.5px; line-height: 1.4; }
  .event__meta { font-size: 12.5px; gap: 10px; flex-wrap: wrap; }

  /* —— News card 移动端 —— */
  .news-card__body { padding: 18px 20px 22px; }
  .news-card--featured .news-card__body { padding: 22px 22px 26px; }
  .news-card__title { font-size: 17px; line-height: 1.4; }
  .news-card--featured .news-card__title { font-size: 21px; line-height: 1.3; }
  .news-card__excerpt { font-size: 14px; }
  .news-card__meta { font-size: 11px; gap: 10px; }

  /* —— Series 专题策划 —— */
  .series-card__body { padding: 18px 20px 22px; gap: 8px; }
  .series-card--feature .series-card__visual { min-height: 180px; }
  .series-card--feature .series-card__body { padding: 22px 22px 26px; }
  .series-card--feature .series-card__body h3 { font-size: 22px; line-height: 1.3; }
  .series-card__body h3 { font-size: 17px; }
  .series-card__count { font-size: 11px; padding: 5px 10px; }

  /* —— Online 在线官网 / 在线下载模块 —— */
  .online-dl__lead { font-size: 15px; margin: 14px 0 20px; }
  .online-dl__points { gap: 8px; margin-bottom: 24px; }
  .online-dl__points li { font-size: 14.5px; padding-left: 22px; }
  .dl-badge { padding: 14px 16px; gap: 12px; }
  .dl-badge__big { font-size: 15.5px; }
  .dl-badge__icon { width: 40px; height: 40px; }
  .dl-stat { padding: 12px 18px; }
  .dl-stat__num { font-size: 22px; }
  .dl-stat__num span { font-size: 13px; }
  .dl-stat__label { font-size: 11.5px; }

  /* —— Feat-card 通用 —— */
  .feat-card { padding: 26px 22px; }
  .feat-card__num { font-size: 30px; margin-bottom: 10px; }
  .feat-card h3 { font-size: 17px; }
  .feat-card p { font-size: 14px; }

  /* —— Data 数据看球 —— */
  .data-card { padding: 26px 22px; }
  .data-card__num { font-size: 42px !important; margin-bottom: 12px; }
  .data-card__num em { font-size: 18px; }
  .data-card__title { font-size: 16px; }
  .data-card__desc { font-size: 13.5px; }
  .data-card__label { font-size: 10.5px; margin-bottom: 12px; }

  /* —— Game cards —— */
  .game-card__body { padding: 18px 20px 22px; gap: 8px; }
  .game-card__body h3 { font-size: 17px; }
  .game-card__body p { font-size: 13.5px; }

  /* —— Reviews —— */
  .review-card { padding: 28px 22px 22px; }
  .review-card__quote { font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; }
  .review-card__name { font-size: 14px; }
  .review-card__role { font-size: 12px; }
  .reviews-grid { margin-bottom: 36px; }
  /* reviews-stats 移动端的更细致控制(覆盖前面规则) */
  .reviews-stats {
    grid-template-columns: 1fr 1fr;
    padding: 26px 0;
    gap: 22px 0;
  }
  .reviews-stat { padding: 8px 12px; border-right: none; }
  .reviews-stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .reviews-stat__num { font-size: 30px; }
  .reviews-stat__num span { font-size: 14px; }
  .reviews-stat__label { font-size: 11.5px; margin-top: 8px; line-height: 1.4; }

  /* —— FAQ —— */
  .faq-item { margin-bottom: 10px; }
  .faq-item__q { padding: 16px 18px; font-size: 14.5px; line-height: 1.45; gap: 14px; }
  .faq-item__q::after { font-size: 24px; }
  .faq-item__a { padding: 0 18px 18px; }
  .faq-item__a > div { padding-top: 14px; }
  .faq-item__a p { font-size: 14px; line-height: 1.7; }

  /* —— About 模块 —— */
  .about__sticker { bottom: 18px; right: 18px; padding: 14px 16px; gap: 10px; }
  .about__sticker .num { font-size: 22px; }
  .about__sticker .txt { font-size: 10.5px; }
  .feature { padding: 16px 18px; }
  .feature__title { font-size: 15px; }
  .feature__desc { font-size: 13px; line-height: 1.55; }

  /* —— CTA 横幅 —— */
  .cta-band { padding: 32px 24px; gap: 22px; }
  .cta-band h2 { font-size: clamp(22px, 6vw, 28px) !important; }
  .cta-band p { font-size: 14.5px; }
  .cta-band__buttons { gap: 10px; }
  .cta-band .btn { padding: 12px 20px; font-size: 14px; }

  /* —— Official 页 hero —— */
  .official-hero { padding: 40px 0 50px; }
  .official-hero h1 { font-size: clamp(32px, 8vw, 44px); line-height: 1.12; }
  .official-hero__lead { font-size: 15px; margin-bottom: 26px; }
  .official-hero__pills { gap: 8px; margin-bottom: 26px; }
  .pill { padding: 6px 12px; font-size: 11.5px; }
  .brand-statement { padding: 28px 22px; }
  .brand-statement::before { font-size: 100px; top: 0; left: 18px; }
  .brand-statement p { font-size: 16px; line-height: 1.65; }
  .brand-statement footer { font-size: 11.5px; margin-top: 18px; }

  /* —— 体育项目网格 —— */
  .sport-cat { padding: 22px 18px; gap: 10px; }
  .sport-cat__title { font-size: 15.5px; }
  .sport-cat__title em { font-size: 10px; }
  .sport-cat__desc { font-size: 13px; line-height: 1.55; }
  .sport-cat__icon { width: 38px; height: 38px; }

  /* —— Process 流程 —— */
  .process__num { width: 48px; height: 48px; font-size: 18px; margin-bottom: 14px; }
  .process__title { font-size: 15.5px; }
  .process__desc { font-size: 13px; }

  /* —— Metrics 数据带 —— */
  .metric__num { font-size: 32px; }
  .metric__num em { font-size: 22px; }
  .metric__label { font-size: 12px; margin-top: 8px; }
  .metrics-band { padding: 32px 22px; }
  .metrics-band::before { font-size: 200px; }

  /* —— Team —— */
  .team-card__avatar { font-size: 44px; }
  .team-card__body { padding: 18px 18px 22px; }
  .team-card__name { font-size: 16px; }
  .team-card__role { font-size: 11px; }
  .team-card__bio { font-size: 13px; line-height: 1.55; }

  /* —— Contact —— */
  .contact-card { padding: 24px 20px; }
  .contact-card__value { font-size: 16px; }
  .contact-card__hint { font-size: 13px; }

  /* —— Download 页 —— */
  .dl-hero { padding: 40px 0 50px; }
  .dl-hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .dl-hero__sub { font-size: 15.5px; margin-bottom: 24px; }
  .dl-btn { min-width: 0; width: 100%; padding: 12px 18px; }
  .dl-btn__big { font-size: 14.5px; }
  .dl-hero__buttons { flex-direction: column; gap: 10px; }
  .dl-hero__meta { gap: 18px; padding-top: 20px; }
  .dl-meta__item .k { font-size: 18px; }
  .dl-meta__item .v { font-size: 11px; }

  /* —— Steps 安装步骤 —— */
  .step { padding: 24px 18px; }
  .step::before { font-size: 26px; margin-bottom: 8px; }
  .step h4 { font-size: 16px; }
  .step p { font-size: 13.5px; }

  /* —— FAQ (download 页 .faq) —— */
  .faq__q { font-size: 16px; gap: 14px; }
  .faq__a { font-size: 14px; }

  /* —— News 页 —— */
  .page-hero { padding: 50px 0 36px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 44px); margin-bottom: 14px; }
  .page-hero p { font-size: 15px; }
  .cat-tabs { padding: 18px 0; margin-bottom: 32px; gap: 6px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .cat-tabs::-webkit-scrollbar { display: none; }
  .cat-tab { padding: 8px 16px; font-size: 13px; flex-shrink: 0; }
  .featured-article { padding: 22px; gap: 22px; margin-bottom: 36px; }
  .featured-article h2 { font-size: clamp(22px, 6vw, 28px); }
  .featured-article p { font-size: 14.5px; }
  .featured-article__meta { font-size: 11.5px; gap: 12px; flex-wrap: wrap; }
  .article__title { font-size: 17px; }
  .article__excerpt { font-size: 13.5px; }
  .pager a, .pager span { min-width: 38px; height: 38px; font-size: 13px; }
}

/* —— 超小屏 (≤480px) 进一步压缩 —— */
@media (max-width: 480px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat__num { font-size: 24px !important; }
  .stat__label { font-size: 10.5px; }
  .hero__card--badge { width: 60%; }
  .reviews-stat__num { font-size: 26px; }
  .reviews-stat__label { font-size: 11px; }
}

/* ================================================================
   WordPress 主题专属补充样式
   ================================================================ */

/* 单篇文章页 */
.single-post__hero { padding-bottom: 24px; }
.single-post__meta {
  margin-top: 24px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #5a6378;
  letter-spacing: .5px;
}
.single-post__meta time { font-feature-settings: 'tnum'; }

.single-post__cover-wrap { margin-top: -32px; margin-bottom: 56px; }
.single-post__cover {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(26, 37, 64, .25);
  aspect-ratio: 16/9;
}
.single-post__cover img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.single-post__body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.85;
  color: #2a3344;
}
.single-post__body > * { margin: 0 0 24px; }
.single-post__body h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 56px 0 20px;
  letter-spacing: -.5px;
}
.single-post__body h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 14px;
}
.single-post__body p { margin-bottom: 24px; }
.single-post__body a {
  color: #2c437a;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.single-post__body a:hover { color: #d49157; }
.single-post__body img {
  max-width: 100%; height: auto;
  border-radius: 8px;
  margin: 32px auto;
  display: block;
}
.single-post__body blockquote {
  border-left: 4px solid #d49157;
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-style: italic;
  color: #5a6378;
  background: #fbfbf8;
  border-radius: 4px;
}
.single-post__body ul, .single-post__body ol { padding-left: 28px; margin-bottom: 24px; }
.single-post__body li { margin-bottom: 8px; }
.single-post__body code {
  background: #f0f2f7;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .92em;
}
.single-post__body pre {
  background: #1a2540;
  color: #eaf0fb;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 14px;
}
.single-post__body figure { margin: 32px 0; }
.single-post__body figcaption {
  text-align: center;
  font-size: 14px;
  color: #5a6378;
  margin-top: 8px;
}

/* 文章标签 */
.single-post__tags {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid #e2e7ee;
}
.tag-chip {
  display: inline-block;
  padding: 6px 12px;
  background: #f0f2f7;
  color: #2c437a;
  border-radius: 100px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  transition: background .2s;
}
.tag-chip:hover { background: #e2e7ee; }

/* 上下篇导航 */
.post-nav {
  max-width: 760px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid #e2e7ee;
}
.post-nav__prev a, .post-nav__next a {
  display: block;
  padding: 16px 20px;
  background: #fbfbf8;
  border-radius: 12px;
  color: #2c437a;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #e2e7ee;
  transition: all .2s;
}
.post-nav__next { text-align: right; }
.post-nav__prev a:hover, .post-nav__next a:hover {
  background: #fff;
  border-color: #d49157;
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .single-post__body { font-size: 17px; line-height: 1.78; }
  .single-post__body h2 { font-size: 24px; margin: 40px 0 14px; }
  .single-post__body h3 { font-size: 19px; margin: 28px 0 10px; }
  .single-post__cover-wrap { margin-top: -16px; margin-bottom: 32px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav__next { text-align: left; }
  .single-post__meta { gap: 8px; font-size: 13px; }
}

/* WordPress 默认 alignment 类 */
.alignleft { float: left; margin-right: 24px; max-width: 50%; }
.alignright { float: right; margin-left: 24px; max-width: 50%; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; font-size: 14px; color: #5a6378; }

/* WordPress 屏幕阅读器辅助 */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  overflow: hidden; position: absolute;
  word-wrap: normal !important;
}

/* WordPress 分页样式 — 与原 .pager 一致 */
.pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #e2e7ee;
  color: #2c437a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all .2s;
  margin: 0 4px;
}
.pager .page-numbers:hover {
  background: #f0f2f7;
  border-color: #d49157;
}
.pager .page-numbers.current,
.pager .is-active {
  background: #2c437a;
  color: #fff;
  border-color: #2c437a;
}
.pager .dots { border: none; }

/* ================================================================
   Banner 显示修复 — 强制 banner 完整展示(高优先级覆盖)
   ================================================================ */
.hero__visual {
  aspect-ratio: 12 / 7 !important;
  max-height: 560px !important;
  width: 100% !important;
}
.hero__card--main {
  inset: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.hero__banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--brand-900);
}
.hero__banner-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

/* 移动端 */
@media (max-width: 880px) {
  .hero__visual {
    aspect-ratio: 12 / 7 !important;
    max-height: none !important;
  }
}

/* ================================================================
   Hero 区域最终调整 — 只保留 banner,居中显示
   ================================================================ */

/* 隐藏 "PREMIER LEAGUE · 英超焦点" 标签 */
.hero__sport-tag--overlay { display: none !important; }

/* 隐藏底部比分条 */
.hero__card-info { display: none !important; }

/* 隐藏右下角 badge 卡片 */
.hero__card--badge { display: none !important; }

/* Hero 整体上移,左右内容垂直居中对齐 */
.hero {
  padding: 48px 0 64px !important;
}
.hero__inner {
  align-items: center !important;
}

/* visual 区域:比例匹配 banner 原图 12:7 */
.hero__visual {
  position: relative !important;
  aspect-ratio: 12 / 7 !important;
  max-height: 500px !important;
  width: 100% !important;
}

/* 主卡片:absolute 撑满 visual 容器 */
.hero__card--main {
  position: absolute !important;
  inset: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  border-radius: var(--radius-lg) !important;
}

/* banner 容器撑满卡片 */
.hero__banner {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

/* banner 图片完整居中显示 */
.hero__banner-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

/* 移动端 */
@media (max-width: 880px) {
  .hero { padding: 36px 0 48px !important; }
  .hero__visual {
    aspect-ratio: 12 / 7 !important;
    max-height: none !important;
  }
}
