/* roulang page: index */
:root {
  --milan-red: #C8102E;
  --milan-dark-red: #8E0E24;
  --milan-black: #141414;
  --charcoal: #232323;
  --gold: #C9A063;
  --bg-warm: #F4F1EC;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #999999;
  --border-light: rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 8px 30px rgba(20, 20, 20, 0.08);
  --shadow-card-hover: 0 16px 40px rgba(20, 20, 20, 0.14);
  --transition-base: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-warm);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: inline-block; }

a { text-decoration: none; color: inherit; transition: var(--transition-base); }

button, input, select, textarea { font-family: inherit; }

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 { margin: 0 0 16px; font-weight: 700; line-height: 1.3; }
h1 { font-size: 40px; line-height: 1.2; }
h2 { font-size: 28px; line-height: 1.3; }
h3 { font-size: 20px; line-height: 1.4; }
p { margin: 0 0 16px; }

/* 按钮体系 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  outline: none;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--milan-red), var(--milan-dark-red));
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover { color: var(--milan-red); border-color: var(--milan-red); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* 标签与徽章 */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  background: #FBE9E8;
  color: var(--milan-red);
}
.badge-gold {
  background: var(--gold);
  color: #fff;
}
.badge-hot {
  background: var(--milan-red);
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
}

/* 头部导航 */
.site-header {
  background: var(--milan-black);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--milan-red), var(--milan-dark-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.5px;
}
.brand-text {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  transition: color 0.3s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 3px;
  border-radius: 3px;
  background: var(--milan-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Mega Menu */
.mega-trigger {
  position: relative;
}
.mega-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  height: 42px;
  padding: 0 18px;
  border-radius: 21px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}
.mega-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 520px;
  box-shadow: var(--shadow-card-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  z-index: 999;
}
.mega-trigger:hover .mega-panel,
.mega-trigger:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mega-card {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: var(--transition-base);
}
.mega-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.mega-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--milan-red), var(--milan-dark-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.mega-card h4 { font-size: 15px; margin: 0 0 4px; }
.mega-card p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.4; }

/* 汉堡按钮（移动端） */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* Hero 直播预告流 */
.hero {
  position: relative;
  background: linear-gradient(135deg, #141414 0%, #232323 50%, #1a1a1a 100%);
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0.7) 0%, rgba(20, 20, 20, 0.9) 100%);
}
.hero .container-custom {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-cover {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(200, 16, 46, 0.15);
}
.hero-cover img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.hero-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.6) 0%, transparent 50%);
}
.live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--milan-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.live-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-info { color: #fff; }
.hero-info h1 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.25;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 24px;
}
.countdown-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.countdown-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.countdown-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.countdown-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 60px;
  text-align: center;
}
.countdown-colon {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.4);
}
.countdown-unit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 4px;
}
.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.highlights-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}
.highlights-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--milan-red);
}
.remind-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.remind-form input {
  flex: 0 0 280px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}
.remind-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.remind-form input:focus {
  border-color: var(--milan-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.3);
  background: rgba(255, 255, 255, 0.12);
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 数据条带 */
.stats-band {
  background: var(--bg-warm);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  margin-top: -1px;
  position: relative;
  z-index: 3;
}
.stats-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--milan-red) 0%, var(--milan-dark-red) 100%);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  min-height: 48px;
  box-shadow: var(--shadow-card);
}
.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.stats-note {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin: 12px 0 0;
}

/* 板块通用 */
.section {
  padding: var(--spacing-section) 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.section-header h2 {
  margin: 0;
  position: relative;
  padding-left: 16px;
}
.section-header h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: var(--milan-red);
}
.section-more {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  transition: var(--transition-base);
}
.section-more:hover {
  border-color: var(--milan-red);
  color: var(--milan-red);
  transform: translateX(4px);
}

/* 最新资讯列表 */
.latest-section {
  background: var(--bg-warm);
}
.cms-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}
.cms-feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}
.cms-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.feature-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.cms-feature-card:hover .feature-thumb img { transform: scale(1.03); }
.feature-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.feature-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feature-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.feature-body p {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 12px;
}
.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  margin-top: auto;
}
.meta-row .badge { margin: 0; }
.meta-time {
  color: var(--text-light);
  font-size: 13px;
}
.cms-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cms-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-base);
}
.cms-item:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.cms-item:last-child { border-bottom: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.cms-item:hover {
  background: #FDF3F2;
  transform: translateX(-4px);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
}
.cms-item-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.cms-item-summary {
  font-size: 13px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cms-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.empty-state i {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 16px;
  display: block;
}
.empty-state p { color: var(--text-secondary); font-size: 15px; }

/* 赛程时间轴 */
.schedule-section {
  background: var(--milan-black);
  color: #fff;
  padding: var(--spacing-section) 0;
}
.schedule-section .section-header h2 { color: #fff; }
.schedule-section .section-header h2::before { background: var(--gold); }
.schedule-section .section-more { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); }
.schedule-section .section-more:hover { color: var(--gold); border-color: var(--gold); }
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(200,16,46,0.6), rgba(201,160,99,0.4));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  position: relative;
  width: 50%;
}
.timeline-item:nth-child(odd) {
  align-self: flex-start;
  padding-right: 48px;
}
.timeline-item:nth-child(even) {
  align-self: flex-end;
  padding-left: 48px;
}
.timeline-item::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,160,99,0.25);
}
.timeline-item:nth-child(odd)::after { right: -6px; }
.timeline-item:nth-child(even)::after { left: -6px; }
.match-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  width: 100%;
  transition: var(--transition-base);
}
.match-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 160, 99, 0.3);
  transform: translateY(-2px);
}
.match-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.match-teams {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.match-teams span { color: rgba(255,255,255,0.5); font-weight: 400; margin: 0 6px; }
.match-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--milan-red), var(--milan-dark-red));
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
}
.match-status {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 热门分类入口 */
.categories-section {
  background: var(--bg-warm);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  display: block;
  position: relative;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.cat-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.cat-card:hover .cat-card-img img { transform: scale(1.03); }
.cat-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.5), transparent);
}
.cat-card-body {
  padding: 20px;
}
.cat-card-body h3 { font-size: 18px; margin-bottom: 6px; }
.cat-card-body p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.cat-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--milan-red);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

