* {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(180deg, #fdf8f5 0%, #fef3ee 50%, #fdeae3 100%);
  color: #3a2e2a;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* 导航栏 */
.nav {
  background: linear-gradient(135deg, #e8796f 0%, #f1957c 45%, #fbbf24 100%);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(232, 121, 111, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.nav-brand {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.nav-links a:hover {
  background: rgba(255,255,255,0.30);
  transform: scale(1.03);
}

/* 页面主体 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* 横幅 */
.hero {
  background: linear-gradient(135deg, #e8796f 0%, #f7a072 50%, #fbbf24 100%);
  border-radius: 24px;
  padding: 50px 40px;
  margin-top: 30px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero h1 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}
.hero-geo {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

/* 区块 */
.section {
  margin-top: 50px;
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
.section-sub {
  text-align: center;
  font-size: 15px;
  color: #8a7b72;
  max-width: 680px;
  margin: -16px auto 30px;
}

/* 卡片网格 */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(232, 121, 111, 0.08);
  border: 1px solid rgba(232, 121, 111, 0.10);
  transition: all 0.35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232, 121, 111, 0.18);
  border-color: rgba(232, 121, 111, 0.3);
}
.card-icon {
  font-size: 42px;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 18px;
  color: #3a2e2a;
  margin-bottom: 10px;
  font-weight: 700;
}
.card p {
  font-size: 14px;
  color: #756a64;
  line-height: 1.7;
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* 数据统计 */
.stats-band {
  background: linear-gradient(135deg, #2b2b33 0%, #3d3940 100%);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: #fff;
  text-align: center;
}
.stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1.2;
}
.stat-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* 品牌故事 */
.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(232, 121, 111, 0.08);
}
.story-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
}
.story-text h3 {
  font-size: 24px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-text p {
  font-size: 15px;
  color: #5f534d;
  line-height: 1.9;
}

/* 焦点赛事列表 */
.match-list {
  display: grid;
  gap: 16px;
}
.match-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 2px 12px rgba(232,121,111,0.06);
  border-left: 4px solid #e8796f;
}
.match-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}
.match-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #3a2e2a;
}
.match-info p {
  font-size: 13px;
  color: #999;
}

/* 排行 */
.rank-list {
  counter-reset: rank;
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.rank-item::before {
  counter-increment: rank;
  content: counter(rank);
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.rank-item img {
  width: 40px; height: 40px;
  object-fit: cover;
  border-radius: 10px;
}
.rank-item span {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #4a3d36;
}
.rank-item em {
  font-style: normal;
  font-size: 13px;
  color: #e8796f;
  font-weight: 600;
}

/* 评价 */
.testimonial-card {
  text-align: center;
  padding: 24px;
}
.testimonial-card .quote {
  font-size: 32px;
  color: #fbbf24;
}
.testimonial-card p {
  font-size: 14px;
  color: #756a64;
  margin: 12px 0;
  line-height: 1.8;
}
.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: #3a2e2a;
}
.testimonial-card .stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}

/* 覆盖 */
.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.coverage-item {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(232,121,111,0.06);
}
.coverage-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}
.coverage-item h4 {
  font-size: 16px;
  font-weight: 700;
}
.coverage-item p {
  font-size: 13px;
  color: #999;
}

/* 集锦 */
.highlight-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.highlight-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.highlight-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.highlight-item .hl-body {
  padding: 20px;
}
.highlight-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.highlight-item p {
  font-size: 14px;
  color: #756a64;
  line-height: 1.7;
}
.highlight-item .tag {
  display: inline-block;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  color: #fff;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 10px;
}

/* 新闻 */
.news-list {
  display: grid;
  gap: 28px;
}
.news-item {
  background: #fff;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(232,121,111,0.06);
  border-left: 4px solid #e8796f;
  transition: all 0.3s;
}
.news-item:hover {
  border-left-color: #fbbf24;
  box-shadow: 0 6px 24px rgba(232,121,111,0.12);
}
.news-date {
  font-size: 13px;
  color: #b89a93;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.news-title {
  font-size: 20px;
  font-weight: 700;
  color: #3a2e2a;
  margin-bottom: 8px;
}
.news-summary {
  font-size: 14px;
  color: #756a64;
  line-height: 1.8;
}

/* FAQ */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px 30px;
  box-shadow: 0 2px 14px rgba(232,121,111,0.06);
}
.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #3a2e2a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item h3::before {
  content: "";
  width: 8px; height: 22px;
  background: linear-gradient(135deg, #e8796f, #fbbf24);
  border-radius: 4px;
}
.faq-item p {
  font-size: 14px;
  color: #756a64;
  line-height: 1.8;
  padding-left: 18px;
}

/* 页脚 */
.footer {
  background: linear-gradient(135deg, #2b2b33, #3d3940);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer p, .footer a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.footer a:hover {
  color: #fbbf24;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  margin: 0 6px;
}

/* 响应式 */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .story-wrap { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .coverage-list { grid-template-columns: 1fr; }
  .highlight-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .nav-links { gap: 12px; flex-wrap: wrap; }
}