/* roulang page: index */
/* ===== 设计变量 ===== */
:root {
  --primary: #0a1a3c;
  --primary-dark: #050e24;
  --primary-deep: #030a18;
  --accent: #d4a843;
  --accent-light: #f0cf7f;
  --accent-hover: #c1952e;
  --bg-light: #f4f6fb;
  --bg-white: #ffffff;
  --bg-dark: #081226;
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-inverse: #f0f4fa;
  --border-soft: #e5e7eb;
  --border-light: rgba(255, 255, 255, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 8px 30px rgba(10, 26, 60, 0.08);
  --shadow-hover: 0 18px 44px rgba(10, 26, 60, 0.16);
  --shadow-nav: 0 14px 44px rgba(0, 0, 0, 0.32);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), background var(--transition); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; line-height: 1.25; font-weight: 800; }
p { margin: 0 0 1em; }

/* ===== 容器 ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== 浮动 Dock 导航 ===== */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}
.dock-nav {
  pointer-events: auto;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 14, 36, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-light);
  border-radius: 60px;
  padding: 10px 18px 10px 24px;
  box-shadow: var(--shadow-nav);
}
.dock-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.dock-logo .logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.45);
}
.dock-logo .logo-text { font-size: 16px; }
.dock-logo .logo-text .highlight { color: var(--accent); }
.dock-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dock-menu li a {
  display: block;
  padding: 10px 18px;
  border-radius: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all var(--transition);
}
.dock-menu li a:hover { color: #ffffff; background: rgba(255, 255, 255, 0.1); }
.dock-menu li a.active {
  color: var(--primary-dark);
  background: var(--accent);
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.45);
}
.dock-actions { display: flex; align-items: center; gap: 10px; }
.dock-search {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
}
.dock-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 13px;
  width: 76px;
  padding: 0;
}
.dock-search input::placeholder { color: rgba(255, 255, 255, 0.45); }
.dock-search i { font-size: 13px; }
.dock-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  padding: 6px 8px;
  line-height: 1;
}
.mobile-panel {
  display: none;
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 999;
  background: rgba(5, 14, 36, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-nav);
}
.mobile-panel.open { display: block; }
.mobile-panel ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-panel ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition);
}
.mobile-panel ul li a:hover { background: rgba(255, 255, 255, 0.08); }
.mobile-panel ul li a.active { background: var(--accent); color: var(--primary-dark); }
.mobile-panel .mobile-search {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 10px 16px;
}
.mobile-panel .mobile-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
}
.mobile-panel .mobile-search i { color: rgba(255, 255, 255, 0.6); }