/* 俱乐部荣誉 */
.honor-section {
  background: var(--charcoal);
  padding: var(--spacing-section) 0;
  color: #fff;
  position: relative;
}
.honor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  opacity: 0.12;
}
.honor-section .container-custom { position: relative; z-index: 2; }
.honor-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.honor-content h2 { color: #fff; margin-bottom: 16px; }
.honor-content p { color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.honor-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.honor-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-base);
}
.honor-item:hover {
  background: rgba(200, 16, 46, 0.15);
  transform: translateY(-2px);
}
.honor-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.honor-label { font-size: 14px; color: rgba(255, 255, 255, 0.8); }
.honor-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.honor-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* FAQ */
.faq-section {
  background: var(--bg-warm);
}
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-wrap .accordion {
  background: transparent;
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-wrap .accordion-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition-base);
}
.faq-wrap .accordion-item.is-active {
  border-bottom: 2px solid var(--milan-red);
}
.faq-wrap .accordion-title {
  background: transparent;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  transition: var(--transition-base);
}
.faq-wrap .accordion-title:hover { color: var(--milan-red); }
.faq-wrap .accordion-title::before {
  content: 'Q';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--milan-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-wrap .accordion-title::after {
  content: '+';
  margin-left: auto;
  font-size: 22px;
  color: var(--text-light);
  transition: transform 0.3s;
}
.faq-wrap .accordion-item.is-active > .accordion-title::after {
  transform: rotate(45deg);
  color: var(--milan-red);
}
.faq-wrap .accordion-content {
  background: #fff;
  color: var(--text-secondary);
  font-size: 15px;
  padding: 0 28px 24px 68px;
  border-top: none;
  line-height: 1.7;
}
.faq-wrap .accordion-content p { margin: 0; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--milan-red), var(--milan-dark-red));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 60%;
  height: 220%;
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(25deg);
}
.cta-section .container-custom { position: relative; z-index: 2; }
.cta-section h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn {
  border-width: 1px;
  border-color: var(--gold);
  min-width: 140px;
}
.cta-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--gold);
}
.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* 页脚 */
.site-footer {
  background: var(--milan-black);
  color: #fff;
  padding-top: 64px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--milan-red), var(--gold)) 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-text {
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: var(--transition-base);
  position: relative;
  padding-left: 14px;
}
.footer-col a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--milan-red);
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-col a:hover {
  color: #fff;
  padding-left: 18px;
}
.footer-col a:hover::before {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* 移动端导航 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 20, 20, 0.98);
  z-index: 2000;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li { margin-bottom: 8px; }
