/*
Theme Name: HTH Sport 华体会体育
Theme URI: https://www.hthuati.com
Author: HTH Sport
Description: 华体会体育官方WordPress主题，支持后台写文章自动同步资讯页面
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: hth-sport
*/

/* ─── RESET & ROOT ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --copper:       #B8854A;
  --copper-light: #C99966;
  --copper-dark:  #946838;
  --copper-pale:  #E8CEAB;
  --copper-dim:   #B89870;
  --bg:           #FAF7F2;
  --bg-dark:      #F2EDE4;
  --bg-card:      #FFFFFF;
  --bg-card2:     #F7F2EA;
  --border:       rgba(184,133,74,0.18);
  --border-hi:    rgba(184,133,74,0.40);
  --text:         #2A2018;
  --text-muted:   #6B5B4A;
  --text-dim:     #9A8A78;
  --red:          #B84038;
  --red-dark:     #8C2E28;
  --green:        #4E8C5A;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Noto Serif SC', serif; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(184,133,74,0.06);
  height: 70px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; height: 100%; }
.logo-img { height: 40px; width: auto; max-width: 180px; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }
.nav-links a {
  padding: 8px 18px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); border-radius: 4px;
  transition: color .2s, background .2s; white-space: nowrap; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--copper-dark); background: rgba(184,133,74,0.08); }
.nav-links a.current-menu-item,
.nav-links a.active { color: var(--copper-dark); background: rgba(184,133,74,0.12); font-weight: 600; }

/* ─── BANNER ──────────────────────────────────────── */
.banner {
  margin-top: 70px; width: 100%; overflow: hidden;
  background: var(--bg-dark); border-bottom: 1px solid var(--border);
}
.banner img { width: 100%; height: auto; display: block; object-fit: cover; }