/* ===== Hero 首屏 ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(3, 10, 24, 0.92), rgba(10, 26, 60, 0.78)), url('/assets/images/backpic/back-1.png') center/cover no-repeat;
  padding: 140px 24px 90px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(212, 168, 67, 0.18), transparent 55%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.16);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge i { font-size: 12px; }
.hero h1 {
  color: #ffffff;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero h1 .gold { color: var(--accent); }
.hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 2vw, 19px);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(212, 168, 67, 0.4);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 168, 67, 0.5);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-3px);
}
.hero-countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  min-width: 86px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.countdown-card .num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-card .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  letter-spacing: 1px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .value {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}
.hero-stat .desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ===== 通用板块 ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-white); }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(212, 168, 67, 0.12);
  padding: 6px 18px;
  border-radius: 40px;
}
.section-header h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 15px; margin-top: 8px; }
.section-dark .section-header h2 { color: #ffffff; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.6); }

/* ===== 核心说明 ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #1b355e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(10, 26, 60, 0.2);
}
.feature-card h3 { font-size: 19px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 0; }

/* ===== 分类入口 ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-hover); }
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(3, 10, 24, 0.85) 100%);
}
.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 34px 32px;
  width: 100%;
  color: #ffffff;
}
.cat-card-body h3 { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.cat-card-body h3 i { color: var(--accent); margin-right: 8px; }
.cat-card-body p { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin-bottom: 16px; }
.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  transition: gap var(--transition);
}
.cat-card-link:hover { gap: 16px; color: var(--accent-light); }

/* ===== 最新资讯 ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.news-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(212, 168, 67, 0.95);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.news-card-body { padding: 24px 24px 26px; }
.news-card-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}
.news-card-body h3 a:hover { color: var(--accent); }
.news-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
}
.news-meta i { margin-right: 6px; color: var(--accent); }
.news-read-more { color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.news-read-more:hover { gap: 10px; color: var(--accent); }
.empty-tip {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-soft);
  font-size: 15px;
  grid-column: 1 / -1;
}

/* ===== 赛事数据排行 ===== */
.rank-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  padding: 34px;
  max-width: 880px;
  margin: 0 auto;
}
.rank-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.rank-title h3 { font-size: 20px; font-weight: 800; color: var(--primary); margin: 0; }
.rank-title h3 i { color: var(--accent); margin-right: 8px; }
.rank-title .rank-tag {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 6px 16px;
  border-radius: 30px;
}
.rank-table { width: 100%; border-collapse: collapse; }
.rank-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 2px solid var(--border-soft);
  letter-spacing: 0.5px;
}
.rank-table td {
  padding: 14px;
  font-size: 15px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.rank-table tr:last-child td { border-bottom: none; }
.rank-table tr:hover td { background: #f9fafc; }
.rank-teams {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary);
}
.rank-teams .team-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1f3a68);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.rank-points {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 14px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

/* ===== 焦点赛事横向滚动 ===== */
.horizon-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.horizon-scroll::-webkit-scrollbar { height: 6px; }
.horizon-scroll::-webkit-scrollbar-thumb { background: var(--border-soft); border-radius: 6px; }
.horizon-scroll::-webkit-scrollbar-track { background: transparent; }
.horizon-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.horizon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.horizon-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.horizon-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.horizon-card:hover .horizon-card-img img { transform: scale(1.05); }
.horizon-card-img .stage-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(5, 14, 36, 0.8);
  backdrop-filter: blur(6px);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.horizon-card-body { padding: 20px 22px 24px; }
.horizon-card-body h3 { font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.horizon-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.horizon-card-body .match-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.horizon-card-body .match-meta i { color: var(--accent); margin-right: 4px; }

/* ===== 阶段 bracket ===== */
.bracket-section { position: relative; }
.bracket-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.bracket-col { text-align: center; }
.bracket-col-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bracket-match {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 14px;
  transition: background var(--transition), border-color var(--transition);
}
.bracket-match:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(212, 168, 67, 0.5); }
.bracket-match .team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}
.bracket-match .team .score { color: var(--accent); font-weight: 900; }
.bracket-match .team + .team { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.bracket-match .team.winner { color: var(--accent-light); }

/* ===== FAQ 手风琴 ===== */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10, 26, 60, 0.04);
  transition: box-shadow var(--transition);
}
.faq-item.active { box-shadow: var(--shadow-card); border-color: rgba(212, 168, 67, 0.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  gap: 16px;
}
.faq-q i {
  color: var(--accent);
  font-size: 12px;
  transition: transform var(--transition);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.faq-item.active .faq-a { display: block; }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, rgba(3, 10, 24, 0.92), rgba(10, 26, 60, 0.85)), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  padding: 90px 0;
  text-align: center;
  color: #ffffff;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.15), transparent 60%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
}
.cta-section h2 .gold { color: var(--accent); }
.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== 页脚 ===== */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}
.footer-brand .footer-logo .logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 16px;
}
.footer-brand .footer-logo .highlight { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.4); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== 响应式断点 ===== */
@media screen and (max-width: 1024px) {
  .dock-menu { display: none; }
  .dock-search { display: none; }
  .dock-toggle { display: block; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
}
@media screen and (max-width: 768px) {
  .container { padding: 0 18px; }
  .site-header { top: 12px; }
  .dock-nav { padding: 9px 14px 9px 18px; border-radius: 50px; }
  .dock-logo .logo-text { font-size: 15px; }
  .dock-logo .logo-icon { width: 34px; height: 34px; font-size: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: auto; padding: 120px 18px 70px; }
  .hero-countdown { gap: 8px; }
  .countdown-card { padding: 14px 18px; min-width: 72px; }
  .countdown-card .num { font-size: 26px; }
  .rank-wrap { padding: 22px; overflow-x: auto; }
  .rank-table { min-width: 620px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .bracket-wrap { grid-template-columns: 1fr; gap: 30px; }
  .horizon-card { flex: 0 0 280px; }
  .cta-section { padding: 64px 0; }
  .hero-actions .btn { padding: 12px 24px; font-size: 14px; }
}
@media screen and (max-width: 520px) {
  .dock-logo .logo-text { font-size: 14px; }
  .dock-logo .logo-icon { width: 30px; height: 30px; font-size: 13px; }
  .dock-nav { padding: 8px 12px 8px 16px; }
  .countdown-card { min-width: 62px; padding: 12px 14px; }
  .countdown-card .num { font-size: 22px; }
  .countdown-card .label { font-size: 11px; }
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .feature-card { padding: 28px 22px; }
  .cat-card { min-height: 240px; }
  .cat-card-body { padding: 24px 20px; }
  .news-card-body { padding: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
}

/* ===== 焦点状态 ===== */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(212, 168, 67, 0.6);
  outline-offset: 2px;
}

/* roulang page: article */
:root {
  --primary: #0d1b3e;
  --primary-dark: #070f24;
  --primary-light: #1a2a55;
  --accent: #e6b31e;
  --accent-light: #f5d061;
  --accent-dark: #c99700;
  --blue: #0066b3;
  --text: #eef3fc;
  --text-muted: #9fb0c7;
  --text-strong: #ffffff;
  --bg: #0a1224;
  --bg-section: #0d1a33;
  --bg-card: rgba(255,255,255,0.045);
  --bg-card-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.16);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-lg: 0 30px 60px rgba(0,0,0,0.45);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.3);
  --shadow-sm: 0 6px 18px rgba(0,0,0,0.22);
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
  --font: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  --space-section: clamp(3rem, 7vw, 6rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; }

.section { padding: var(--space-section) 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 179, 30, 0.12);
  border: 1px solid rgba(230, 179, 30, 0.28);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-title { color: var(--text-strong); font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.section-desc { color: var(--text-muted); margin-top: 14px; font-size: 16px; }

/* Header / Dock Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 24px;
  pointer-events: none;
}
.dock-nav {
  pointer-events: auto;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(10, 18, 36, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 10px 24px 10px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.dock-nav:hover { border-color: rgba(230,179,30,0.3); box-shadow: 0 16px 50px rgba(0,0,0,0.6); }
.dock-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-strong);
  white-space: nowrap;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border: 1px solid rgba(230,179,30,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--accent);
  box-shadow: 0 0 0 4px rgba(230,179,30,0.08);
  flex-shrink: 0;
}
.logo-text { letter-spacing: -0.02em; }
.logo-text .highlight { color: var(--accent); }
.dock-menu { display: flex; align-items: center; gap: 4px; }
.dock-menu li a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid transparent;
}
.dock-menu li a:hover,
.dock-menu li a.active {
  color: var(--text-strong);
  background: rgba(255,255,255,0.08);
  border-color: rgba(230,179,30,0.22);
}
.dock-actions { display: flex; align-items: center; gap: 12px; }
.dock-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  transition: var(--transition);
}
.dock-search:focus-within { border-color: rgba(230,179,30,0.4); background: rgba(255,255,255,0.1); }
.dock-search i { color: var(--text-muted); font-size: 13px; }
.dock-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 13px;
  width: 110px;
}
.dock-search input::placeholder { color: var(--text-muted); }
.dock-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition);
}
.dock-toggle:hover { background: rgba(230,179,30,0.2); border-color: rgba(230,179,30,0.4); }

/* Article Hero Banner */
.article-hero {
  position: relative;
  padding: 170px 0 72px;
  background: var(--primary-dark);
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,15,36,0.1) 0%, rgba(7,15,36,0.9) 100%),
              radial-gradient(ellipse at 80% 20%, rgba(230,179,30,0.15) 0%, transparent 50%);
}
.article-hero .container { position: relative; z-index: 2; }
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.article-breadcrumb a:hover { color: var(--accent); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(230,179,30,0.15);
  color: var(--accent-light);
  border: 1px solid rgba(230,179,30,0.35);
}
.article-hero h1 {
  color: var(--text-strong);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 16px;
  max-width: 900px;
  letter-spacing: -0.02em;
}
.article-hero .lead {
  color: #d7e1f0;
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 780px;
  margin-top: 20px;
  line-height: 1.8;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.article-meta .meta-item { display: inline-flex; align-items: center; gap: 7px; }
.article-meta i { color: var(--accent); }

/* Article Body */
.article-body-section { background: var(--bg); position: relative; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 48px; }
.article-main { padding-top: 56px; }
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.article-content { font-size: 16px; color: #c5d1e3; line-height: 1.95; }
.article-content p { margin-bottom: 20px; }
.article-content h2, .article-content h3, .article-content h4 { color: var(--text-strong); margin: 28px 0 14px; line-height: 1.35; }
.article-content h2 { font-size: 24px; }
.article-content h3 { font-size: 20px; }
.article-content img { border-radius: var(--radius-lg); margin: 20px 0; }
.article-content a { color: var(--accent); border-bottom: 1px solid rgba(230,179,30,0.3); }
.article-content a:hover { border-color: var(--accent); }
.article-content ul, .article-content ol { margin-bottom: 20px; padding-left: 22px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  border-left: 3px solid var(--accent);
  background: rgba(230,179,30,0.06);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: #d4dff0;
  margin-bottom: 20px;
  font-style: italic;
}
.article-content table { width: 100%; margin-bottom: 20px; border-collapse: collapse; }
.article-content th { background: var(--bg-card-strong); color: var(--accent-light); font-weight: 700; padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.article-content td { padding: 10px 14px; border: 1px solid var(--border); }
.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  background: rgba(230,179,30,0.08);
  color: var(--accent-light);
  border: 1px solid rgba(230,179,30,0.18);
  transition: var(--transition);
}
.tag:hover { background: rgba(230,179,30,0.18); border-color: rgba(230,179,30,0.4); }

/* Sidebar */
.article-sidebar { padding-top: 56px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 18px;
}
.sidebar-title i { color: var(--accent); }
.sidebar-link-list li { border-bottom: 1px solid var(--border); }
.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  transition: var(--transition);
}
.sidebar-link-list a:hover { color: var(--accent); padding-left: 6px; }
.sidebar-link-list a i { font-size: 13px; color: var(--accent); margin-top: 4px; flex-shrink: 0; }

/* News List */
.news-list-section { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-5px); border-color: rgba(230,179,30,0.3); box-shadow: var(--shadow-md); }
.news-cover { position: relative; height: 180px; overflow: hidden; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-cover img { transform: scale(1.06); }
.news-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,15,36,0.55) 100%); }
.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(230,179,30,0.9);
  color: #141414;
}
.news-body { padding: 18px 20px 22px; }
.news-title { font-size: 16px; font-weight: 700; color: var(--text-strong); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-title a:hover { color: var(--accent); }
.news-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-top: 12px; font-size: 12px; color: var(--text-muted); }
.news-meta i { color: var(--accent); }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(230,179,30,0.3); box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 700; color: var(--text-strong); line-height: 1.5; }
.faq-q::before {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(230,179,30,0.12);
  border: 1px solid rgba(230,179,30,0.3);
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}
.faq-q::after {
  content: '?';
  position: absolute;
  margin-left: 10px;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}
