/* ─── 2026世界杯主题 — 核心样式 ─── */
:root {
  --green-deep:   #003d1a;
  --green-mid:    #005c28;
  --green-bright: #00a845;
  --green-light:  #e8f7ee;
  --gold:         #f0b429;
  --gold-light:   #fff8e1;
  --red:          #c0392b;
  --dark:         #0d1f0f;
  --gray-800:     #1a2e1c;
  --gray-600:     #3d5c42;
  --gray-400:     #7a9a7e;
  --gray-100:     #f0f7f1;
  --white:        #ffffff;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(0,61,26,.12);
  --shadow-lg:    0 12px 48px rgba(0,61,26,.2);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Noto Sans SC', sans-serif; background: #fff; color: var(--dark); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ── 公共 ── */
.container { max-width: 1200px; margin: auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--green-deep); color: #fff; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: var(--green-bright); text-transform: uppercase; margin-bottom: 12px; }
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--green-bright); }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-label::before { background: var(--gold); }
.section-title { font-family: 'Noto Serif SC', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; line-height: 1.3; color: var(--green-deep); margin-bottom: 16px; }
.section-dark .section-title { color: #fff; }
.section-desc { color: var(--gray-600); font-size: 1rem; max-width: 640px; margin-bottom: 48px; line-height: 1.8; }

/* ── 顶部条 ── */
.topbar { background: var(--green-deep); color: rgba(255,255,255,.7); font-size: .78rem; text-align: center; padding: 7px 16px; letter-spacing: .04em; }
.topbar strong { color: var(--gold); }
.topbar a { color: var(--gold); text-decoration: none; }

/* ── 导航 ── */
.site-nav { position: sticky; top: 0; z-index: 999; background: rgba(0,30,10,.97); backdrop-filter: blur(12px); border-bottom: 2px solid var(--green-bright); box-shadow: 0 2px 20px rgba(0,0,0,.4); }
.nav-inner { max-width: 1200px; margin: auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 58px; }
.logo { font-family: 'Noto Serif SC', serif; font-size: 1.25rem; font-weight: 900; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-ball { width: 32px; height: 32px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li a, .nav-links a { display: block; padding: 0 13px; height: 58px; line-height: 58px; color: rgba(255,255,255,.82); text-decoration: none; font-size: .86rem; font-weight: 500; transition: color .2s, background .2s; white-space: nowrap; }
.nav-links li a:hover, .nav-links a:hover, .nav-links .current-menu-item > a { color: var(--gold); background: rgba(255,255,255,.05); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; padding: 4px; }

/* ── 按钮 ── */
.btn-primary { background: var(--gold); color: var(--dark); padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: .95rem; text-decoration: none; display: inline-block; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(240,180,41,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,180,41,.5); }
.btn-outline { border: 2px solid rgba(255,255,255,.4); color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: .95rem; display: inline-block; transition: border-color .2s, background .2s; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-dark { border: 2px solid var(--green-bright); color: var(--green-deep); padding: 12px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: .92rem; display: inline-block; transition: background .2s, color .2s; }
.btn-outline-dark:hover { background: var(--green-bright); color: #fff; }

/* ── 英雄区 ── */
.hero { position: relative; min-height: 90vh; background: linear-gradient(155deg, var(--green-deep) 0%, #001a0a 50%, #0d3800 100%); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; opacity: .07; background-image: radial-gradient(circle at 20% 50%, var(--green-bright) 0%, transparent 50%), radial-gradient(circle at 80% 20%, var(--gold) 0%, transparent 40%); }
.pitch-lines { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 480px; height: 480px; opacity: .05; border: 3px solid #fff; border-radius: 50%; }
.pitch-lines::before { content: ''; position: absolute; inset: 40px; border: 3px solid #fff; border-radius: 50%; }
.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,180,41,.18); border: 1px solid rgba(240,180,41,.4); color: var(--gold); padding: 6px 16px; border-radius: 100px; font-size: .8rem; font-weight: 600; letter-spacing: .08em; margin-bottom: 20px; }
.hero h1 { font-family: 'Noto Serif SC', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.15; color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.8; }
.hero-sub strong { color: var(--gold); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.info-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.info-pill { background: rgba(0,168,69,.2); border: 1px solid rgba(0,168,69,.4); color: rgba(255,255,255,.85); padding: 5px 14px; border-radius: 100px; font-size: .8rem; }

/* 倒计时 */
.countdown-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 36px; backdrop-filter: blur(8px); }
.countdown-title { color: rgba(255,255,255,.6); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 24px; }
.countdown-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 28px; }
.countdown-unit { background: rgba(255,255,255,.08); border-radius: 12px; padding: 18px 8px; text-align: center; }
.countdown-num { font-family: 'Noto Serif SC', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; display: block; }
.countdown-label { color: rgba(255,255,255,.5); font-size: .75rem; margin-top: 6px; }

/* ── 卡片 ── */
.card-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: repeat(2,1fr); }
.card-grid-3 { grid-template-columns: repeat(3,1fr); }
.card-grid-4 { grid-template-columns: repeat(4,1fr); }
.card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(0,61,26,.08); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card.card-link { padding: 0; }
.card.card-link .card-inner-link { display: block; padding: 28px; text-decoration: none; }
.card-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.card h3 { font-family: 'Noto Serif SC', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; }
.card p { color: var(--gray-600); font-size: .9rem; line-height: 1.7; }
.card-tag { display: inline-block; margin-top: 14px; background: var(--green-light); color: var(--green-mid); padding: 3px 10px; border-radius: 100px; font-size: .76rem; font-weight: 600; }

/* ── 球队卡 ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.team-card { background: #fff; border-radius: var(--radius); border: 1px solid rgba(0,61,26,.1); padding: 20px 16px; text-align: center; transition: transform .2s, box-shadow .2s; text-decoration: none; display: block; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-flag { font-size: 2rem; margin-bottom: 10px; }
.team-name { font-family: 'Noto Serif SC', serif; font-weight: 700; font-size: .95rem; color: var(--green-deep); margin-bottom: 6px; }
.team-odds { display: inline-block; background: var(--green-light); color: var(--green-mid); padding: 3px 10px; border-radius: 100px; font-size: .78rem; font-weight: 600; }
/* 球队列表全宽 */
.team-grid-full { display: flex; flex-direction: column; gap: 8px; }
.team-card-full { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 10px; padding: 16px 20px; border: 1px solid rgba(0,61,26,.1); text-decoration: none; transition: background .2s, transform .2s; }
.team-card-full:hover { background: var(--green-light); transform: translateX(4px); }
.tcf-flag { font-size: 2rem; flex-shrink: 0; }
.tcf-body { flex: 1; }
.tcf-name { font-family: 'Noto Serif SC', serif; font-weight: 700; font-size: 1rem; color: var(--dark); }
.tcf-meta { font-size: .8rem; color: var(--gray-400); margin-top: 2px; }
.tcf-right { text-align: right; }
.tcf-star { font-size: .8rem; color: var(--gray-600); }
.tcf-odds { font-size: .82rem; font-weight: 700; color: var(--red); margin-top: 2px; }
.tcf-arrow { font-size: 1.4rem; color: var(--gray-400); margin-left: 12px; }

/* ── 球员卡 ── */
.player-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.player-card { background: linear-gradient(160deg, var(--green-deep), #001a0a); border-radius: var(--radius); padding: 24px 20px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow); text-decoration: none; display: block; transition: transform .25s; }
.player-card:hover { transform: translateY(-4px); }
.player-number { position: absolute; top: 12px; right: 14px; font-family: 'Noto Serif SC', serif; font-size: 3rem; font-weight: 900; opacity: .1; color: #fff; line-height: 1; }
.player-avatar { width: 64px; height: 64px; background: var(--green-mid); border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem; border: 3px solid rgba(240,180,41,.3); }
.player-avatar-lg { width: 90px; height: 90px; background: var(--green-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; border: 4px solid rgba(240,180,41,.4); flex-shrink: 0; }
.player-name { font-family: 'Noto Serif SC', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.player-nation { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.player-stat { background: rgba(255,255,255,.08); border-radius: 8px; padding: 10px; color: var(--gold); font-size: .8rem; }
.stat-card-light { background: var(--green-light); border-radius: 12px; padding: 18px; text-align: center; }
.stat-num-light { font-family: 'Noto Serif SC', serif; font-size: 1.8rem; font-weight: 900; color: var(--green-deep); display: block; line-height: 1; }
.stat-label-light { color: var(--gray-600); font-size: .78rem; margin-top: 6px; }

/* ── 文章卡 ── */
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.article-grid-3 { grid-template-columns: repeat(3,1fr); }
.article-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.05); transition: transform .25s; }
.article-card:hover { transform: translateY(-4px); }
.article-card-link { display: block; text-decoration: none; }
.article-thumb { width: 100%; height: 180px; object-fit: cover; display: block; }
.article-thumb-placeholder { height: 140px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.article-body { padding: 18px; }
.article-cat { display: inline-block; background: var(--green-light); color: var(--green-mid); padding: 2px 8px; border-radius: 100px; font-size: .72rem; font-weight: 700; margin-bottom: 8px; }
.article-title { font-family: 'Noto Serif SC', serif; font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
.article-excerpt { font-size: .84rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.article-meta { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--gray-400); }
.read-more { color: var(--green-bright); font-weight: 600; }

/* ── 内页布局 ── */
.inner-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.inner-main { min-width: 0; }
.inner-sidebar { position: sticky; top: 78px; }
.inner-hero { background: linear-gradient(155deg, var(--green-deep), #001a0a); }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: .82rem; }
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.35); }
.breadcrumb span:last-child { color: rgba(255,255,255,.85); }

/* ── 详情卡 ── */
.detail-card { background: #fff; border-radius: var(--radius); padding: 28px 32px; box-shadow: var(--shadow); border: 1px solid rgba(0,61,26,.07); margin-bottom: 24px; }
.detail-card h2 { font-family: 'Noto Serif SC', serif; font-size: 1.2rem; font-weight: 700; color: var(--green-deep); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--green-light); }
.detail-card h3 { font-family: 'Noto Serif SC', serif; }
.detail-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.detail-table th { width: 140px; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-weight: 600; text-align: left; border-bottom: 1px solid rgba(0,61,26,.08); }
.detail-table td { padding: 10px 14px; border-bottom: 1px solid rgba(0,61,26,.06); color: var(--dark); }
.detail-table tr:last-child td, .detail-table tr:last-child th { border-bottom: none; }
.entry-content { color: var(--gray-600); font-size: .95rem; line-height: 1.9; }
.entry-content p { margin-bottom: 16px; }
.entry-content h2 { font-family: 'Noto Serif SC', serif; font-size: 1.4rem; color: var(--green-deep); margin: 32px 0 16px; }
.entry-content h3 { font-family: 'Noto Serif SC', serif; font-size: 1.15rem; color: var(--green-deep); margin: 24px 0 12px; }
.entry-content ul, .entry-content ol { padding-left: 20px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 6px; }
.entry-content strong { color: var(--dark); }
.entry-content a { color: var(--green-bright); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); }

/* ── 侧边栏 ── */
.sidebar-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); margin-bottom: 20px; border: 1px solid rgba(0,61,26,.08); }
.sidebar-card h3 { font-family: 'Noto Serif SC', serif; font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--green-light); }
.sidebar-item { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--green-light); color: var(--dark); text-decoration: none; font-size: .88rem; transition: color .15s; }
.sidebar-item:last-of-type { border-bottom: none; }
.sidebar-item:hover { color: var(--green-bright); }
.sidebar-item-article { flex-direction: column; align-items: flex-start; gap: 2px; font-size: .84rem; }
.sidebar-more { display: block; margin-top: 12px; color: var(--green-bright); font-size: .84rem; font-weight: 600; text-decoration: none; text-align: center; }
.sidebar-more:hover { text-decoration: underline; }

/* ── 赛程表 ── */
.schedule-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.schedule-table { width: 100%; border-collapse: collapse; font-size: .88rem; background: #fff; }
.schedule-table th { background: var(--green-mid); color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; font-size: .8rem; }
.schedule-table td { padding: 13px 16px; border-bottom: 1px solid rgba(0,61,26,.07); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--green-light); }
.round-badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: .74rem; font-weight: 700; }
.badge-group   { background: var(--green-light); color: var(--green-mid); }
.badge-round16 { background: #fff3cd; color: #856404; }
.badge-quarter { background: #cce5ff; color: #004085; }
.badge-semi    { background: #f8d7da; color: #721c24; }
.badge-final   { background: var(--gold); color: var(--dark); }
.stadium-tag   { color: var(--gray-400); font-size: .8rem; }

/* ── 赛制流程 ── */
.format-flow { display: flex; align-items: stretch; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.format-stage { flex: 1; padding: 22px 12px; text-align: center; border-right: 1px solid var(--green-light); }
.format-stage:last-child { border-right: none; }
.format-num { font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 900; color: var(--green-bright); line-height: 1; display: block; }
.format-name { font-size: .78rem; color: var(--gray-600); margin-top: 4px; }

/* ── 直播卡 ── */
.live-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.live-card { border-radius: var(--radius); padding: 24px; position: relative; overflow: hidden; }
.live-card.tier1 { background: linear-gradient(135deg, #003d1a, #005c28); color: #fff; }
.live-card.tier2 { background: linear-gradient(135deg, #1a3a5c, #0d2137); color: #fff; }
.live-card.tier3 { background: linear-gradient(135deg, #4a0a0a, #7a1515); color: #fff; }
.live-card-label { font-size: .72rem; letter-spacing: .12em; font-weight: 700; opacity: .7; margin-bottom: 12px; text-transform: uppercase; }
.live-card h3 { font-family: 'Noto Serif SC', serif; font-size: 1.15rem; margin-bottom: 10px; }
.live-card p { font-size: .85rem; opacity: .8; line-height: 1.7; }
.live-badge { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.15); padding: 4px 10px; border-radius: 100px; font-size: .72rem; font-weight: 700; }
.live-badge.free { background: var(--green-bright); }
.live-badge.paid { background: var(--gold); color: var(--dark); }

/* ── 提示列表 ── */
.tips-list { background: var(--gold-light); border: 1px solid rgba(240,180,41,.3); border-radius: var(--radius); padding: 24px 28px; list-style: none; }
.tips-list li { padding: 10px 0; border-bottom: 1px solid rgba(240,180,41,.2); display: flex; gap: 12px; align-items: flex-start; color: var(--gray-800); font-size: .9rem; line-height: 1.6; }
.tips-list li:last-child { border-bottom: none; }
.tips-list li::before { content: '✓'; display: block; flex-shrink: 0; width: 22px; height: 22px; background: var(--green-bright); color: #fff; border-radius: 50%; font-size: .72rem; text-align: center; line-height: 22px; font-weight: 700; margin-top: 1px; }
.tips-list li strong { color: var(--dark); }

/* ── 门票 ── */
.ticket-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ticket-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ticket-head { padding: 20px 24px 16px; background: var(--green-mid); color: #fff; }
.ticket-card.featured .ticket-head { background: var(--gold); color: var(--dark); }
.ticket-card.vip .ticket-head { background: var(--green-deep); }
.ticket-type { font-size: .78rem; letter-spacing: .08em; opacity: .8; margin-bottom: 6px; }
.ticket-price { font-family: 'Noto Serif SC', serif; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.ticket-price span { font-size: .95rem; font-weight: 400; }
.ticket-body { background: #fff; padding: 20px 24px; }
.ticket-features { list-style: none; }
.ticket-features li { padding: 7px 0; border-bottom: 1px solid var(--green-light); color: var(--gray-600); font-size: .88rem; display: flex; gap: 8px; }
.ticket-features li:last-child { border-bottom: none; }
.ticket-features li::before { content: '›'; color: var(--green-bright); font-weight: 700; }

/* ── 步骤 ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step-card { text-align: center; padding: 24px 16px; background: #fff; border-radius: var(--radius); border: 1px solid var(--green-light); box-shadow: var(--shadow); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--green-deep); color: var(--gold); font-family: 'Noto Serif SC', serif; font-size: 1.2rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-card h4 { font-weight: 700; font-size: .95rem; color: var(--green-deep); margin-bottom: 8px; }
.step-card p { font-size: .84rem; color: var(--gray-600); line-height: 1.6; }

/* ── 赔率表 ── */
.odds-table { width: 100%; border-collapse: collapse; font-size: .9rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.odds-table th { background: var(--gold); color: var(--dark); padding: 12px 16px; text-align: left; font-weight: 700; font-size: .82rem; }
.odds-table td { padding: 13px 16px; border-bottom: 1px solid rgba(0,0,0,.05); background: #fff; }
.odds-table tr:last-child td { border-bottom: none; }
.odds-table tr:hover td { background: var(--gold-light); }
.odds-val { font-family: 'Noto Serif SC', serif; font-weight: 700; color: var(--red); font-size: 1.05rem; }

/* ── 警告框 ── */
.warn-box { background: #fff3cd; border: 1px solid #ffc107; border-radius: var(--radius); padding: 18px 22px; margin-top: 24px; display: flex; gap: 14px; align-items: flex-start; }
.warn-box-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.warn-box p { font-size: .88rem; color: #856404; line-height: 1.7; }

/* ── 周边商品 ── */
.merch-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.merch-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.06); transition: transform .25s; }
.merch-card:hover { transform: translateY(-4px); }
.merch-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.merch-img.jersey { background: linear-gradient(135deg, #e8f7ee, #c8e8d4); }
.merch-img.ball   { background: linear-gradient(135deg, #fff8e1, #ffe9a0); }
.merch-img.scarf  { background: linear-gradient(135deg, #fde8e8, #f5c6c6); }
.merch-img.cap    { background: linear-gradient(135deg, #e8eef7, #c8d4e8); }
.merch-body { padding: 16px; }
.merch-title { font-weight: 700; font-size: .92rem; color: var(--dark); margin-bottom: 6px; }
.merch-desc { font-size: .8rem; color: var(--gray-600); margin-bottom: 12px; line-height: 1.5; }
.merch-price { font-family: 'Noto Serif SC', serif; font-weight: 700; color: var(--red); font-size: 1rem; }
.merch-price span { font-weight: 400; font-size: .8rem; color: var(--gray-400); text-decoration: line-through; margin-left: 6px; }

/* ── 城市卡 ── */
.city-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.city-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; min-height: 190px; display: flex; align-items: flex-end; background: linear-gradient(135deg, #1a3a5c, #0d2137); text-decoration: none; transition: transform .25s; }
.city-card:hover { transform: translateY(-4px); }
.city-bg-icon { position: absolute; right: 16px; top: 16px; font-size: 3.5rem; opacity: .2; }
.city-body { padding: 20px; position: relative; z-index: 2; color: #fff; width: 100%; }
.city-name { font-family: 'Noto Serif SC', serif; font-size: 1.2rem; font-weight: 900; margin-bottom: 5px; }
.city-info { font-size: .8rem; opacity: .75; line-height: 1.5; }
.city-tag { display: inline-block; margin-top: 10px; background: rgba(255,255,255,.15); border-radius: 100px; padding: 3px 12px; font-size: .74rem; }

/* ── 旅游提示 ── */
.travel-tips { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.travel-tip-card { background: #fff; border-radius: var(--radius); padding: 22px; border-left: 4px solid var(--green-bright); box-shadow: var(--shadow); }
.travel-tip-card h4 { font-weight: 700; color: var(--green-deep); margin-bottom: 12px; font-size: .95rem; }
.travel-tip-card ul { list-style: none; }
.travel-tip-card ul li { padding: 5px 0; color: var(--gray-600); font-size: .86rem; display: flex; gap: 8px; line-height: 1.5; }
.travel-tip-card ul li::before { content: '→'; color: var(--green-bright); font-weight: 700; flex-shrink: 0; }
.travel-tip-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.7; }

/* ── 历史统计 ── */
.history-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: rgba(255,255,255,.08); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid rgba(255,255,255,.1); }
.stat-num { font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 900; color: var(--gold); display: block; }
.stat-label { color: rgba(255,255,255,.6); font-size: .78rem; margin-top: 4px; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-radius: var(--radius); margin-bottom: 10px; border: 1px solid rgba(0,61,26,.12); background: #fff; overflow: hidden; }
.faq-q { padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--green-deep); font-size: .95rem; user-select: none; transition: background .2s; }
.faq-q:hover { background: var(--green-light); }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--green-bright); transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s; color: var(--gray-600); font-size: .9rem; line-height: 1.8; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

/* ── 筛选栏 ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn { padding: 7px 18px; border-radius: 100px; border: 1px solid rgba(0,61,26,.2); color: var(--gray-600); font-size: .84rem; text-decoration: none; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }

/* ── 分页 ── */
.pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { padding: 8px 14px; border-radius: 6px; border: 1px solid rgba(0,61,26,.15); color: var(--green-mid); text-decoration: none; font-size: .88rem; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--green-mid); color: #fff; }

/* ── 页脚 ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { font-family: 'Noto Serif SC', serif; font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 14px; }
.footer-desc { font-size: .84rem; line-height: 1.8; }
.footer-brand-col h4, .site-footer h4 { color: #fff; font-weight: 600; margin-bottom: 16px; font-size: .9rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .84rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; text-align: center; font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-keywords { margin: 14px auto 0; color: rgba(255,255,255,.2); font-size: .72rem; line-height: 1.9; max-width: 900px; }

/* ── 匹配赛程文字 ── */
.match-schedule-text { background: var(--gray-100); border-radius: 8px; padding: 16px; font-size: .88rem; color: var(--gray-600); line-height: 1.9; white-space: pre-wrap; }

/* ── 文章标签 ── */
.article-tags a { display: inline-block; background: var(--green-light); color: var(--green-mid); padding: 4px 12px; border-radius: 100px; font-size: .78rem; margin: 4px 2px; text-decoration: none; }
.article-tags a:hover { background: var(--green-mid); color: #fff; }

/* ── 响应式 ── */
@media(max-width:1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .countdown-card { display: none; }
    .card-grid-4 { grid-template-columns: repeat(2,1fr); }
    .team-grid { grid-template-columns: repeat(3,1fr); }
    .player-grid { grid-template-columns: repeat(2,1fr); }
    .merch-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .inner-layout { grid-template-columns: 1fr; }
    .inner-sidebar { position: static; }
    .history-stats { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 58px; left: 0; right: 0; background: rgba(0,20,8,.97); padding: 8px 0; }
    .nav-links.open { display: flex; }
    .nav-links li a, .nav-links a { height: auto; line-height: 1; padding: 14px 24px; }
    .nav-toggle { display: block; }
    .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
    .ticket-tiers, .live-grid, .city-grid, .travel-tips { grid-template-columns: 1fr; }
    .steps-grid, .team-grid, .player-grid, .article-grid { grid-template-columns: repeat(2,1fr); }
    .format-flow { flex-direction: column; }
    .format-stage { border-right: none; border-bottom: 1px solid var(--green-light); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .merch-grid { grid-template-columns: repeat(2,1fr); }
    .history-stats { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:480px) {
    .steps-grid, .player-grid, .article-grid, .team-grid { grid-template-columns: 1fr; }
    .merch-grid { grid-template-columns: 1fr; }
    .history-stats { grid-template-columns: 1fr 1fr; }
}
[id] { scroll-margin-top: 70px; }

/* ─────────────────────────────────────────
   注册 CTA 组件样式
───────────────────────────────────────── */

/* 英雄区横幅 */
.cta-hero-banner { background: linear-gradient(135deg,var(--green-deep),#001a0a); border-radius: var(--radius); padding: 36px; margin-top: 48px; border: 1px solid rgba(0,168,69,.3); }
.cta-hero-inner  { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-hero-badge  { display: inline-block; background: var(--gold); color: var(--dark); padding: 4px 12px; border-radius: 100px; font-size: .75rem; font-weight: 700; margin-bottom: 12px; }
.cta-hero-title  { font-family: 'Noto Serif SC', serif; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.cta-hero-desc   { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.7; margin-bottom: 16px; }
.cta-hero-perks  { list-style: none; }
.cta-hero-perks li { color: rgba(255,255,255,.8); font-size: .84rem; padding: 4px 0; }
.cta-hero-right  { text-align: center; }
.cta-btn-hero    { display: inline-block; background: var(--gold); color: var(--dark); padding: 16px 32px; border-radius: 10px; font-size: 1rem; font-weight: 700; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(240,180,41,.4); white-space: nowrap; }
.cta-btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,180,41,.5); }
.cta-hero-note   { color: rgba(255,255,255,.5); font-size: .76rem; margin-top: 10px; }
.cta-trust-badges { display: flex; gap: 10px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.cta-trust-badges span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); padding: 3px 10px; border-radius: 100px; font-size: .72rem; }

/* 侧边栏卡片 */
.cta-sidebar-card  { background: linear-gradient(160deg, var(--green-deep), #001a0a) !important; border: 1px solid rgba(0,168,69,.3) !important; }
.cta-sidebar-card h3 { color: var(--gold) !important; border-bottom-color: rgba(240,180,41,.2) !important; }
.cta-sidebar-icon  { font-size: 2.5rem; text-align: center; margin-bottom: 12px; }
.cta-sidebar-title { font-family: 'Noto Serif SC', serif; font-size: 1rem; font-weight: 700; color: #fff !important; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1) !important; padding-bottom: 10px; }
.cta-sidebar-list  { list-style: none; margin-bottom: 16px; }
.cta-sidebar-list li { color: rgba(255,255,255,.75); font-size: .84rem; padding: 5px 0; }
.cta-btn-sidebar   { display: block; background: var(--gold); color: var(--dark); text-align: center; padding: 12px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: .88rem; transition: transform .15s; }
.cta-btn-sidebar:hover { transform: translateY(-1px); }
.cta-sidebar-note  { text-align: center; color: rgba(255,255,255,.45); font-size: .72rem; margin-top: 8px; }

/* 文章末尾条 */
.cta-article-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--green-light); border: 1px solid rgba(0,168,69,.3); border-radius: var(--radius); padding: 20px 24px; margin-top: 32px; }
.cta-af-left { display: flex; align-items: center; gap: 16px; flex: 1; }
.cta-af-icon { font-size: 2rem; flex-shrink: 0; }
.cta-af-left strong { color: var(--green-deep); font-size: .95rem; display: block; margin-bottom: 4px; }
.cta-af-left p { color: var(--gray-600); font-size: .84rem; margin: 0; }
.cta-btn-af  { flex-shrink: 0; background: var(--green-mid); color: #fff; padding: 12px 22px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: .88rem; white-space: nowrap; transition: background .2s; }
.cta-btn-af:hover { background: var(--green-deep); }

/* 全宽区块 */
.cta-fullwidth-section { position: relative; padding: 80px 0; background: var(--green-deep); overflow: hidden; text-align: center; }
.cta-fullwidth-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,168,69,.15) 0%, transparent 70%); }
.cta-fullwidth-inner { position: relative; z-index: 2; }
.cta-fw-emoji { font-size: 3rem; margin-bottom: 16px; }
.cta-fw-title { font-family: 'Noto Serif SC', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-fw-desc  { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 560px; margin: 0 auto 32px; line-height: 1.8; }
.cta-fw-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; }
.cta-btn-fw  { display: inline-block; background: var(--gold); color: var(--dark); padding: 16px 36px; border-radius: 10px; font-size: 1.05rem; font-weight: 700; text-decoration: none; box-shadow: 0 4px 24px rgba(240,180,41,.4); transition: transform .2s, box-shadow .2s; }
.cta-btn-fw:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,180,41,.5); }
.cta-fw-note { color: rgba(255,255,255,.6); font-size: .88rem; }
.cta-fw-note strong { color: var(--gold); }
.cta-fw-perks { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.cta-fw-perk  { display: flex; align-items: flex-start; gap: 12px; text-align: left; }
.cta-fw-perk > span { font-size: 1.6rem; flex-shrink: 0; }
.cta-fw-perk strong { display: block; color: #fff; font-size: .92rem; margin-bottom: 4px; }
.cta-fw-perk p { color: rgba(255,255,255,.55); font-size: .8rem; margin: 0; }

/* 浮动条 */
.cta-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--green-deep); border-top: 2px solid var(--green-bright); padding: 12px 0; box-shadow: 0 -4px 20px rgba(0,0,0,.3); }
.cta-sticky-inner { display: flex; align-items: center; justify-content: center; gap: 20px; }
.cta-sticky-text { color: rgba(255,255,255,.85); font-size: .88rem; }
.cta-btn-sticky  { background: var(--gold); color: var(--dark); padding: 9px 20px; border-radius: 6px; font-weight: 700; text-decoration: none; font-size: .88rem; }
.cta-sticky-close { background: none; border: none; color: rgba(255,255,255,.5); font-size: 1rem; cursor: pointer; padding: 4px 8px; margin-left: 8px; }

/* ─── 404 样式 ─── */
.error-404-hero { position: relative; background: linear-gradient(155deg, var(--green-deep), #001a0a); padding: 100px 0; text-align: center; overflow: hidden; }
.error-bg-num   { position: absolute; font-family: 'Noto Serif SC', serif; font-size: 20rem; font-weight: 900; color: rgba(255,255,255,.03); top: 50%; left: 50%; transform: translate(-50%,-50%); line-height: 1; pointer-events: none; white-space: nowrap; }
.error-inner    { position: relative; z-index: 2; }
.error-ball     { font-size: 4rem; margin-bottom: 16px; animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.error-title    { font-family: 'Noto Serif SC', serif; font-size: 2.4rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.error-sub      { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 32px; line-height: 1.8; }
.error-search   { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }
.error-search-input { flex: 1; padding: 12px 16px; border: none; border-radius: 8px 0 0 8px; font-size: .95rem; outline: none; }
.error-search-btn   { background: var(--gold); color: var(--dark); border: none; padding: 12px 20px; border-radius: 0 8px 8px 0; font-weight: 700; cursor: pointer; white-space: nowrap; }
.error-search-btn:hover { background: #e0a020; }

/* ─── 搜索结果 ─── */
.search-results-list { display: flex; flex-direction: column; gap: 0; }
.search-result-item  { border-bottom: 1px solid var(--green-light); padding: 20px 0; }
.search-result-item:last-child { border-bottom: none; }
.search-result-link  { text-decoration: none; color: inherit; display: block; }
.search-result-link:hover .article-title { color: var(--green-bright); }

/* ─── 分组页面 ─── */
.group-letter-badge { width: 72px; height: 72px; background: var(--gold); color: var(--dark); font-family: 'Noto Serif SC', serif; font-size: 2.8rem; font-weight: 900; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 16px rgba(240,180,41,.4); }
.group-letter-sm    { width: 48px; height: 48px; background: var(--green-mid); color: #fff; font-family: 'Noto Serif SC', serif; font-size: 1.6rem; font-weight: 900; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.group-switcher { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.group-switcher-btn { padding: 6px 14px; border-radius: 6px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); font-size: .82rem; text-decoration: none; transition: all .2s; font-weight: 600; }
.group-switcher-btn:hover, .group-switcher-btn.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.group-block-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.schedule-table tr.qualify td:first-child { border-left: 3px solid var(--green-bright); }
.sidebar-item-active { background: var(--green-light); font-weight: 700; color: var(--green-deep) !important; }

/* ─── 响应式补充 ─── */
@media(max-width:768px) {
    .cta-hero-inner { grid-template-columns: 1fr; }
    .cta-fw-perks   { grid-template-columns: repeat(2,1fr); }
    .cta-article-footer { flex-direction: column; text-align: center; }
    .cta-sticky-text { display: none; }
    .group-switcher { gap: 6px; }
}
@media(max-width:480px) {
    .cta-fw-perks { grid-template-columns: 1fr; }
    .error-bg-num { font-size: 10rem; }
}


/* ═══════════════════════════════════════════
   导航注册按钮样式
   桌面：菜单最右侧
   手机：Logo 右侧，汉堡菜单左边（同一行）
═══════════════════════════════════════════ */

/* ── 桌面端注册按钮（菜单最右侧） ── */
.nav-register-desktop-item {
    display: flex !important;
    align-items: center;
    padding: 0 4px;
}
.nav-register-desktop-btn {
    display: inline-block !important;
    font-size: .82rem !important;
    padding: 7px 18px !important;
    border-radius: 6px !important;
    height: auto !important;
    line-height: 1.5 !important;
    white-space: nowrap;
    text-decoration: none !important;
    animation: wc26-flash 1.6s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(240,180,41,.45);
    transition: transform .15s;
    cursor: pointer;
    border: none;
}
.nav-register-desktop-btn:hover { transform: scale(1.05); opacity: .9; }
/* 防止 .nav-links a 白色覆盖桌面按钮 */
li.nav-register-desktop-item a.nav-register-desktop-btn {
    color: inherit !important;
    background: inherit !important;
    height: auto !important;
    line-height: 1.5 !important;
    padding: 7px 18px !important;
}

/* ── 手机端右侧容器（注册按钮 + 汉堡，同行） ── */
.nav-right-mobile {
    display: none;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}
/* 手机端注册按钮 - 紧凑单行，Logo 右、汉堡左 */
.nav-register-mobile-btn {
    display: inline-flex;
    align-items: center;
    font-size: .72rem !important;
    padding: 5px 10px !important;
    border-radius: 5px;
    white-space: nowrap;
    text-decoration: none !important;
    line-height: 1.3 !important;
    animation: wc26-flash 1.6s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(240,180,41,.4);
    font-weight: 700;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── 闪烁动画 ── */
@keyframes wc26-flash {
    0%,100% { box-shadow: 0 0 8px rgba(240,180,41,.4);  opacity: 1; }
    50%      { box-shadow: 0 0 22px rgba(240,180,41,.9); opacity: .9; }
}

/* ── 移动端响应式 ── */
@media (max-width: 768px) {
    /* 桌面菜单和桌面注册项隐藏 */
    .nav-register-desktop-item { display: none !important; }

    /* nav-inner：logo 左，右侧容器（注册+汉堡）右，单行 */
    .nav-inner {
        flex-wrap: nowrap !important;
        align-items: center;
    }
    .logo { flex: 1; min-width: 0; }

    /* 显示手机右侧容器 */
    .nav-right-mobile {
        display: flex !important;
        flex-shrink: 0;
    }

    /* 手机端汉堡按钮在右侧容器内 */
    .nav-toggle {
        /* 保持正常显示，在 nav-right-mobile 内排列 */
    }

    /* 展开的菜单在导航栏下方全宽显示 */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0,20,8,.97);
        flex-direction: column;
        padding: 4px 0 8px;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links li a, .nav-links a {
        height: auto !important;
        line-height: 1 !important;
        padding: 13px 24px !important;
    }
}