.mobile-menu a {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* 响应式 */
@media (max-width: 1023px) {
  .main-nav, .mega-trigger { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-info h1 { font-size: 30px; }
  .cms-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 16px; }
  .timeline-item { width: 100%; padding-left: 48px !important; padding-right: 0 !important; }
  .timeline-item::after { left: 10px !important; right: auto !important; }
  .honor-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  :root {
    --spacing-section: 40px;
  }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stats-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .stat-pill { justify-content: center; }
  .cat-grid { grid-template-columns: 1fr; }
  .countdown-num { font-size: 32px; }
  .remind-form { flex-direction: column; }
  .remind-form input { flex-basis: 48px; width: 100%; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom p { font-size: 12px; }
  .cms-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mega-panel { min-width: calc(100vw - 48px); }
}

/* 可访问性与焦点 */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* roulang page: article */
:root {
  --primary: #C8102E;
  --primary-dark: #8E0E24;
  --ink: #141414;
  --charcoal: #232323;
  --gold: #C9A063;
  --bg: #F4F1EC;
  --card-bg: #FFFFFF;
  --text: #1A1A1A;
  --text-weak: #6B6B6B;
  --text-light: #8A8A8A;
  --border-soft: rgba(0,0,0,0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-btn: 12px;
  --shadow-card: 0 8px 30px rgba(20,20,20,0.08);
  --shadow-card-hover: 0 16px 40px rgba(20,20,20,0.14);
  --section-space: 80px;
  --container-w: 1200px;
  --font-body: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container-custom {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ===== Header / Nav ===== */
.site-header {
  background: var(--ink);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(200,16,46,0.35);
}
.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.main-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}
.main-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.main-nav a.active {
  color: #fff;
  font-weight: 600;
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
}

/* ===== Article Main ===== */
.article-main {
  padding: 40px 0 var(--section-space);
  min-height: 60vh;
}
.breadcrumb-area {
  margin-bottom: 24px;
}
.breadcrumb-area a,
.breadcrumb-area span {
  font-size: 14px;
}
.breadcrumb-area a {
  color: var(--text-weak);
}
.breadcrumb-area a:hover {
  color: var(--primary);
}
.breadcrumb-arrow {
  margin: 0 8px;
  color: var(--text-light);
}
.breadcrumb-current {
  color: var(--text);
  font-weight: 600;
}
.article-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 48px;
  margin-bottom: 40px;
}
.article-header {
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 32px;
  margin-bottom: 36px;
}
.article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.badge-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FBE9E8;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
}
.article-date {
  font-size: 14px;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-header h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.article-summary {
  font-size: 15px;
  color: var(--text-weak);
  line-height: 1.8;
  max-width: 760px;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.article-body p {
  margin-bottom: 24px;
  color: #2E2E2E;
}
.article-body h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  margin: 40px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FBE9E8;
  color: var(--text);
}
.article-body h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--text);
}
.article-body h4 {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  margin: 26px 0 12px;
  color: var(--text);
}
.article-body ul,
.article-body ol {
  margin: 0 0 24px 22px;
}
.article-body ul li {
  list-style: disc;
  margin-bottom: 8px;
  padding-left: 4px;
}
.article-body ol li {
  list-style: decimal;
  margin-bottom: 8px;
  padding-left: 4px;
}
.article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: #FDF6F5;
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  color: #4A4A4A;
  font-size: 15px;
}
.article-body img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  margin: 28px auto;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}
.article-body table th {
  background: var(--ink);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
}
.article-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.article-body table tr:nth-child(even) td {
  background: #FAFAF7;
}
.article-body code {
  background: #F5F2EE;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 14px;
}
.article-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.tag-label {
  font-size: 14px;
  color: var(--text-weak);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.article-tag {
  display: inline-block;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-weak);
  transition: all 0.25s ease;
}
.article-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #FBE9E8;
}
.article-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 16px;
}
.pagination-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pag-link {
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.6;
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pag-divider {
  color: rgba(0,0,0,0.12);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  min-height: 48px;
}
.btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(0,0,0,0.18);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,16,46,0.3);
}
.btn-primary:hover {
  filter: brightness(1.08);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ===== Related Section ===== */
.related-section {
  margin-bottom: 40px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-head h2 {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}
.section-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 22px;
  background: var(--primary);
  border-radius: 3px;
}
.section-more {
  font-size: 14px;
  color: var(--text-weak);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}
.section-more:hover {
  color: var(--primary);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.related-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.related-card:hover .related-thumb img {
  transform: scale(1.03);
}
.related-info {
  padding: 18px 20px 20px;
}
.related-info h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 45px;
}
.related-time {
  font-size: 13px;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===== Not Found ===== */
.not-found-area {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 80px 40px;
  text-align: center;
}
.not-found-icon {
  font-size: 56px;
  color: var(--primary);
  margin-bottom: 20px;
}
.not-found-area h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.not-found-area p {
  font-size: 16px;
  color: var(--text-weak);
  margin-bottom: 28px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
  border-top: 2px solid linear-gradient(90deg, var(--primary), var(--primary-dark), var(--gold));
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .header-inner {
    height: 64px;
  }
  .main-nav ul {
    gap: 4px;
  }
  .main-nav a {
    padding: 6px 10px;
    font-size: 14px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-header h1 {
    font-size: 32px;
  }
  .article-card {
    padding: 36px 28px;
  }
}
@media (max-width: 639px) {
  .header-inner {
    height: 60px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--ink);
    z-index: 999;
    padding: 80px 24px 24px;
    transition: right 0.35s ease;
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }
  .main-nav a {
    font-size: 18px;
    padding: 14px 16px;
    border-radius: 12px;
  }
  .main-nav a.active::after {
    left: 16px;
    transform: none;
    width: 24px;
    bottom: 8px;
  }
  .nav-toggle {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .article-header h1 {
    font-size: 28px;
  }
  .article-card {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .article-pagination {
    flex-direction: column;
    align-items: flex-start;
  }
  .pagination-links {
    width: 100%;
    justify-content: space-between;
  }
  .breadcrumb-area {
    font-size: 13px;
  }
  .article-body {
    font-size: 15px;
  }
  .article-body h2 {
    font-size: 24px;
  }
  .article-body h3 {
    font-size: 18px;
  }
  .article-summary {
    font-size: 14px;
  }
}

/* ===== Foundation Overrides ===== */
.row {
  max-width: none;
}
.button, button {
  background: none;
  border: none;
}

/* roulang page: category1 */
:root {
  --milan-red: #C8102E;
  --milan-dark-red: #8E0E24;
  --milan-black: #141414;
  --charcoal: #232323;
  --gold: #C9A063;
  --bg-warm: #F4F1EC;
  --text-main: #1a1a1a;
  --text-secondary: #5f5f5f;
  --text-light: #9a9a9a;
  --border-soft: rgba(0,0,0,0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-card: 0 8px 30px rgba(20,20,20,0.08);
  --shadow-hover: 0 16px 40px rgba(20,20,20,0.14);
  --transition: all 0.3s ease;
  --section-pad: 80px;
  --container-w: 1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 16px;
}
a { color: var(--milan-red); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
.container-custom { max-width: var(--container-w); margin: 0 auto; padding: 0 16px; }
.section { padding: var(--section-pad) 0; }
.section-title { font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; color: var(--text-main); }
.section-subtitle { font-size: 15px; color: var(--text-secondary); margin-bottom: 36px; max-width: 720px; }

/* ===== Header & Nav ===== */
.site-header {
  background: var(--milan-black);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--milan-red), var(--milan-dark-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 0 0 2px rgba(201,160,99,0.35);
}
.brand-text {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.main-nav ul { display: flex; gap: 4px; }
.main-nav ul li a {
  display: block;
  padding: 8px 18px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: var(--milan-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-nav ul li a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.main-nav ul li a:hover::after { transform: scaleX(1); }
.main-nav ul li a.active { color: #fff; }
.main-nav ul li a.active::after { transform: scaleX(1); }
.nav-mega-trigger {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
}
.nav-mega-trigger:hover { background: rgba(255,255,255,0.08); color: var(--gold); }
.mega-panel {
  position: absolute;
  top: 60px;
  right: 16px;
  width: 520px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  padding: 24px;
  display: flex;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  z-index: 210;
}
.nav-mega-trigger:hover + .mega-panel,
.mega-panel:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-panel h5 {
  font-size: 14px;
  color: var(--milan-red);
  margin-bottom: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 8px;
}
.mega-panel ul li { margin-bottom: 8px; }
.mega-panel ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: var(--transition);
}
.mega-panel ul li a i { color: var(--milan-red); width: 18px; text-align: center; }
.mega-panel ul li a:hover { background: #FDF1F1; color: var(--milan-red); padding-left: 14px; }
.menu-toggle { display: none; width: 42px; height: 42px; color: #fff; font-size: 20px; border-radius: 10px; align-items: center; justify-content: center; }
.menu-toggle:hover { background: rgba(255,255,255,0.1); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,0.98);
  z-index: 300;
  padding: 80px 40px;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  font-size: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  font-weight: 600;
}
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .close-menu { position: absolute; top: 24px; right: 24px; color: #fff; font-size: 26px; }

/* ===== Category Hero ===== */
.category-hero {
  background: linear-gradient(135deg, var(--milan-black) 0%, var(--charcoal) 55%, var(--milan-dark-red) 130%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.category-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.35) 0%, transparent 70%);
}
.category-hero .container-custom { position: relative; z-index: 2; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.85); }
.category-hero h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.category-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 650px;
  line-height: 1.8;
}

/* ===== Guide Section ===== */
.guide-section {
  padding: 56px 0 20px;
}
.guide-box {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border-left: 4px solid var(--milan-red);
  box-shadow: var(--shadow-card);
}
.guide-box h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.guide-box p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== News Highlight ===== */
.news-highlight { padding: 40px 0 70px; }
.news-feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.news-feature-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.news-feature-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.35) 55%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.news-feature-overlay .tag {
  align-self: flex-start;
  background: var(--milan-red);
  color: #fff;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}
.news-feature-overlay h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-feature-overlay p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.7;
  max-width: 90%;
}
.news-feature-overlay .time { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 12px; }

.news-list-col { display: flex; flex-direction: column; gap: 14px; }
.news-list-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  align-items: center;
}
.news-list-item:hover { box-shadow: var(--shadow-hover); transform: translateX(-4px); background: #FDF6F5; }
.news-list-thumb {
  width: 130px;
  height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-list-item:hover .news-list-thumb img { transform: scale(1.04); }
.news-list-info { flex: 1; min-width: 0; }
.news-list-info h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 6px;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-info h4 a { color: var(--text-main); }
.news-list-info h4 a:hover { color: var(--milan-red); }
.news-list-info p {
  font-size: 13px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.news-list-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
}
.news-list-meta .cat-tag {
  background: #FBE9E8;
  color: var(--milan-red);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
}

/* ===== Stats Band ===== */
.stats-band {
  background: linear-gradient(120deg, var(--milan-black), var(--milan-dark-red));
  padding: 36px 0;
}
.stats-align { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px 28px; }
.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(200,16,46,0.25), rgba(20,20,20,0.6));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 24px;
  min-height: 40px;
}
.stat-pill .num { color: var(--gold); font-size: 24px; font-weight: 700; }
.stat-pill .label { color: rgba(255,255,255,0.8); font-size: 13px; }
.stats-note { text-align: center; color: rgba(255,255,255,0.35); font-size: 11px; margin-top: 14px; }

/* ===== Topics ===== */
.topic-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.topic-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.topic-image { position: relative; height: 180px; overflow: hidden; }
.topic-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.topic-card:hover .topic-image img { transform: scale(1.03); }
.topic-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,20,0.35), transparent 50%); }
.topic-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.topic-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.topic-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.topic-body .topic-link { font-size: 14px; color: var(--milan-red); font-weight: 600; }
.topic-body .topic-link:hover { color: var(--milan-dark-red); }

/* ===== Deep Reads ===== */
.deep-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 56px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.deep-row:nth-child(even) { flex-direction: row-reverse; }
.deep-image { flex: 1; border-radius: var(--radius-md); overflow: hidden; min-height: 240px; }
.deep-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.deep-row:hover .deep-image img { transform: scale(1.02); }
.deep-content { flex: 1; }
.deep-content .label { font-size: 12px; color: var(--milan-red); font-weight: 600; margin-bottom: 8px; }
.deep-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.deep-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item .accordion-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  background: #fff;
  border: none;
}
.faq-item .accordion-title:hover { color: var(--milan-red); background: #FDF9F7; }
.faq-item .accordion-title::before {
  content: "Q";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--milan-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-item .accordion-content {
  padding: 0 28px 22px 70px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.accordion-title { position: relative; }
.accordion-title::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--text-light);
  transition: transform 0.3s ease;
}
.accordion-item.is-active .accordion-title::after { transform: translateY(-50%) rotate(180deg); color: var(--milan-red); }
.accordion-item.is-active .accordion-title { color: var(--milan-red); }
.accordion-item.is-active .accordion-title::before { background: var(--milan-dark-red); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(120deg, var(--milan-red) 0%, var(--milan-dark-red) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-wrap { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-wrap h2 { color: #fff; font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.cta-wrap p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 28px; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-form input[type="email"] {
  width: 300px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.4);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0 18px;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}
.cta-form input[type="email"]:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,160,99,0.3); }
.cta-form .btn-gold {
  height: 48px;
  background: transparent;
  border: 1px solid var(--gold);
  color: #fff;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.cta-form .btn-gold:hover { background: var(--gold); color: var(--milan-black); border-color: var(--gold); }

/* ===== Footer ===== */
.site-footer { background: var(--milan-black); padding-top: 60px; margin-top: 0; }
.site-footer::before { content: ""; display: block; height: 2px; background: linear-gradient(90deg, var(--milan-red), var(--gold), var(--milan-red)); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; max-width: 320px; margin-top: 12px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 14px; padding-left: 0; transition: var(--transition); position: relative; }
.footer-col ul li a::before { content: "·"; color: var(--milan-red); margin-right: 6px; font-weight: 700; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ===== Responsive ===== */
@media (min-width: 1024px) { .deep-row { flex-direction: row; } }
@media (max-width: 1023px) {
  .main-nav { display: none; }
  .nav-mega-trigger { display: none; }
  .menu-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .news-feature-card { min-height: 320px; }
}
@media (max-width: 640px) {
  :root { --section-pad: 40px; }
  .category-hero h1 { font-size: 32px; }
  .section-title { font-size: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .news-list-item { flex-direction: column; align-items: flex-start; }
  .news-list-thumb { width: 100%; height: 140px; }
  .news-feature-card { min-height: 260px; }
  .news-feature-overlay { padding: 20px; }
  .news-feature-overlay h3 { font-size: 19px; }
  .deep-row { flex-direction: column; padding: 20px; gap: 20px; }
  .deep-row:nth-child(even) { flex-direction: column; }
  .deep-image { width: 100%; min-height: 180px; }
  .cta-form input[type="email"] { width: 100%; }
  .cta-form .btn-gold { width: 100%; }
  .guide-box { padding: 20px; }
  .brand-text { font-size: 14px; }
  .mega-panel { display: none; }
}

/* roulang page: category2 */
:root {
  --brand-red: #C8102E;
  --deep-red: #8E0E24;
  --brand-dark: #141414;
  --charcoal: #232323;
  --gold: #C9A063;
  --bg: #F4F1EC;
  --card-bg: #FFFFFF;
  --text: #1E1E1E;
  --text-weak: #6B6B6B;
  --border: rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 8px 30px rgba(20, 20, 20, 0.08);
  --shadow-hover: 0 16px 40px rgba(20, 20, 20, 0.14);
  --space: 80px;
  --container: 1200px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
button, input {
  font-family: inherit;
}
.container-custom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 60px 0;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  display: inline-block;
  background: rgba(200, 16, 46, 0.1);
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}
.section-head p {
  font-size: 16px;
  color: var(--text-weak);
  margin-top: 14px;
}
@media (max-width: 640px) {
  .section {
    padding: 40px 0;
  }
  .section-head h2 {
    font-size: 24px;
  }
}

/* ===== 按钮体系 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 48px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--deep-red) 100%);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-outline:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
  background: rgba(200, 16, 46, 0.04);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== Header / 导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(10px);
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-red), var(--deep-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.35);
}
.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav ul li a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #fff;
}
.main-nav ul li a.active::after {
  transform: scaleX(1);
}
.main-nav ul li a:hover::after {
  transform: scaleX(1);
}
.mega-wrap {
  position: relative;
  margin-left: 8px;
}
.mega-trigger {
  height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mega-trigger:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.mega-panel {
  position: absolute;
  top: 52px;
  right: 0;
  width: 420px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 50;
}
.mega-wrap:hover .mega-panel,
.mega-wrap:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.mega-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.mega-card a {
  display: block;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mega-card a:hover {
  color: var(--brand-red);
  padding-left: 4px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .mega-wrap {
    display: none;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.98);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 24px;
  }
  .main-nav ul li a {
    font-size: 24px;
    padding: 12px 24px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== 页面 Hero ===== */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--charcoal) url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
  padding: 90px 0;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0.6), rgba(142, 14, 36, 0.35) 60%, rgba(20, 20, 20, 0.8));
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.page-hero .breadcrumb a:hover {
  color: var(--gold);
}
.page-hero .breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}
.page-hero h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero .hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .page-hero {
    min-height: 340px;
    padding: 60px 0;
  }
  .page-hero h1 {
    font-size: 32px;
  }
}

/* ===== 时间轴 ===== */
.timeline-section {
  position: relative;
  background: var(--bg);
}
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-red), rgba(200, 16, 46, 0.2));
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 40px;
}
.timeline-item.left {
  left: 0;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
  text-align: left;
}
.timeline-item .dot {
  position: absolute;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2);
}
.timeline-item.left .dot {
  right: -7px;
}
.timeline-item.right .dot {
  left: -7px;
}
.timeline-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: inline-block;
  width: 100%;
  border: 1px solid var(--border);
}
.timeline-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.match-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-red);
  background: #FBE9E8;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.match-teams {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.timeline-item.left .match-teams {
  justify-content: flex-end;
}
.match-teams .score-badge {
  font-size: 15px;
  min-width: 52px;
  height: 32px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand-red), var(--deep-red));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.match-teams .score-badge.gold {
  background: linear-gradient(135deg, var(--gold), #A8813D);
  color: #fff;
}
.match-time {
  font-size: 13px;
  color: var(--text-weak);
  margin-bottom: 10px;
}
.match-status {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.match-status.done {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-weak);
}
.match-status.upcoming {
  background: #FFF3D6;
  color: #A8813D;
}
.match-status.live {
  background: #FBE9E8;
  color: var(--brand-red);
}
@media (max-width: 768px) {
  .timeline::before {
    left: 12px;
  }
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    padding: 0 0 32px 44px;
    text-align: left;
  }
  .timeline-item.left .dot,
  .timeline-item.right .dot {
    left: 6px;
    right: auto;
  }
  .timeline-item.left .match-teams {
    justify-content: flex-start;
  }
}