.faq-a { margin-top: 12px; padding-left: 40px; font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* CTA */
.cta-section { background: var(--primary-dark); position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-3.png');
  background-size: cover;
  background-position: center center;
  opacity: 0.2;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-banner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.cta-banner h2 { color: var(--text-strong); font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; line-height: 1.3; }
.cta-banner p { color: var(--text-muted); margin-top: 14px; font-size: 15px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}
.btn-gold { background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark)); color: #141414; box-shadow: 0 8px 24px rgba(230,179,30,0.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(230,179,30,0.4); color: #141414; }
.btn-ghost { background: rgba(255,255,255,0.06); border-color: var(--border-light); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); color: var(--text-strong); }

/* Footer */
.site-footer {
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(230,179,30,0.4), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-strong);
}
.footer-brand .logo-icon { width: 40px; height: 40px; font-size: 15px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-top: 18px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(230,179,30,0.15); border-color: rgba(230,179,30,0.4); color: var(--accent); transform: translateY(-3px); }
.footer-col h4 { color: var(--text-strong); font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); padding-left: 6px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--accent); }

/* Error state */
.error-block {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.error-block i { font-size: 44px; color: var(--accent); margin-bottom: 16px; }
.error-block h2 { color: var(--text-strong); font-size: 28px; margin-bottom: 10px; }
.error-block p { color: var(--text-muted); font-size: 15px; }
.error-block a { color: var(--accent); font-weight: 700; }

/* Media Queries */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; gap: 24px; }
  .article-sidebar { padding-top: 0; }
  .sidebar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .sidebar-card { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .dock-nav { border-radius: 18px; padding: 10px 14px 10px 10px; }
  .dock-logo .logo-text { font-size: 14px; }
  .dock-search { display: none; }
  .dock-toggle { display: flex; align-items: center; justify-content: center; }
  .dock-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    background: rgba(10,18,36,0.97);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 4px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .dock-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .dock-menu li a { display: block; padding: 13px 16px; border-radius: 12px; font-size: 15px; text-align: center; }
  .article-hero { padding: 130px 0 48px; }
  .news-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .dock-nav { flex-wrap: nowrap; }
  .dock-logo .logo-text { font-size: 13px; white-space: nowrap; }
  .news-grid { grid-template-columns: 1fr; }
  .sidebar-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn { justify-content: center; }
  .article-meta { flex-direction: column; align-items: flex-start; }
}