/* ─── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
section { padding: 84px 0; }
.section-alt { background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--copper-dark); text-transform: uppercase;
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-tag::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--copper); }
h2 { font-family: 'Noto Serif SC', serif; font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; line-height: 1.2; margin-bottom: 14px; color: var(--text); }
h2 .accent { background: linear-gradient(135deg, var(--copper-dark), var(--copper)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 580px; line-height: 1.85; margin-bottom: 48px; }
.accent { background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 50%, var(--copper-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--copper-dark), var(--copper));
  color: #fff; padding: 14px 34px; border-radius: 3px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.4px;
  transition: opacity .2s, transform .15s; display: inline-block;
  box-shadow: 0 4px 14px rgba(184,133,74,0.25);
}
.btn-primary:hover { opacity: .92; transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.6); color: var(--copper-dark);
  padding: 14px 34px; border-radius: 3px;
  font-size: 15px; font-weight: 500; letter-spacing: 0.4px;
  border: 1px solid var(--border-hi); transition: background .2s; display: inline-block;
}
.btn-outline:hover { background: rgba(184,133,74,0.10); }
.btn-copper {
  background: linear-gradient(135deg, var(--copper-dark), var(--copper-light));
  color: #fff; padding: 14px 40px; border-radius: 3px;
  font-size: 16px; font-weight: 700; white-space: nowrap;
  transition: opacity .2s; display: inline-block;
  box-shadow: 0 4px 14px rgba(184,133,74,0.30);
}
.btn-copper:hover { opacity: .92; }

/* ─── HERO (首页) ─────────────────────────────────── */
.hero {
  padding: 70px 0 90px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 80% at 75% 35%, rgba(184,133,74,0.08) 0%, transparent 65%),
              radial-gradient(ellipse 40% 50% at 15% 75%, rgba(184,133,74,0.05) 0%, transparent 55%),
              linear-gradient(150deg, #FFFBF4 0%, #FAF7F2 55%, #F5EFE5 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,133,74,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,133,74,0.04) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.hero-glow { position: absolute; top: -150px; right: -80px; width: 650px; height: 650px; background: radial-gradient(circle, rgba(184,133,74,0.10) 0%, transparent 68%); pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 36px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-hi); color: var(--copper-dark); font-size: 13px; font-weight: 500;
  padding: 7px 16px; border-radius: 3px; margin-bottom: 28px; letter-spacing: 0.5px;
  background: rgba(255,255,255,0.6);
}
.hero-badge .badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--copper); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
h1 { font-family: 'Noto Serif SC', serif; font-size: clamp(34px, 5.5vw, 68px); font-weight: 900; line-height: 1.18; margin-bottom: 22px; letter-spacing: -0.5px; color: var(--text); }
.hero-sub { font-size: 16px; color: var(--text-muted); max-width: 500px; margin-bottom: 40px; line-height: 1.85; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual img { width: 100%; height: auto; max-width: 560px; display: block; border-radius: 8px; }

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 32px 24px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Noto Serif SC', serif; font-size: 38px; font-weight: 900; color: var(--copper-dark); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ─── SPORT DETAIL CARDS ──────────────────────────── */
.sport-detail-list { display: flex; flex-direction: column; gap: 24px; }
.sport-detail { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); transition: border-color .2s, transform .2s, box-shadow .25s; }
.sport-detail:hover { border-color: var(--border-hi); box-shadow: 0 8px 24px rgba(184,133,74,0.10); }
.sport-detail-header { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sport-detail-icon { width: 64px; height: 64px; border-radius: 12px; background: linear-gradient(135deg, rgba(184,133,74,0.18), rgba(184,133,74,0.06)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; padding: 8px; }
.sport-detail-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sport-detail-title h3 { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.sport-detail-sub { font-size: 13px; color: var(--text-muted); }
.sport-detail-desc { font-size: 14.5px; line-height: 1.85; color: var(--text-muted); margin-bottom: 18px; }
.sport-detail-leagues { display: flex; flex-wrap: wrap; gap: 8px; }
.league-chip { padding: 6px 14px; background: var(--bg-card2); border: 1px solid var(--border); border-radius: 999px; color: var(--text-muted); font-size: 12.5px; font-weight: 500; transition: all .2s; }
.league-chip:hover { background: rgba(184,133,74,0.10); border-color: var(--border-hi); color: var(--copper-dark); }

/* ─── ABOUT / PILLARS ─────────────────────────────── */
.about-wrap { display: grid; grid-template-columns: 5fr 7fr; gap: 36px; align-items: start; }
.about-intro { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.about-intro p { font-size: 14.5px; line-height: 1.9; color: var(--text-muted); margin-bottom: 14px; }
.about-intro p:last-child { margin-bottom: 0; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pillar { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 22px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); transition: border-color .2s, transform .25s, box-shadow .25s; }
.pillar:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(184,133,74,0.10); }
.pillar-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(184,133,74,0.12); color: var(--copper); display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 14px; }
.pillar h4 { font-family: 'Noto Serif SC', serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pillar p { font-size: 13px; line-height: 1.7; color: var(--text-muted); }

/* ─── APP SECTION ─────────────────────────────────── */
.app-overview { display: grid; grid-template-columns: 7fr 5fr; gap: 32px; align-items: start; margin-bottom: 50px; }
.app-overview-text h3, .app-features-title { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.app-features-title { margin-top: 8px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.app-overview-text p { font-size: 14.5px; line-height: 1.9; color: var(--text-muted); margin-bottom: 14px; }
.app-specs { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 8px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-bottom: 1px solid var(--border); }
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: 13.5px; color: var(--text-muted); font-weight: 500; }
.spec-value { font-size: 14px; color: var(--text); font-weight: 600; text-align: right; }
.app-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-bottom: 44px; }
.app-feature { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 22px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); transition: border-color .2s, transform .25s, box-shadow .25s; }
.app-feature:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(184,133,74,0.10); }
.app-feature-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(184,133,74,0.12); color: var(--copper); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.app-feature h4 { font-family: 'Noto Serif SC', serif; font-size: 15.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.app-feature p { font-size: 13px; line-height: 1.7; color: var(--text-muted); }
.app-cta-card { background: linear-gradient(135deg, var(--copper), var(--copper-dark)); border-radius: 14px; padding: 32px 36px; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; box-shadow: 0 8px 24px rgba(184,133,74,0.22); }
.app-cta-text h3 { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.app-cta-text p { font-size: 14px; color: rgba(255,255,255,0.92); }
.app-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: #fff; color: var(--copper-dark); border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform .2s, box-shadow .2s; }
.app-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.15); }
.app-btn i { font-size: 18px; }

/* ─── NEWS CARDS (首页) ───────────────────────────── */
.news-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 24px; }
.news-featured { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.news-featured-img { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(135deg, #F2E8D6 0%, #E8D6B8 100%); overflow: hidden; }
.news-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.news-featured-img .icon-large { font-size: 64px; color: rgba(184,133,74,0.55); }
.news-cat { position: absolute; top: 16px; left: 16px; background: var(--copper-dark); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 2px; letter-spacing: 1px; }
.news-featured-body { padding: 24px; }
.news-featured-title { font-size: 17px; font-weight: 700; line-height: 1.5; margin-bottom: 10px; color: var(--text); }
.news-featured-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.news-meta { display: flex; gap: 18px; font-size: 12px; color: var(--text-dim); flex-wrap: wrap; }
.news-meta span { display: flex; align-items: center; gap: 5px; }
.news-meta i { color: var(--copper); }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; margin-bottom: 10px; transition: border-color .2s, background .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.news-item:last-child { margin-bottom: 0; }
.news-item:hover { border-color: var(--border-hi); background: var(--bg-card2); box-shadow: 0 4px 12px rgba(184,133,74,0.08); }
.news-item-icon { width: 44px; height: 44px; border-radius: 4px; flex-shrink: 0; background: rgba(184,133,74,0.10); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--copper-dark); overflow: hidden; }
.news-item-icon img { width: 100%; height: 100%; object-fit: cover; }
.news-item-title { font-size: 14px; font-weight: 600; line-height: 1.45; margin-bottom: 5px; color: var(--text); }
.news-item-time { font-size: 12px; color: var(--text-muted); }

/* ─── FEATURES GRID ───────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 30px 24px; transition: border-color .2s, transform .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.feature-card:hover { border-color: var(--border-hi); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,133,74,0.10); }
.feature-icon { width: 52px; height: 52px; border-radius: 6px; background: rgba(184,133,74,0.10); border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--copper-dark); margin-bottom: 18px; }
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 1100px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.03); transition: border-color .2s, box-shadow .25s; }
.faq-item:hover { border-color: var(--border-hi); }
.faq-item.open { border-color: var(--border-hi); box-shadow: 0 6px 20px rgba(184,133,74,0.10); }
.faq-q { width: 100%; background: transparent; border: none; padding: 20px 22px; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; text-align: left; font-family: 'Noto Serif SC', serif; font-size: 15px; font-weight: 700; color: var(--text); }
.faq-q-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; line-height: 1.5; }
.faq-q-text i { color: var(--copper); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.faq-q-icon { flex-shrink: 0; color: var(--text-dim); transition: transform .3s; margin-top: 3px; }
.faq-item.open .faq-q-icon { transform: rotate(180deg); color: var(--copper); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 22px 20px; }
.faq-a-inner { padding-top: 14px; border-top: 1px solid var(--border); font-size: 14px; line-height: 1.9; color: var(--text-muted); }
.faq-a-inner p { margin-bottom: 8px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--text); font-weight: 600; }

/* ─── CTA BANNER ──────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, #FFF8EB 0%, #F7EAD2 50%, #FFF8EB 100%); border: 1px solid var(--border-hi); border-radius: 8px; padding: 64px 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; box-shadow: 0 4px 18px rgba(184,133,74,0.08); }
.cta-title { font-family: 'Noto Serif SC', serif; font-size: 30px; font-weight: 900; margin-bottom: 10px; color: var(--text); }
.cta-desc { font-size: 15px; color: var(--text-muted); }

/* ─── NEWS PAGE ───────────────────────────────────── */
.page-header { padding: 60px 0 50px; background: radial-gradient(circle at 20% 50%, rgba(184,133,74,0.06), transparent 60%), var(--bg); border-bottom: 1px solid var(--border); }
.page-tag { display: inline-block; padding: 6px 14px; background: rgba(184,133,74,0.10); border: 1px solid rgba(184,133,74,0.28); color: var(--copper); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px; margin-bottom: 16px; }
.page-desc { font-size: 16px; color: var(--text-muted); max-width: 600px; line-height: 1.85; margin-top: 12px; }
.search-bar { display: flex; gap: 0; max-width: 500px; margin-top: 28px; border: 1px solid var(--border-hi); border-radius: 5px; overflow: hidden; background: #fff; }
.search-input { flex: 1; padding: 12px 16px; border: none; outline: none; font-size: 14px; font-family: 'Noto Sans SC', sans-serif; color: var(--text); background: transparent; }
.search-btn { padding: 12px 20px; background: linear-gradient(135deg, var(--copper-dark), var(--copper)); color: #fff; border: none; cursor: pointer; font-size: 14px; font-weight: 600; font-family: 'Noto Sans SC', sans-serif; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.tabs-wrap { overflow-x: auto; }
.tabs { display: flex; gap: 0; padding: 12px 0; min-width: max-content; }
.tab-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 20px; background: transparent; border: none; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--text-muted); border-radius: 5px; transition: all .2s; white-space: nowrap; font-family: 'Noto Sans SC', sans-serif; }
.tab-btn:hover { color: var(--copper); background: rgba(184,133,74,0.08); }
.tab-btn.active { color: var(--copper-dark); background: rgba(184,133,74,0.12); font-weight: 700; }
.tab-btn i { font-size: 13px; }
.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; padding: 36px 0 60px; }
.news-big { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.news-big-img { height: 240px; background: linear-gradient(135deg, #F2E8D6 0%, #E8D6B8 100%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-big-img img { width: 100%; height: 100%; object-fit: cover; }
.icon-xl { font-size: 72px; color: rgba(184,133,74,0.45); }
.news-big-cat, .news-big-hot { position: absolute; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 2px; letter-spacing: 0.8px; }
.news-big-cat { top: 16px; left: 16px; background: var(--copper-dark); color: #fff; }
.news-big-hot { top: 16px; right: 16px; background: #B84038; color: #fff; }
.news-big-body { padding: 24px 28px; }
.tag-copper { display: inline-block; padding: 4px 10px; background: rgba(184,133,74,0.12); border: 1px solid rgba(184,133,74,0.28); color: var(--copper-dark); font-size: 11px; font-weight: 700; border-radius: 2px; letter-spacing: 0.5px; margin-bottom: 12px; }
.news-big-title { font-family: 'Noto Serif SC', serif; font-size: 20px; font-weight: 900; line-height: 1.45; color: var(--text); margin-bottom: 10px; }
.news-big-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.news-big-meta { display: flex; gap: 20px; font-size: 12px; color: var(--text-dim); flex-wrap: wrap; }
.news-big-meta span { display: flex; align-items: center; gap: 5px; }
.news-big-meta i { color: var(--copper); }
.topic-section { margin-bottom: 28px; }
.topic-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.topic-title { display: flex; align-items: center; gap: 10px; }
.topic-icon { width: 32px; height: 32px; background: rgba(184,133,74,0.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--copper-dark); }
.topic-name { font-family: 'Noto Serif SC', serif; font-size: 17px; font-weight: 700; color: var(--text); }
.topic-more { font-size: 13px; color: var(--copper-dark); }
.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.topic-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 14px 16px; transition: border-color .2s, box-shadow .2s; }
.topic-card:hover { border-color: var(--border-hi); box-shadow: 0 4px 12px rgba(184,133,74,0.08); }
.topic-card-cat { font-size: 11px; font-weight: 700; color: var(--copper-dark); background: rgba(184,133,74,0.10); padding: 2px 8px; border-radius: 2px; display: inline-block; margin-bottom: 7px; letter-spacing: 0.5px; }
.topic-card-title { font-size: 13.5px; font-weight: 600; line-height: 1.5; color: var(--text); margin-bottom: 8px; }
.topic-card-time { font-size: 11px; color: var(--text-dim); display: flex; align-items: center; gap: 4px; }
.news-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.news-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.news-card:hover { border-color: var(--border-hi); box-shadow: 0 6px 16px rgba(184,133,74,0.10); }
.news-card-img { height: 90px; background: linear-gradient(135deg, #F2E8D6 0%, #E8D6B8 100%); display: flex; align-items: center; justify-content: center; font-size: 32px; color: rgba(184,133,74,0.5); position: relative; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-cat { position: absolute; bottom: 6px; left: 8px; background: var(--copper-dark); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 2px; }
.news-card-body { padding: 12px 14px; }
.news-card-title { font-size: 13px; font-weight: 600; line-height: 1.5; color: var(--text); margin-bottom: 8px; }
.news-card-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-dim); }
.pagination { display: flex; gap: 6px; align-items: center; margin-top: 36px; justify-content: center; flex-wrap: wrap; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 5px; background: var(--bg-card); cursor: pointer; font-size: 14px; color: var(--text-muted); transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--copper-dark); color: #fff; border-color: var(--copper-dark); }
.page-numbers { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.page-numbers a, .page-numbers span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 5px; background: var(--bg-card); font-size: 14px; color: var(--text-muted); transition: all .2s; }
.page-numbers a:hover, .page-numbers span.current { background: var(--copper-dark); color: #fff; border-color: var(--copper-dark); }

/* ─── SIDEBAR ─────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.widget-title { padding: 14px 18px; background: var(--bg-dark); border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.widget-title i { color: var(--copper); }
.live-ticker { padding: 8px 0; }
.ticker-item { padding: 10px 18px; border-bottom: 1px solid var(--border); }
.ticker-item:last-child { border-bottom: none; }
.ticker-top { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-dim); margin-bottom: 6px; }
.ticker-league { color: var(--copper-dark); font-weight: 700; }
.ticker-time { background: #B84038; color: #fff; padding: 1px 6px; border-radius: 2px; font-weight: 700; }
.ticker-score { display: flex; align-items: center; gap: 8px; }
.ticker-team { flex: 1; font-size: 13px; font-weight: 600; color: var(--text); }
.ticker-team:last-child { text-align: right; }
.ticker-num { font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 900; color: var(--copper-dark); white-space: nowrap; flex-shrink: 0; }
.hot-topics { padding: 8px 0; }
.hot-item { padding: 10px 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); transition: background .15s; }
.hot-item:last-child { border-bottom: none; }
.hot-item:hover { background: var(--bg-dark); }
.hot-rank { width: 22px; height: 22px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; background: rgba(184,133,74,0.12); color: var(--copper-dark); flex-shrink: 0; }
.hot-rank.top { background: var(--copper-dark); color: #fff; }
.hot-text { font-size: 13px; font-weight: 500; color: var(--text); }
.upcoming-list { padding: 8px 0; }
.upcoming-item { padding: 12px 18px; border-bottom: 1px solid var(--border); }
.upcoming-item:last-child { border-bottom: none; }
.upcoming-league { font-size: 11px; font-weight: 700; color: var(--copper-dark); margin-bottom: 3px; }
.upcoming-match { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.upcoming-time { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.sidebar-cta { background: linear-gradient(135deg, var(--copper-dark), var(--copper)); border-radius: 8px; padding: 24px 20px; text-align: center; box-shadow: 0 6px 18px rgba(184,133,74,0.22); }
.sidebar-cta-title { font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sidebar-cta-desc { font-size: 13px; color: rgba(255,255,255,0.88); margin-bottom: 18px; line-height: 1.6; }
.btn-cta { display: inline-block; background: #fff; color: var(--copper-dark); padding: 10px 28px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: transform .2s; }
.btn-cta:hover { transform: translateY(-2px); }

/* ─── SINGLE POST ─────────────────────────────────── */
.single-wrap { max-width: 820px; margin: 0 auto; padding: 60px 36px; }
.single-cat-tag { display: inline-block; padding: 4px 12px; background: rgba(184,133,74,0.12); border: 1px solid rgba(184,133,74,0.28); color: var(--copper-dark); font-size: 11px; font-weight: 700; border-radius: 2px; margin-bottom: 16px; letter-spacing: 0.5px; }
.single-title { font-family: 'Noto Serif SC', serif; font-size: clamp(22px, 4vw, 34px); font-weight: 900; line-height: 1.35; color: var(--text); margin-bottom: 16px; }
.single-meta { display: flex; gap: 20px; font-size: 13px; color: var(--text-dim); flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.single-meta span { display: flex; align-items: center; gap: 5px; }
.single-meta i { color: var(--copper); }
.single-thumb { width: 100%; border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.single-thumb img { width: 100%; height: auto; max-height: 420px; object-fit: cover; }
.single-content { font-size: 16px; line-height: 1.95; color: var(--text-muted); }
.single-content h2, .single-content h3 { font-family: 'Noto Serif SC', serif; color: var(--text); margin: 32px 0 14px; }
.single-content p { margin-bottom: 18px; }
.single-content img { border-radius: 6px; margin: 24px 0; }
.single-content a { color: var(--copper-dark); text-decoration: underline; }
.single-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.single-nav a { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 4px; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; font-size: 14px; color: var(--text-muted); transition: border-color .2s; }
.single-nav a:hover { border-color: var(--border-hi); }
.single-nav a strong { font-size: 14px; color: var(--text); font-weight: 600; }
.single-nav .nav-prev { text-align: left; }
.single-nav .nav-next { text-align: right; }
.back-to-news { display: inline-flex; align-items: center; gap: 8px; color: var(--copper-dark); font-size: 14px; font-weight: 600; margin-bottom: 32px; }
.back-to-news:hover { text-decoration: underline; }

/* ─── DOWNLOAD PAGE ───────────────────────────────── */
.download-hero { padding: 70px 0 90px; display: flex; align-items: center; background: radial-gradient(ellipse 65% 75% at 70% 40%, rgba(184,133,74,0.08) 0%, transparent 65%), radial-gradient(ellipse 35% 45% at 10% 75%, rgba(184,133,74,0.05) 0%, transparent 55%), linear-gradient(150deg, #FFFBF4 0%, #FAF7F2 55%, #F5EFE5 100%); position: relative; overflow: hidden; }
.download-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,133,74,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,133,74,0.04) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }
.download-hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; position: relative; z-index: 2; }
.dh-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--copper-dark); text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.dh-tag::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--copper); }
.dh-desc { font-size: 16px; color: var(--text-muted); max-width: 480px; margin-bottom: 40px; line-height: 1.85; }
.download-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.dl-btn { display: inline-flex; align-items: center; gap: 14px; padding: 14px 24px; border-radius: 5px; font-size: 14px; font-weight: 600; cursor: pointer; transition: opacity .2s, transform .15s, box-shadow .2s; }
.dl-btn:hover { opacity: .92; transform: translateY(-1px); }
.dl-btn-ios { background: #2A2018; color: #fff; border: 1px solid #2A2018; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.dl-btn-android { background: linear-gradient(135deg, var(--copper-dark), var(--copper)); color: #fff; box-shadow: 0 4px 14px rgba(184,133,74,0.25); }
.dl-btn-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.dl-text-small { font-size: 11px; opacity: 0.85; letter-spacing: 0.5px; margin-bottom: 2px; }
.dl-text-big { font-size: 15px; font-weight: 700; }
.dl-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.dl-meta-item { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.dl-meta-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.phone-mockup { display: flex; justify-content: center; align-items: center; }
.phone-frame { width: 220px; border-radius: 36px; background: #2A2018; border: 2px solid var(--copper-dark); box-shadow: 0 0 60px rgba(184,133,74,0.18), 0 32px 64px rgba(42,32,24,0.18); overflow: hidden; padding: 16px 12px 10px; }
.phone-notch { width: 60px; height: 8px; background: #1A140F; border-radius: 4px; margin: 0 auto 14px; }
.phone-screen { background: #FAF7F2; border-radius: 16px; padding: 14px 12px; min-height: 340px; }
.ps-header { font-size: 10px; color: var(--copper-dark); letter-spacing: 1px; margin-bottom: 10px; font-weight: 700; }
.ps-score-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 10px; margin-bottom: 8px; }
.ps-teams { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.ps-score-num { font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 700; color: var(--copper-dark); }
.ps-time { font-size: 10px; color: var(--text-dim); }
.ps-divider { height: 1px; background: var(--border); margin: 12px 0; }
.ps-line { height: 7px; background: rgba(184,133,74,0.18); border-radius: 3px; margin-bottom: 6px; }
.ps-line.long { width: 90%; } .ps-line.mid { width: 65%; } .ps-line.short { width: 45%; }
.phone-home-bar { display: flex; justify-content: center; padding-top: 8px; }
.home-bar { width: 48px; height: 4px; background: var(--copper-dark); border-radius: 2px; opacity: 0.6; }
.version-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.version-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 20px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.02); transition: border-color .2s, box-shadow .2s; }
.version-card:hover { border-color: var(--border-hi); box-shadow: 0 6px 16px rgba(184,133,74,0.10); }
.version-icon { width: 38px; height: 38px; background: rgba(184,133,74,0.10); border: 1px solid var(--border-hi); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--copper-dark); flex-shrink: 0; }
.version-label { font-size: 11px; color: var(--text-muted); margin-bottom: 3px; }
.version-value { font-size: 14px; font-weight: 700; color: var(--text); }
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.platform-card { background: var(--bg-card); border: 1px solid rgba(184,133,74,0.25); border-radius: 8px; padding: 36px; box-shadow: 0 1px 3px rgba(0,0,0,0.02); transition: border-color .2s, box-shadow .2s; }
.platform-card:hover { box-shadow: 0 10px 28px rgba(184,133,74,0.10); }
.platform-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(184,133,74,0.10); border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--copper-dark); margin-bottom: 16px; }
.platform-title { font-family: 'Noto Serif SC', serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.platform-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.platform-specs { margin-bottom: 28px; }
.btn-dl { display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px; border-radius: 5px; font-size: 14px; font-weight: 700; cursor: pointer; transition: opacity .2s; }
.btn-dl:hover { opacity: .92; }
.btn-dl-ios { background: #2A2018; color: #fff; }
.btn-dl-android { background: linear-gradient(135deg, var(--copper-dark), var(--copper)); color: #fff; box-shadow: 0 4px 14px rgba(184,133,74,0.25); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 30px 22px; text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.step-card:hover { border-color: var(--border-hi); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,133,74,0.10); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--copper-dark), var(--copper)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif SC', serif; font-weight: 900; font-size: 17px; margin: 0 auto 16px; box-shadow: 0 4px 12px rgba(184,133,74,0.25); }
.step-icon-wrap { width: 48px; height: 48px; border-radius: 8px; background: rgba(184,133,74,0.10); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--copper-dark); margin: 0 auto 14px; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.tutorial-tabs { display: flex; gap: 0; margin-bottom: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; padding: 6px; max-width: 420px; margin-left: auto; margin-right: auto; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.tutorial-tab { flex: 1; padding: 12px 18px; background: transparent; border: none; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--text-muted); border-radius: 999px; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.tutorial-tab.active { background: linear-gradient(135deg, var(--copper-dark), var(--copper)); color: #fff; box-shadow: 0 4px 12px rgba(184,133,74,0.28); }
.tutorial-panel { display: none; } .tutorial-panel.active { display: block; }
.tutorial-steps { display: flex; flex-direction: column; gap: 18px; max-width: 920px; margin: 0 auto; }
.tut-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px 26px; display: flex; gap: 22px; align-items: flex-start; box-shadow: 0 2px 10px rgba(0,0,0,0.03); transition: border-color .2s, box-shadow .25s; }
.tut-step:hover { border-color: var(--border-hi); box-shadow: 0 8px 22px rgba(184,133,74,0.10); }
.tut-step-num { flex-shrink: 0; width: 44px; height: 44px; background: linear-gradient(135deg, var(--copper-dark), var(--copper)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif SC', serif; font-weight: 900; font-size: 18px; box-shadow: 0 4px 10px rgba(184,133,74,0.22); }
.tut-step-body { flex: 1; min-width: 0; }
.tut-step-title { font-family: 'Noto Serif SC', serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tut-step-title i { color: var(--copper); font-size: 16px; }
.tut-step-desc { font-size: 14px; line-height: 1.85; color: var(--text-muted); margin-bottom: 10px; }
.tut-step-desc:last-child { margin-bottom: 0; }
.tut-tip { margin-top: 10px; padding: 10px 14px; background: rgba(184,133,74,0.08); border-left: 3px solid var(--copper); border-radius: 4px; font-size: 13px; color: var(--copper-dark); line-height: 1.7; }
.tut-tip strong { color: var(--copper-dark); font-weight: 700; margin-right: 6px; }
.tut-warn { margin-top: 10px; padding: 10px 14px; background: rgba(184,64,56,0.08); border-left: 3px solid var(--red); border-radius: 4px; font-size: 13px; color: var(--red); line-height: 1.7; }
.tut-warn strong { color: var(--red); font-weight: 700; margin-right: 6px; }
.faq-wrap { max-width: 920px; margin: 0 auto; }
.install-subhead { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700; color: var(--text); text-align: center; margin: 56px 0 20px; padding-top: 36px; border-top: 1px solid var(--border); }
.install-subhead:first-of-type { margin-top: 40px; padding-top: 0; border-top: none; }
.app-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.app-feat { display: flex; gap: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 20px; transition: border-color .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.app-feat:hover { border-color: var(--border-hi); box-shadow: 0 6px 16px rgba(184,133,74,0.10); }
.app-feat-icon { width: 46px; height: 46px; background: rgba(184,133,74,0.10); border: 1px solid var(--border-hi); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--copper-dark); flex-shrink: 0; }
.app-feat-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.app-feat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── OFFICIAL PAGE ───────────────────────────────── */
.official-page-header { padding: 70px 0; background: radial-gradient(ellipse 60% 60% at 50% 60%, rgba(184,133,74,0.08) 0%, transparent 70%), linear-gradient(150deg, #FFFBF4 0%, #FAF7F2 60%, #F5EFE5 100%); border-bottom: 1px solid var(--border); text-align: center; }
.official-page-header .page-tag { display: inline-flex; justify-content: center; align-items: center; gap: 10px; }
.official-page-header .page-tag::before, .official-page-header .page-tag::after { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--copper); }
.register-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.register-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 40px; box-shadow: 0 4px 18px rgba(184,133,74,0.08); }
.form-title { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 900; margin-bottom: 6px; color: var(--text); }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.form-group input { width: 100%; background: var(--bg-card2); border: 1px solid var(--border); border-radius: 4px; padding: 12px 16px; color: var(--text); font-size: 14px; font-family: 'Noto Sans SC', sans-serif; transition: border-color .2s, background .2s; outline: none; }
.form-group input:focus { border-color: var(--copper); background: #fff; }
.form-group input::placeholder { color: var(--text-dim); }
.btn-form { width: 100%; background: linear-gradient(135deg, var(--copper-dark), var(--copper)); color: #fff; padding: 14px; border-radius: 4px; font-size: 16px; font-weight: 700; border: none; cursor: pointer; margin-top: 8px; font-family: 'Noto Sans SC', sans-serif; transition: opacity .2s; letter-spacing: 0.5px; box-shadow: 0 4px 14px rgba(184,133,74,0.25); }
.btn-form:hover { opacity: .92; }
.form-note { font-size: 12px; color: var(--text-dim); text-align: center; margin-top: 12px; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 18px; transition: border-color .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.benefit-item:hover { border-color: var(--border-hi); box-shadow: 0 6px 16px rgba(184,133,74,0.10); }
.benefit-icon { width: 42px; height: 42px; border-radius: 6px; background: rgba(184,133,74,0.10); border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--copper-dark); flex-shrink: 0; }
.benefit-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.benefit-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.member-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 36px 28px; text-align: center; position: relative; transition: transform .2s, border-color .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.member-card:hover { transform: translateY(-3px); border-color: var(--border-hi); box-shadow: 0 10px 28px rgba(184,133,74,0.12); }
.member-card.featured { border-color: var(--copper-dark); box-shadow: 0 6px 22px rgba(184,133,74,0.15); }
.member-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--copper-dark); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 18px; border-radius: 2px; white-space: nowrap; letter-spacing: 1px; }
.member-tier { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.15em; margin-bottom: 10px; text-transform: uppercase; }
.member-price { font-family: 'Noto Serif SC', serif; font-size: 44px; font-weight: 900; color: var(--copper-dark); line-height: 1; margin-bottom: 4px; }
.member-price span { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.member-period { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.member-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.member-features li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.member-features li i { color: var(--copper); margin-top: 2px; flex-shrink: 0; font-size: 12px; }
.btn-member { display: block; width: 100%; text-align: center; padding: 13px; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; letter-spacing: 0.5px; }
.btn-member-primary { background: linear-gradient(135deg, var(--copper-dark), var(--copper)); color: #fff; box-shadow: 0 4px 14px rgba(184,133,74,0.25); }
.btn-member-primary:hover { opacity: .92; }
.btn-member-outline { background: transparent; color: var(--text-muted); border: 1px solid var(--border-hi); }
.btn-member-outline:hover { border-color: var(--copper); color: var(--copper-dark); background: rgba(184,133,74,0.06); }
.intro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.intro-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 30px; transition: border-color .2s, transform .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.intro-card:hover { border-color: var(--border-hi); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,133,74,0.10); }
.intro-num { font-family: 'Noto Serif SC', serif; font-size: 50px; font-weight: 900; color: rgba(184,133,74,0.22); line-height: 1; margin-bottom: 14px; }
.intro-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.intro-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; }
.official-faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.official-faq-q { padding: 20px 24px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: color .2s; color: var(--text); background: none; border: none; width: 100%; text-align: left; font-family: 'Noto Sans SC', sans-serif; }
.official-faq-q:hover { color: var(--copper-dark); }
.faq-toggle { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; color: var(--copper-dark); font-size: 13px; flex-shrink: 0; transition: transform .25s, background .2s; }
.official-faq-q.open .faq-toggle { transform: rotate(45deg); background: rgba(184,133,74,0.10); }
.official-faq-a { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.85; display: none; }
.official-faq-a.show { display: block; }

/* ─── FOOTER ──────────────────────────────────────── */
footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo { height: 38px; max-width: 160px; margin-bottom: 14px; display: block; object-fit: contain; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.85; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--copper-dark); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-dim); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1200px) { .version-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 420px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; }
  .app-overview { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .news-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .topic-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; gap: 12px; }
  .logo-img { height: 32px; max-width: 130px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 6px 8px; font-size: 12px; letter-spacing: 0; }
  .hero-content { padding: 0 20px; }
  .container { padding: 0 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .cta-banner { padding: 40px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .download-hero-inner { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }
  .platform-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .version-grid { grid-template-columns: repeat(2, 1fr); }
  .register-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .news-cards { grid-template-columns: repeat(2, 1fr); }
  .single-wrap { padding: 40px 20px; }
}
@media (max-width: 540px) {
  .about-pillars { grid-template-columns: 1fr; }
  .news-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .stat-item { padding: 20px 12px; }
  .stat-num { font-size: 28px; }
  .app-cta-card { padding: 24px 20px; text-align: center; flex-direction: column; }
  .app-cta-buttons { justify-content: center; }
  .cta-banner { text-align: center; flex-direction: column; align-items: center; }
  .faq-grid { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tut-step { padding: 16px; gap: 12px; }
  .tut-step-num { width: 36px; height: 36px; font-size: 15px; }
}