/* ===== 数据条带 ===== */
.data-strip {
  background: var(--brand-dark);
  padding: 48px 0;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.data-badge {
  background: linear-gradient(135deg, var(--brand-red), var(--deep-red));
  border-radius: var(--radius-pill);
  padding: 18px 24px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.data-badge .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.data-badge .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.data-strip-foot {
  text-align: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 20px;
}
@media (max-width: 900px) {
  .data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .data-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 直播订阅 ===== */
.live-section {
  background: var(--bg);
}
.live-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
  border: 1px solid var(--border);
}
.live-box .live-content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}
.live-box .live-content p {
  color: var(--text-weak);
  margin-bottom: 20px;
  font-size: 15px;
}
.live-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.live-form input[type="text"],
.live-form input[type="tel"] {
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 200px;
}
.live-form input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.18);
}
.live-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 300px;
}
.live-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.live-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.5), transparent 60%);
}
.live-visual .live-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(20, 20, 20, 0.8);
  color: #fff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .live-box {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

/* ===== 赛事服务卡 ===== */
.service-cards {
  background: #ECE8E2;
}
.service-grid {
  row-gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .thumb img {
  transform: scale(1.03);
}
.service-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.25), transparent 55%);
}
.service-card .body {
  padding: 24px;
}
.service-card .body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.service-card .body p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.7;
  margin-bottom: 16px;
}
.card-link {
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.card-link:hover {
  gap: 10px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg);
}
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}
.accordion-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 20px 24px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease;
}
.accordion-title .q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordion-title:hover {
  color: var(--brand-red);
}
.accordion-item.is-active .accordion-title {
  color: var(--brand-red);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.accordion-content {
  padding: 0 24px 20px 64px;
  font-size: 15px;
  color: var(--text-weak);
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-red), var(--deep-red));
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/backpic/back-2.png") center/cover no-repeat;
  opacity: 0.12;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 28px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-section {
    padding: 50px 0;
  }
  .cta-inner h2 {
    font-size: 24px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  border-top: 2px solid var(--brand-red);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  border-left: 3px solid var(--brand-red);
  padding-left: 12px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: #fff;
  position: relative;
}
.footer-col ul li a:hover::before {
  content: "·";
  color: var(--brand-red);
  font-weight: 700;
  position: absolute;
  left: -10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}