/* Focus accessiblity */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Foundation override for grid consistency */
.grid-margin-x { margin-left: -0.625rem; margin-right: -0.625rem; }

/* roulang page: category1 */
/* ===== 设计变量 ===== */
        :root {
            --primary: #0b1e38;
            --primary-light: #143259;
            --primary-dark: #060f1f;
            --accent: #c9a45c;
            --accent-light: #e0bd75;
            --accent-dark: #a9853f;
            --bg: #f4f6f9;
            --bg-deep: #e9edf3;
            --card: #ffffff;
            --text: #1c2b39;
            --muted: #5d6f83;
            --border: #dfe5ec;
            --radius: 18px;
            --radius-sm: 10px;
            --shadow-sm: 0 4px 14px rgba(11, 30, 56, .06);
            --shadow: 0 12px 32px rgba(11, 30, 56, .08);
            --shadow-lg: 0 24px 60px rgba(11, 30, 56, .12);
            --space: 96px;
            --transition: all .25s ease;
        }

        /* ===== 基础 Reset & Base ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            display: block;
            border: 0;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            border: none;
            outline: none;
            background: none;
        }
        ul,
        ol {
            list-style: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 通用按钮 ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1.4;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .btn-primary {
            background: var(--accent);
            color: var(--primary-dark);
            box-shadow: 0 6px 18px rgba(201, 164, 92, .35);
        }
        .btn-primary:hover {
            background: var(--accent-light);
            color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(201, 164, 92, .42);
        }
        .btn-outline {
            border-color: rgba(255, 255, 255, .7);
            color: #fff;
            background: transparent;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ===== 板块标题 ===== */
        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 52px;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(201, 164, 92, .12);
            color: var(--accent-dark);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
            padding: 6px 18px;
            border-radius: 40px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .section-title {
            font-size: 36px;
            line-height: 1.3;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .section-desc {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: sticky;
            top: 16px;
            z-index: 120;
            padding: 0 20px;
            pointer-events: none;
        }
        .dock-nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            background: rgba(255, 255, 255, .86);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, .6);
            border-radius: 60px;
            padding: 10px 18px 10px 22px;
            box-shadow: var(--shadow);
            pointer-events: auto;
        }
        .dock-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            box-shadow: 0 4px 12px rgba(11, 30, 56, .25);
        }
        .logo-text {
            font-size: 19px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: .02em;
            white-space: nowrap;
        }
        .logo-text .highlight {
            color: var(--accent-dark);
        }
        .dock-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
        }
        .dock-menu a {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14.5px;
            color: var(--muted);
            transition: var(--transition);
        }
        .dock-menu a:hover {
            color: var(--primary);
            background: rgba(11, 30, 56, .06);
        }
        .dock-menu a.active {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 4px 14px rgba(11, 30, 56, .25);
        }
        .dock-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .dock-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(11, 30, 56, .06);
            border-radius: 40px;
            padding: 8px 16px;
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .dock-search:focus-within {
            border-color: var(--accent);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(201, 164, 92, .18);
        }
        .dock-search i {
            color: var(--muted);
            font-size: 14px;
        }
        .dock-search input {
            width: 90px;
            font-size: 14px;
            background: transparent;
            color: var(--text);
            transition: width .3s ease;
        }
        .dock-search input:focus {
            width: 150px;
        }
        .dock-search input::placeholder {
            color: var(--muted);
        }
        .dock-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-size: 16px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        /* ===== Hero 横幅 ===== */
        .cat-hero {
            position: relative;
            background: linear-gradient(135deg, rgba(6, 15, 31, .88) 0%, rgba(11, 30, 56, .72) 55%, rgba(20, 50, 89, .62) 100%),
                url('/assets/images/backpic/back-1.png') center / cover no-repeat;
            padding: 140px 0 120px;
            margin-top: -86px;
            color: #fff;
            overflow: hidden;
        }
        .cat-hero::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, transparent, var(--bg));
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 860px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .2);
            color: #f0e6d0;
            padding: 7px 18px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .06em;
            margin-bottom: 24px;
            backdrop-filter: blur(6px);
        }
        .hero-title {
            font-size: 52px;
            line-height: 1.2;
            font-weight: 900;
            letter-spacing: .01em;
            margin-bottom: 20px;
        }
        .hero-title .highlight {
            color: var(--accent);
        }
        .hero-desc {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .82);
            max-width: 640px;
            margin-bottom: 36px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        /* ===== 倒计时 ===== */
        .countdown-bar {
            position: relative;
            z-index: 2;
            margin-top: 56px;
            display: inline-flex;
            align-items: center;
            gap: 22px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .18);
            backdrop-filter: blur(14px);
            border-radius: 22px;
            padding: 22px 32px;
            flex-wrap: wrap;
        }
        .cd-label {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .cd-label span {
            font-size: 13px;
            color: rgba(255, 255, 255, .75);
        }
        .cd-label strong {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }
        .cd-items {
            display: flex;
            gap: 14px;
            align-items: center;
        }
        .cd-item {
            text-align: center;
            background: rgba(255, 255, 255, .1);
            border-radius: 14px;
            padding: 8px 14px;
            min-width: 64px;
        }
        .cd-item b {
            display: block;
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-light);
            line-height: 1.2;
            font-variant-numeric: tabular-nums;
        }
        .cd-item span {
            font-size: 12px;
            color: rgba(255, 255, 255, .7);
        }
        .cd-sep {
            font-size: 24px;
            color: rgba(255, 255, 255, .4);
            font-weight: 700;
        }

        /* ===== 板块间距 ===== */
        .section {
            padding: var(--space) 0;
        }
        .section-bg {
            background: var(--bg-deep);
        }

        /* ===== 观赛方式卡片 ===== */
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .method-card {
            background: var(--card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            padding: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        .method-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(201, 164, 92, .4);
        }
        .method-card .card-img {
            position: relative;
            height: 210px;
            overflow: hidden;
        }
        .method-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .method-card:hover .card-img img {
            transform: scale(1.06);
        }
        .method-card .card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 30, 56, .45), transparent 60%);
        }
        .card-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            background: var(--accent);
            color: var(--primary-dark);
            font-size: 12px;
            font-weight: 800;
            padding: 5px 14px;
            border-radius: 30px;
            letter-spacing: .03em;
        }
        .card-body {
            padding: 26px 26px 30px;
        }
        .card-body h3 {
            font-size: 21px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .card-body p {
            font-size: 14.5px;
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 18px;
        }
        .card-features {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 22px;
        }
        .card-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text);
        }
        .card-features li i {
            color: var(--accent);
            font-size: 13px;
        }
        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            font-size: 14px;
            color: var(--primary);
        }
        .card-link i {
            transition: transform .25s ease;
        }
        .card-link:hover {
            color: var(--accent-dark);
        }
        .card-link:hover i {
            transform: translateX(4px);
        }

        /* ===== 资讯速览 ===== */
        .info-layout {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .info-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .info-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }
        .info-image .img-caption {
            position: absolute;
            left: 16px;
            bottom: 16px;
            background: rgba(255, 255, 255, .92);
            color: var(--primary);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
        }
        .info-list {
            display: flex;
            flex-direction: column;
        }
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 22px 0;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }
        .info-item:last-child {
            border-bottom: none;
        }
        .info-item:hover {
            padding-left: 8px;
        }
        .info-item .date-badge {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--primary);
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
        }
        .info-item .date-badge b {
            font-size: 18px;
            color: var(--accent-light);
        }
        .info-item .date-badge span {
            font-size: 11px;
            color: rgba(255, 255, 255, .7);
        }
        .info-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 4px;
        }
        .info-item p {
            font-size: 13.5px;
            color: var(--muted);
            line-height: 1.6;
        }
        .info-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-dark);
            background: rgba(201, 164, 92, .1);
            border-radius: 20px;
            padding: 2px 10px;
            margin-top: 6px;
        }

        /* ===== 观赛流程步骤 ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .step-card {
            position: relative;
            background: var(--card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 34px 26px 30px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }
        .step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--accent);
            font-size: 17px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            box-shadow: 0 6px 16px rgba(11, 30, 56, .25);
        }
        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .step-card p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
        }
        .step-arrow {
            position: absolute;
            top: 44px;
            right: -18px;
            color: var(--accent);
            font-size: 14px;
            z-index: 3;
        }

        /* ===== 数据统计 ===== */
        .data-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .data-box {
            text-align: center;
            padding: 40px 24px;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .data-box:hover {
            background: rgba(255, 255, 255, .1);
            transform: translateY(-4px);
        }
        .data-box i {
            font-size: 30px;
            color: var(--accent-light);
            margin-bottom: 14px;
        }
        .data-box b {
            display: block;
            font-size: 38px;
            font-weight: 900;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 6px;
        }
        .data-box span {
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item.open {
            border-color: rgba(201, 164, 92, .45);
            box-shadow: var(--shadow-sm);
        }
        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            color: var(--text);
        }
        .faq-q .fa-chevron-down {
            color: var(--accent);
            transition: transform .3s ease;
            font-size: 14px;
        }
        .faq-item.open .faq-q .fa-chevron-down {
            transform: rotate(180deg);
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }
        .faq-item.open .faq-a {
            max-height: 300px;
        }
        .faq-a p {
            padding: 0 24px 22px;
            font-size: 15px;
            color: var(--muted);
            line-height: 1.8;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 0 0 var(--space);
        }
        .cta-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #1b3c6b 100%);
            border-radius: 28px;
            padding: 60px 48px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .1);
        }
        .cta-box::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .08);
        }
        .cta-box h2 {
            font-size: 34px;
            font-weight: 900;
            margin-bottom: 14px;
            position: relative;
            z-index: 2;
        }
        .cta-box p {
            color: rgba(255, 255, 255, .8);
            max-width: 560px;
            margin: 0 auto 32px;
            font-size: 16px;
            position: relative;
            z-index: 2;
        }
        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, .72);
            padding: 64px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 44px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-brand .footer-logo .highlight {
            color: var(--accent);
        }
        .footer-brand p {
            font-size: 14.5px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .6);
            max-width: 360px;
            margin-bottom: 22px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .7);
            border: 1px solid rgba(255, 255, 255, .08);
            transition: var(--transition);
        }
        .footer-social a:hover {
            background: var(--accent);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 18px;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul a {
            color: rgba(255, 255, 255, .6);
            font-size: 14.5px;
        }
        .footer-col ul a:hover {
            color: var(--accent-light);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 26px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            :root {
                --space: 76px;
            }
            .hero-title {
                font-size: 42px;
            }
            .methods-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .info-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .info-image img {
                height: 320px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .dock-search input {
                width: 60px;
            }
            .dock-search input:focus {
                width: 110px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --space: 60px;
            }
            .section-title {
                font-size: 28px;
            }
            .hero-title {
                font-size: 34px;
            }
            .hero-desc {
                font-size: 15px;
            }
            .cat-hero {
                padding: 120px 0 90px;
            }
            .dock-menu {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                width: 280px;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 80px 28px 28px;
                box-shadow: var(--shadow-lg);
                transform: translateX(100%);
                transition: transform .35s ease;
                z-index: 150;
                border-radius: 0;
                margin: 0;
            }
            .dock-menu.open {
                transform: translateX(0);
            }
            .dock-menu a {
                width: 100%;
                font-size: 16px;
                padding: 12px 18px;
            }
            .dock-toggle {
                display: inline-flex;
            }
            .dock-search {
                display: none;
            }
            .countdown-bar {
                padding: 18px 22px;
                gap: 16px;
            }
            .cd-item {
                min-width: 52px;
                padding: 6px 10px;
            }
            .cd-item b {
                font-size: 22px;
            }
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .step-arrow {
                display: none;
            }
            .cta-box {
                padding: 44px 28px;
            }
            .cta-box h2 {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .methods-grid {
                grid-template-columns: 1fr;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .data-box {
                padding: 24px 14px;
            }
            .data-box b {
                font-size: 30px;
            }
            .hero-badge {
                font-size: 12px;
            }
            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }
            .info-item {
                flex-direction: column;
                gap: 10px;
            }
            .info-item .date-badge {
                width: 48px;
                height: 48px;
                border-radius: 12px;
            }
            .dock-nav {
                padding: 8px 14px 8px 16px;
            }
            .logo-text {
                font-size: 16px;
            }
            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
            .footer-brand .footer-logo {
                font-size: 19px;
            }
        }

/* roulang page: category2 */
:root {
  --primary: #0057B7;
  --primary-dark: #0A2A5E;
  --primary-light: #E8F0FE;
  --gold: #C9A227;
  --gold-light: #F7EDD4;
  --dark: #0B1220;
  --text: #1F2937;
  --text-light: #6E7A8B;
  --bg: #F6F8FC;
  --bg-alt: #EAEFF5;
  --card-bg: #FFFFFF;
  --border: #E3E8F0;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(10, 30, 60, 0.06);
  --shadow: 0 10px 32px rgba(10, 30, 60, 0.10);
  --shadow-lg: 0 18px 48px rgba(0, 87, 183, 0.16);
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; border-radius: var(--radius-sm); display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 16px;
}
.section-head p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}
/* ===== Header Dock Nav ===== */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 999;
  padding: 0 20px;
  pointer-events: none;
}
.dock-nav {
  pointer-events: auto;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.10);
  transition: box-shadow var(--transition);
}
.dock-nav:hover { box-shadow: 0 12px 40px rgba(10, 30, 60, 0.14); }
.dock-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 87, 183, 0.35);
}
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.logo-text .highlight, .footer-logo .highlight { color: var(--primary); }
.dock-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.dock-menu li { margin: 0; }
.dock-menu a {
  display: block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.dock-menu a:hover { color: var(--primary); background: var(--primary-light); }
.dock-menu a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 87, 183, 0.32);
}
.dock-actions { display: flex; align-items: center; gap: 10px; }
.dock-search {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.dock-search i { color: var(--text-light); font-size: 13px; }
.dock-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 110px;
  transition: width 0.3s;
  font-family: inherit;
}
.dock-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.12);
  width: auto;
}
.dock-search input:focus { width: 130px; }
.dock-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}
.dock-toggle:focus { outline: 3px solid rgba(0, 87, 183, 0.3); }

