* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
  }
  body {
    background: #fdf8f5;
    color: #2d2a26;
    line-height: 1.7;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; border: 0; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

  /* 导航 */
  .navbar {
    background: linear-gradient(90deg, #7f1d1d 0%, #ea580c 100%);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(127, 29, 29, .35);
  }
  .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background .3s, transform .2s;
    letter-spacing: .5px;
  }
  .nav-links a:hover { background: rgba(253, 230, 138, .25); transform: translateY(-1px); }

  /* Hero */
  .hero {
    background: linear-gradient(135deg, #7f1d1d 0%, #ea580c 55%, #fde68a 120%);
    padding: 72px 0 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .hero::after {
    content: "";
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 230, 138, .25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero h1 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, .35);
    letter-spacing: 1px;
  }
  .hero-sub {
    text-align: center;
    font-size: 17px;
    opacity: .95;
    margin-bottom: 28px;
  }
  .hero-img {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    overflow: hidden;
    border: 3px solid rgba(253, 230, 138, .5);
  }
  .hero-img img { width: 100%; height: 380px; object-fit: cover; }

  /* GEO 区块 */
  .geo-intro {
    background: #fff;
    padding: 56px 0;
    border-bottom: 1px solid #f1e4da;
  }
  .geo-intro .inner {
    max-width: 980px;
    margin: 0 auto;
  }
  .geo-intro h2 {
    font-size: 28px;
    font-weight: 800;
    color: #7f1d1d;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
  }
  .geo-intro h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ea580c, #fde68a);
    border-radius: 2px;
    margin-top: 6px;
  }
  .geo-intro p {
    font-size: 16px;
    color: #4a4238;
    text-align: justify;
    margin-top: 12px;
  }

  /* 通用区块 */
  .section {
    padding: 56px 0;
  }
  .section-title {
    font-size: 30px;
    font-weight: 800;
    color: #7f1d1d;
    text-align: center;
    margin-bottom: 36px;
    position: relative;
  }
  .section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #ea580c, #fde68a);
    border-radius: 2px;
    margin: 10px auto 0;
  }
  .section-alt { background: #fff; }
  .section-flame { background: linear-gradient(180deg, #fff 0%, #fef3ea 100%); }

  /* 卡片网格 */
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 768px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
  }

  /* 卡片 */
  .card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 8px 30px rgba(127, 29, 29, .08);
    border: 1px solid #f4e4d8;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
  }
  .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ea580c, #fde68a, #ea580c);
    background-size: 200% 100%;
    animation: flow 3s linear infinite;
  }
  @keyframes flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
  .card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(127, 29, 29, .14); }
  .card h3 { font-size: 19px; font-weight: 700; color: #7f1d1d; margin-bottom: 10px; }
  .card p { font-size: 14px; color: #5a5048; line-height: 1.65; }

  /* 统计 */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
  .stat-item {
    text-align: center;
    padding: 38px 20px;
    background: linear-gradient(145deg, #7f1d1d, #ea580c);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 12px 32px rgba(127, 29, 29, .25);
  }
  .stat-item .num { font-size: 44px; font-weight: 900; }
  .stat-item .label { font-size: 15px; margin-top: 8px; opacity: .9; }

  /* 故事 */
  .story-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }
  .story-wrap .text { flex: 1.2; min-width: 300px; }
  .story-wrap .img { flex: 1; min-width: 280px; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 36px rgba(0, 0, 0, .12); }
  .story-wrap .img img { width: 100%; height: 340px; object-fit: cover; }

  /* 赛事 */
  .event-card {
    background: linear-gradient(145deg, #7f1d1d, #ea580c);
    color: #fff;
    border-radius: 18px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(127, 29, 29, .25);
  }
  .event-card::after {
    content: "🔥";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 48px;
    opacity: .3;
  }
  .event-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #fde68a; }

  /* 排行 */
  .rank-list { list-style: none; }
  .rank-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    border-left: 4px solid #ea580c;
  }
  .rank-list .rscore { font-weight: 800; color: #ea580c; }

  /* 口碑 */
  .testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(127, 29, 29, .08);
    border: 1px solid #f4e4d8;
  }
  .testi-card .stars { color: #f59e0b; font-size: 18px; margin-bottom: 10px; }
  .testi-card p { font-size: 14px; color: #5a5048; font-style: italic; }
  .testi-card .author { font-weight: 700; color: #7f1d1d; margin-top: 12px; }

  /* 新闻 */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  @media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } }
  .news-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 8px 28px rgba(127, 29, 29, .07);
    border: 1px solid #f4e4d8;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(127, 29, 29, .12); }
  .news-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 13px;
    margin-bottom: 10px;
  }
  .news-date { color: #ea580c; font-weight: 700; }
  .news-tag {
    background: #fde68a;
    color: #7f1d1d;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
  }
  .news-card h3 { font-size: 18px; font-weight: 700; color: #2d2a26; margin-bottom: 8px; line-height: 1.4; }
  .news-card h3 a { color: inherit; text-decoration: none; }
  .news-card h3 a:hover { color: #ea580c; }
  .news-card p { font-size: 14px; color: #5a5048; flex: 1; }

  /* FAQ */
  .faq-list { max-width: 960px; margin: 0 auto; }
  .faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(127, 29, 29, .06);
    border: 1px solid #f4e4d8;
    overflow: hidden;
  }
  .faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 16px;
    color: #7f1d1d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-question::after { content: "+"; font-size: 24px; color: #ea580c; }
  .faq-answer {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #5a5048;
    line-height: 1.7;
  }

  /* CTA */
  .cta-section {
    background: linear-gradient(120deg, #7f1d1d, #ea580c);
    padding: 64px 0;
    text-align: center;
    color: #fff;
    border-radius: 0;
  }
  .cta-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; color: #fde68a; }
  .cta-section p { font-size: 16px; margin-bottom: 24px; opacity: .95; }
  .btn {
    display: inline-block;
    background: #fde68a;
    color: #7f1d1d;
    padding: 14px 38px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    transition: transform .3s, box-shadow .3s;
  }
  .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, .3); }

  /* 页脚 */
  .footer {
    background: #1c1714;
    color: #b8a99e;
    padding: 48px 0 24px;
    font-size: 14px;
  }
  .footer .cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
  }
  @media (max-width: 768px) { .footer .cols { grid-template-columns: 1fr; } }
  .footer h4 { color: #fde68a; font-size: 16px; margin-bottom: 12px; }
  .footer a { color: #b8a99e; text-decoration: none; }
  .footer a:hover { color: #fde68a; }
  .footer .bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    text-align: center;
    color: #8a7a6e;
  }