/* roulang page: category3 */
:root {
            --red: #C8102E;
            --dark-red: #8E0E24;
            --black: #141414;
            --charcoal: #232323;
            --gold: #C9A063;
            --bg: #F4F1EC;
            --white: #FFFFFF;
            --text: #1A1A1A;
            --text-light: #6B6B6B;
            --text-muted: #999999;
            --border: rgba(0, 0, 0, 0.08);
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow: 0 8px 30px rgba(20, 20, 20, 0.08);
            --shadow-hover: 0 16px 40px rgba(20, 20, 20, 0.14);
            --transition: 0.3s ease;
            --container: 1200px;
            --header-h: 72px;
            --spacer: 80px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 16px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
            border-radius: var(--radius-md);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        button,
        input {
            font-family: inherit;
            font-size: 14px;
            border: none;
            outline: none;
        }

        .container-custom {
            max-width: var(--container);
            margin: 0 auto;
            padding-left: 16px;
            padding-right: 16px;
        }

        /* =================== HEADER / NAV =================== */
        .site-header {
            background: var(--black);
            height: var(--header-h);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .header-inner {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .brand-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-weight: 800;
            font-size: 18px;
            white-space: nowrap;
            letter-spacing: 0.5px;
        }

        .brand-badge {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--red), var(--dark-red));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .brand-text {
            font-size: 16px;
            line-height: 1.2;
        }

        .main-nav {
            display: flex;
            align-items: center;
        }

        .main-nav ul {
            display: flex;
            gap: 4px;
            margin: 0;
            list-style: none;
        }

        .main-nav ul li a {
            display: block;
            padding: 10px 16px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 15px;
            font-weight: 500;
            border-radius: 10px;
            position: relative;
            transition: color var(--transition), background var(--transition);
        }

        .main-nav ul li a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.07);
        }

        .main-nav ul li a.active {
            color: #fff;
        }

        .main-nav ul li a.active::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--red);
            border-radius: 3px 3px 0 0;
        }

        .nav-extra {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mega-trigger {
            position: relative;
        }

        .mega-trigger>button {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
            border-radius: 999px;
            padding: 8px 16px;
            cursor: pointer;
            font-size: 14px;
            transition: background var(--transition), border-color var(--transition);
        }

        .mega-trigger>button:hover {
            background: rgba(255, 255, 255, 0.14);
            border-color: var(--gold);
        }

        .mega-panel {
            position: absolute;
            top: calc(100% + 14px);
            right: 0;
            width: 520px;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
            padding: 18px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            z-index: 120;
        }

        .mega-trigger:hover .mega-panel,
        .mega-trigger:focus-within .mega-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .mega-card {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px;
            border-radius: var(--radius-md);
            background: #faf8f5;
            border: 1px solid var(--border);
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
        }

        .mega-card:hover {
            background: #fff;
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .mega-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--red), var(--dark-red));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            flex-shrink: 0;
        }

        .mega-title {
            font-weight: 700;
            font-size: 14px;
            color: var(--text);
        }

        .mega-desc {
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.5;
            margin-top: 2px;
            display: block;
        }

        .menu-toggle {
            display: none;
            background: none;
            color: #fff;
            font-size: 20px;
            padding: 10px;
            cursor: pointer;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .menu-toggle:hover {
            border-color: var(--gold);
        }

        .mobile-menu {
            position: fixed;
            inset: 0;
            background: var(--black);
            z-index: 200;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s;
            padding: 24px;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 12px;
            transition: background 0.3s, color 0.3s;
        }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .mobile-menu a.active {
            color: var(--gold);
        }

        .mobile-menu .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }

        /* =================== HERO =================== */
        .page-hero {
            background: linear-gradient(to bottom, rgba(20, 20, 20, 0.55), rgba(20, 20, 20, 0.3)),
                linear-gradient(135deg, var(--black) 0%, var(--dark-red) 60%, var(--red) 100%),
                url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-blend-mode: normal, normal, overlay;
            padding: 110px 0 100px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, var(--red), transparent);
            opacity: 0.25;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 999px;
            padding: 6px 20px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .hero-badge i {
            color: var(--gold);
        }

        .page-hero h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: 2px;
        }

        .hero-sub {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.88);
            max-width: 560px;
            margin: 0 auto 36px;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--red), var(--dark-red));
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all var(--transition);
            cursor: pointer;
        }

        .btn-primary:hover {
            box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all var(--transition);
        }

        .btn-ghost:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* =================== HONOR STRIP =================== */
        .honor-strip {
            background: linear-gradient(135deg, var(--black), var(--dark-red), var(--red));
            padding: 40px 0 36px;
            border-bottom: 2px solid var(--gold);
        }

        .honor-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .honor-badge {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.14);
            transition: background var(--transition), transform var(--transition);
        }

        .honor-badge:hover {
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-3px);
        }

        .honor-badge .num {
            font-size: 42px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1.1;
            display: block;
        }

        .honor-badge .label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 4px;
            display: block;
            letter-spacing: 1px;
        }

        .data-note {
            text-align: center;
            color: rgba(255, 255, 255, 0.55);
            font-size: 12px;
            margin-top: 22px;
        }

        /* =================== FEATURE CARDS =================== */
        .feature-section {
            padding: var(--spacer) 0;
        }

        .section-head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 56px;
        }

        .section-tag {
            display: inline-block;
            background: #FBE9E8;
            color: var(--red);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 999px;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text);
            margin-bottom: 12px;
        }

        .section-head p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .feature-grid {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .feature-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .feature-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .feature-card:nth-child(even) .feature-media {
            order: 2;
        }

        .feature-media {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            aspect-ratio: 4 / 3;
        }

        .feature-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .feature-card:hover .feature-media img {
            transform: scale(1.03);
        }

        .feature-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(20, 20, 20, 0.3), transparent 60%);
            border-radius: var(--radius-lg);
        }

        .feature-body {
            padding: 8px 0;
        }

        .feature-body h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 18px;
            line-height: 1.3;
            color: var(--text);
        }

        .feature-body h3 span {
            color: var(--red);
        }

        .feature-body p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.85;
            margin-bottom: 20px;
        }

        .feature-list {
            margin-top: 16px;
            margin-bottom: 4px;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--text);
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--red);
            font-size: 14px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* =================== TIMELINE =================== */
        .timeline-section {
            padding: var(--spacer) 0;
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .timeline {
            position: relative;
            max-width: 780px;
            margin: 0 auto;
            padding-left: 32px;
        }

        .timeline::before {
            content: "";
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--red), var(--gold));
            opacity: 0.35;
        }

        .timeline-item {
            position: relative;
            padding: 18px 0 18px 28px;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: -27px;
            top: 26px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--red);
            border: 3px solid var(--white);
            box-shadow: 0 0 0 2px var(--red);
        }

        .timeline-year {
            font-size: 14px;
            font-weight: 700;
            color: var(--gold);
            background: #1A1A1A;
            display: inline-block;
            border-radius: 6px;
            padding: 2px 10px;
            margin-bottom: 6px;
            letter-spacing: 1px;
        }

        .timeline-item h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text);
        }

        .timeline-item p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* =================== FAQ =================== */
        .faq-section {
            padding: var(--spacer) 0;
        }

        .faq-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-wrap .accordion {
            background: transparent;
            border: none;
            list-style: none;
            margin: 0;
        }

        .faq-wrap .accordion-item {
            background: var(--white);
            border: none !important;
            border-radius: var(--radius-md);
            box-shadow: none;
            margin-bottom: 8px;
            border-bottom: 1px solid var(--border) !important;
            overflow: hidden;
            transition: background var(--transition);
        }

        .faq-wrap .accordion-item.is-active {
            background: #fdfaf7;
        }

        .faq-wrap .accordion-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            padding: 22px 48px 22px 56px;
            position: relative;
            background: transparent !important;
            border: none !important;
            line-height: 1.5;
            cursor: pointer;
            transition: color var(--transition);
        }

        .faq-wrap .accordion-title::before {
            content: "Q";
            position: absolute;
            left: 20px;
            top: 22px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--red);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            text-align: center;
            line-height: 24px;
        }

        .faq-wrap .accordion-title::after {
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 22px;
            color: var(--text-muted);
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .faq-wrap .accordion-item.is-active .accordion-title {
            color: var(--red);
            border-top: 2px solid var(--red) !important;
        }

        .faq-wrap .accordion-item.is-active .accordion-title::after {
            transform: rotate(180deg);
        }

        .faq-wrap .accordion-content {
            border: none !important;
            background: transparent;
            padding: 0 48px 24px 56px;
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.75;
        }

        /* =================== CTA =================== */
        .cta-section {
            padding: 0 0 var(--spacer);
        }

        .cta-box {
            background: linear-gradient(135deg, var(--red), var(--dark-red));
            border-radius: var(--radius-lg);
            padding: 52px 48px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .cta-box::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
        }

        .cta-box h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .cta-box p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 460px;
            margin: 0 auto 28px;
            line-height: 1.6;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-gold-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 30px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            transition: all var(--transition);
        }

        .btn-gold-outline:hover {
            background: var(--gold);
            color: var(--black);
            box-shadow: 0 6px 20px rgba(201, 160, 99, 0.4);
            transform: translateY(-2px);
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--red);
            font-weight: 700;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            border: 1px solid transparent;
        }

        .btn-white:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-2px);
        }

        /* =================== FOOTER =================== */
        .site-footer {
            background: var(--black);
            color: rgba(255, 255, 255, 0.72);
            padding-top: 56px;
            border-top: 2px solid var(--red);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            max-width: 300px;
            margin-top: 12px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 24px;
            height: 2px;
            background: var(--red);
            border-radius: 2px;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: color var(--transition), padding-left var(--transition);
            padding-left: 0;
        }

        .footer-col ul li a:hover {
            color: #fff;
            padding-left: 6px;
        }

        .footer-col ul li a:hover::before {
            content: "·";
            color: var(--red);
            margin-right: 4px;
        }

        .footer-bottom {
            text-align: center;
            padding: 22px 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.4);
            transition: color var(--transition);
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        /* =================== FOCUS STATES =================== */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        /* =================== RESPONSIVE =================== */
        @media (max-width: 1023px) {
            :root {
                --spacer: 56px;
            }

            .main-nav {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .mega-trigger {
                display: none;
            }

            .page-hero {
                padding: 80px 0 70px;
            }

            .page-hero h1 {
                font-size: 40px;
            }

            .feature-card {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 24px;
            }

            .feature-card:nth-child(even) .feature-media {
                order: 0;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

            .honor-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-box {
                padding: 44px 28px;
            }

            .cta-box h2 {
                font-size: 26px;
            }
        }

        @media (max-width: 639px) {
            :root {
                --spacer: 40px;
            }

            .header-inner {
                padding-left: 12px;
                padding-right: 12px;
            }

            .brand-text {
                font-size: 14px;
            }

            .page-hero {
                padding: 60px 0 54px;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .hero-sub {
                font-size: 15px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .btn-primary,
            .btn-ghost {
                width: 100%;
                justify-content: center;
                max-width: 260px;
            }

            .honor-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .honor-badge {
                padding: 16px 10px;
            }

            .honor-badge .num {
                font-size: 32px;
            }

            .honor-badge .label {
                font-size: 12px;
            }

            .section-head h2 {
                font-size: 26px;
            }

            .feature-body h3 {
                font-size: 22px;
            }

            .feature-list li {
                font-size: 13px;
            }

            .timeline {
                padding-left: 24px;
            }

            .timeline-item {
                padding-left: 22px;
            }

            .timeline-item::before {
                left: -21px;
            }

            .faq-wrap .accordion-title {
                padding: 18px 40px 18px 46px;
                font-size: 15px;
            }

            .faq-wrap .accordion-title::before {
                left: 14px;
                top: 18px;
                width: 20px;
                height: 20px;
                font-size: 10px;
                line-height: 20px;
            }

            .faq-wrap .accordion-title::after {
                right: 14px;
                top: 18px;
            }

            .faq-wrap .accordion-content {
                padding: 0 20px 18px 46px;
                font-size: 14px;
            }

            .cta-box {
                border-radius: 18px;
                padding: 36px 20px;
            }

            .cta-box h2 {
                font-size: 24px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .btn-white,
            .btn-gold-outline {
                width: 100%;
                justify-content: center;
                max-width: 260px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                padding: 18px 12px;
                font-size: 12px;
                line-height: 1.6;
            }
        }

/* roulang page: category4 */
:root {
  --milan-red: #C8102E;
  --milan-deep-red: #8E0E24;
  --milan-black: #141414;
  --charcoal: #232323;
  --gold: #C9A063;
  --bg-warm: #F4F1EC;
  --text-main: #222222;
  --text-weak: #6B6B6B;
  --border-soft: rgba(0, 0, 0, 0.08);
  --card-shadow: 0 8px 30px rgba(20, 20, 20, 0.08);
  --card-shadow-hover: 0 16px 40px rgba(20, 20, 20, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-btn: 12px;
  --spacing-section: 80px;
  --font-stack: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-stack);
  background: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
ul, ol { list-style: none; }
button, input { font-family: inherit; }
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section { padding: var(--spacing-section) 0; }
.section-sm { padding: 40px 0; }
.section-title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-weak);
  max-width: 640px;
  margin-bottom: 40px;
}
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, #D41B3F, var(--milan-red) 60%, #A30E2A);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.1);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
}
.btn-secondary {
  background: transparent;
  color: #333;
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-secondary:hover {
  color: var(--milan-red);
  border-color: var(--milan-red);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn:focus-visible, input:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Header & Nav */
.site-header {
  background: rgba(20, 20, 20, 0.98);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--milan-red), var(--milan-deep-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 0 0 2px rgba(201, 160, 99, 0.4);
}
.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav ul li a {
  display: inline-block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  background: var(--milan-red);
  border-radius: 99px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: all 0.3s ease;
}
.main-nav ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.main-nav ul li a.active {
  color: #fff;
  font-weight: 600;
}
.nav-mega-trigger {
  position: relative;
  margin-left: 8px;
}
.mega-toggle {
  height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mega-toggle:hover {
  background: rgba(200, 16, 46, 0.2);
  border-color: rgba(200, 16, 46, 0.5);
}
.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 420px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 2000;
}
.nav-mega-trigger:hover .mega-panel,
.nav-mega-trigger:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--milan-red);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #faf7f2;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}
.mega-link i {
  color: var(--milan-red);
  width: 16px;
  text-align: center;
}
.mega-link:hover {
  background: #FBE9E8;
  color: var(--milan-red);
  transform: translateX(3px);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--milan-black);
  z-index: 9000;
  padding: 100px 32px;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 12px; }
.mobile-nav .close-mobile {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--milan-black) 0%, #1a0a0e 50%, #2b0c14 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--milan-black) 0%, transparent 60%);
}
.banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.banner-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
.banner-crumb a { color: rgba(255, 255, 255, 0.6); }
.banner-crumb a:hover { color: var(--gold); }
.banner-crumb span { color: var(--gold); }
.page-banner h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.page-banner h2 {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin-bottom: 32px;
}
.banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Community Stats Strip */
.stats-strip {
  background: linear-gradient(90deg, var(--milan-red), var(--milan-deep-red));
  padding: 32px 0;
  margin-top: -32px;
  position: relative;
  z-index: 5;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.3);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 8px; }
.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}
.stat-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