/* ===== Banner Hero ===== */
.page-banner {
  position: relative;
  padding: 130px 0 100px;
  background-image: url('/assets/images/backpic/back-2.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 18, 38, 0.88) 0%, rgba(8, 18, 38, 0.62) 52%, rgba(0, 87, 183, 0.30) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}
.page-banner h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: 1px;
}
.page-banner h1 span { color: var(--gold); }
.page-banner p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 0 28px;
}
.banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.banner-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Intro Section ===== */
.intro-section { padding: 90px 0 70px; }
.intro-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.intro-card h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 16px;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.3;
}
.intro-card p { color: var(--text-light); font-size: 16px; margin-bottom: 28px; }
.intro-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
}
.intro-points li:last-child { border-bottom: none; }
.intro-points i { color: var(--primary); font-size: 18px; margin-top: 3px; }
.intro-stats-panel {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  height: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.intro-stats-panel::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  right: -50px;
  bottom: -50px;
}
.intro-stats-panel h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.intro-stats-panel > p { color: rgba(255, 255, 255, 0.8); font-size: 14px; margin-bottom: 30px; }
.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-row:last-child { border-bottom: none; }
.stat-row .stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}
.stat-row .stat-label { font-size: 15px; color: rgba(255, 255, 255, 0.85); align-self: center; }