/* Masonry Card Wall */
.card-wall-section { padding-top: 72px; }
.card-wall {
  columns: 3;
  column-gap: 24px;
}
.wall-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--border-soft);
}
.wall-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.wall-card-img {
  position: relative;
  background: #222;
  overflow: hidden;
}
.wall-card-img img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.wall-card:hover .wall-card-img img { transform: scale(1.03); }
.wall-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 60%);
}
.wall-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--milan-red), var(--milan-deep-red));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.wall-card-body { padding: 20px 20px 24px; }
.wall-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--text-main);
}
.wall-card-body p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.65;
  margin-bottom: 14px;
}
.wall-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-weak);
}
.wall-card-meta i { color: var(--milan-red); }
.wall-card-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #faf7f2;
  border-top: 1px solid var(--border-soft);
}
.avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--milan-red), #555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.wall-card-user span {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.wall-card-user small {
  font-size: 12px;
  color: var(--text-weak);
  margin-left: auto;
}

/* User Entry Cards */
.entry-section { position: relative; }
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.entry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.entry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--milan-red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.entry-card:hover::before { transform: scaleX(1); }
.entry-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.entry-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #FBE9E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--milan-red);
  font-size: 22px;
  margin-bottom: 20px;
}
.entry-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.entry-card p {
  font-size: 14px;
  color: var(--text-weak);
  margin-bottom: 20px;
  line-height: 1.65;
}
.entry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--milan-red);
}
.entry-link i { transition: transform 0.3s ease; }
.entry-link:hover i { transform: translateX(4px); }