/* ===== Match Cards ===== */
.matches-section { padding: 70px 0 80px; }
.match-grid .cell { margin-bottom: 30px; }
.match-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.match-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.match-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.match-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.match-card:hover .match-thumb img { transform: scale(1.05); }
.match-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.match-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.match-date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 10px;
}
.match-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.4;
}
.match-body p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0 0 20px;
  flex: 1;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  transition: gap var(--transition);
}
.read-more:hover { gap: 12px; color: var(--primary-dark); }

/* ===== Feature / Deep Analysis ===== */
.feature-section { padding: 90px 0; position: relative; overflow: hidden; }
.feature-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 87, 183, 0.10), transparent 70%);
  border-radius: 50%;
}
.feature-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature-media .feature-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.feature-content { padding: 20px 0; }
.feature-content .section-eyebrow { margin-bottom: 10px; }
.feature-content h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 18px;
}
.feature-content p { color: var(--text-light); font-size: 15px; margin-bottom: 24px; }
.feature-list { margin-bottom: 28px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--primary); width: 20px; text-align: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(0, 87, 183, 0.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 87, 183, 0.4); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}
.btn-outline:hover { background: var(--primary-light); color: var(--primary-dark); }

/* ===== Data Comparison ===== */
.stats-compare-section { padding: 90px 0; }
.compare-panel {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.compare-panel .team-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.team-flag {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  font-weight: 800;
}
.flag-inter { background: linear-gradient(135deg, #0057B7, #0A2A5E); }
.flag-away { background: linear-gradient(135deg, #7A2A2A, #B03A2E); }
.vs-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.vs-badge {
  width: 70px;
  height: 70px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.stat-bars { margin-top: 10px; }
.stat-bar-item { margin-bottom: 18px; }
.stat-bar-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.stat-bar-head strong { color: var(--text); font-weight: 700; }
.stat-bar-track {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 10px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #4A9FFF);
  border-radius: 10px;
  width: 0%;
  transition: width 0.6s ease;
}
.stat-bar-item:nth-child(2) .stat-bar-fill { background: linear-gradient(90deg, #8A3A34, #D05A4E); }

/* ===== Lineup ===== */
.lineup-section { padding: 90px 0; }
.lineup-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.lineup-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lineup-card h3 i { color: var(--primary); }
.lineup-subtitle { color: var(--text-light); font-size: 14px; margin-bottom: 28px; }
.formation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.formation-zone {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
  border: 1px dashed var(--border);
}
.zone-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.zone-player {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.zone-number {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 26px;
  text-align: center;
}
.injury-list { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.injury-list h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
}
.injury-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.injury-item:last-child { border-bottom: none; }
.injury-item i { color: #D9534F; }
.injury-item .status {
  margin-left: auto;
  font-size: 12px;
  background: #FDECEA;
  color: #B23B34;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* ===== Form Timeline ===== */
.form-section { padding: 90px 0; }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--gold), transparent);
  border-radius: 4px;
}
.timeline-item {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  position: relative;
  align-items: flex-start;
}
.timeline-dot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}
.timeline-item.win .timeline-dot { border-color: #22A06B; color: #22A06B; }
.timeline-item.draw .timeline-dot { border-color: var(--gold); color: var(--gold); }
.timeline-item.loss .timeline-dot { border-color: #D9534F; color: #D9534F; }
.timeline-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.timeline-card:hover { box-shadow: var(--shadow); }
.timeline-card .tl-opponent {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.timeline-card .tl-detail {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq-section { padding: 90px 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: rgba(0, 87, 183, 0.4); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  color: var(--primary);
  font-size: 14px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary { background: var(--primary-light); }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta-section { padding: 0 0 90px; }
.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 56px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -140px;
  right: -80px;
}
.cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -80px;
  left: 60px;
}
.cta-box h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin: 0 0 12px; }
.cta-box p { color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 2;
}
.cta-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.cta-form input:focus { outline: none; }
.cta-form button {
  background: #fff;
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-weight: 800;
  font-size: 15px;
  transition: transform var(--transition);
}
.cta-form button:hover { transform: scale(1.03); }

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.footer-logo .logo-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 360px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul a:hover { color: #fff; padding-left: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .section { padding: 64px 0; }
  .page-banner { padding: 110px 0 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .formation-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .page-banner { padding: 90px 0 64px; }
  .page-banner h1 { font-size: 34px; }
  .site-header { top: 10px; padding: 0 14px; }
  .dock-nav { border-radius: 20px; flex-wrap: wrap; padding: 12px 16px; }
  .dock-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
  }
  .dock-menu.open { display: flex; }
  .dock-menu a { text-align: center; font-size: 15px; }
  .dock-actions { margin-left: auto; }
  .dock-search { display: none; }
  .dock-toggle { display: inline-flex; }
  .intro-card { padding: 28px; }
  .intro-stats-panel { padding: 28px; }
  .compare-panel { margin-bottom: 16px; }
  .vs-panel { padding: 12px 0; }
  .cta-box { padding: 40px 24px; }
  .cta-form { flex-direction: column; background: transparent; border: none; gap: 10px; }
  .cta-form input { background: rgba(255, 255, 255, 0.15); border-radius: var(--radius-pill); border: 1px solid rgba(255, 255, 255, 0.2); }
  .cta-form button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline-item { gap: 18px; }
  .timeline::before { left: 24px; }
}
@media (max-width: 520px) {
  .dock-nav { gap: 8px; }
  .logo-text { font-size: 15px; }
  .page-banner { padding: 80px 0 56px; }
  .page-banner h1 { font-size: 28px; }
  .page-banner p { font-size: 15px; }
  .section-head h2 { font-size: 26px; }
  .section-eyebrow { font-size: 12px; }
  .match-body h3 { font-size: 18px; }
  .intro-card, .intro-stats-panel, .lineup-card, .compare-panel { padding: 22px; }
  .formation-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item .faq-answer { padding: 0 18px 16px; font-size: 14px; }
  .cta-box { padding: 32px 18px; }
  .cta-box h2 { font-size: 24px; }
  .timeline-item { flex-direction: column; gap: 10px; padding-left: 0; }
  .timeline::before { left: 24px; }
  .timeline-card { width: 100%; }
  .stat-row .stat-num { font-size: 22px; }
}