/* Watch Party Timeline */
.watch-section {
  background: linear-gradient(135deg, #1a1a1a, #2a0a10);
  color: #fff;
}
.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.watch-content h3 {
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 16px;
}
.watch-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.7;
}
.timeline {
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--milan-red), rgba(255, 255, 255, 0.1));
}
.timeline-item {
  position: relative;
  padding: 12px 0 16px 12px;
  margin-bottom: 8px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--milan-red);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.3);
}
.timeline-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #fff;
}
.timeline-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.timeline-item time {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.watch-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(6px);
}
.watch-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.watch-card h4 { font-size: 18px; margin-bottom: 8px; }
.watch-card p { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.watch-card .btn { margin-top: 16px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.accordion-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.accordion-title {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s ease;
}
.accordion-title:hover { color: var(--milan-red); }
.accordion-title .q-icon {
  width: 28px;
  height: 28px;
  background: #FBE9E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--milan-red);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.accordion-title .accordion-arrow {
  margin-left: auto;
  color: var(--text-weak);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.accordion-item.is-active .accordion-title { color: var(--milan-red); }
.accordion-item.is-active .accordion-arrow { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-content-inner {
  padding: 0 24px 24px 68px;
  font-size: 15px;
  color: var(--text-weak);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #A30E2A, var(--milan-red) 55%, #6B0918);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-3.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 160, 99, 0.3);
}

/* Footer */
.site-footer {
  background: #0d0d0d;
  margin-top: 80px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--milan-red), var(--gold));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 40px;
}
.footer-brand .brand-text {
  font-size: 17px;
  color: #fff;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 320px;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--milan-red);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #fff;
  padding-left: 14px;
}
.footer-col ul li a::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--milan-red);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 1023px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-right { gap: 8px; }
  .card-wall { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .watch-grid { grid-template-columns: 1fr; }
  .entry-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-banner h1 { font-size: 34px; }
}
@media (max-width: 639px) {
  :root { --spacing-section: 40px; }
  .brand-text { font-size: 15px; }
  .brand-badge { width: 36px; height: 36px; font-size: 16px; }
  .section-title { font-size: 24px; }
  .page-banner { padding: 56px 0 48px; }
  .page-banner h1 { font-size: 30px; }
  .page-banner h2 { font-size: 15px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 24px; }
  .card-wall { columns: 1; }
  .entry-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 24px; }
  .cta-section { padding: 40px 24px; }
  .cta-section h3 { font-size: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; }
  .watch-card { padding: 24px; }
  .accordion-content-inner { padding-left: 24px; }
  .banner-actions { flex-direction: column; }
  .banner-actions .btn { width: 100%; }
}
