* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    background-color: #faf6ef;
    background-image: radial-gradient(circle, rgba(120, 53, 15, 0.04) 1px, transparent 1px);
    background-size: 26px 26px;
    color: #292017;
    line-height: 1.75;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  img {
    max-width: 100%;
    display: block;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===== Header ===== */
  .site-header {
    background: linear-gradient(135deg, #78350f 0%, #d97706 100%);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(120, 53, 15, 0.35);
  }
  .header-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  .logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .nav-links a {
    color: #fffdf8;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  /* ===== Hero ===== */
  .hero {
    background: linear-gradient(140deg, #120c08 0%, #45260f 40%, #b45309 100%);
    color: #fdf6e3;
    padding: 72px 24px 56px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "🏜️⚽🏀🎮";
    position: absolute;
    right: 4%;
    top: 12%;
    font-size: 110px;
    opacity: 0.18;
    letter-spacing: 20px;
    transform: rotate(-8deg);
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 860px;
  }
  .hero h1 {
    font-size: 36px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff7e6, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .geo-intro p {
    font-size: 16px;
    color: rgba(253, 246, 227, 0.92);
    border-left: 4px solid #f59e0b;
    padding-left: 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1c1308;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.45);
  }
  .btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: #fdf6e3;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    border: 1.5px solid rgba(253, 246, 227, 0.4);
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
  }
  .hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .hero-badge img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }

  /* ===== Section common ===== */
  section {
    padding: 60px 0;
  }
  .section-head {
    text-align: center;
    margin-bottom: 40px;
  }
  .section-head .tag {
    display: inline-block;
    background: linear-gradient(135deg, #d97706, #78350f);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 999px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .section-head .tag a {
    color: #fff;
  }
  .section-head h2 {
    font-size: 30px;
    font-weight: 800;
    color: #3f2d1c;
    letter-spacing: 1px;
  }
  .section-head p {
    color: #7c6a55;
    max-width: 640px;
    margin: 8px auto 0;
    font-size: 15px;
  }

  /* ===== Data stats ===== */
  .data-stats {
    background: linear-gradient(180deg, #faf6ef, #f1e4d0);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .stat-card {
    background: #fffaf2;
    border: 1px solid #e6d3b8;
    border-radius: 16px;
    padding: 32px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(120, 53, 15, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .stat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d97706, #f59e0b, #d97706);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.12);
  }
  .stat-card:hover::after {
    opacity: 1;
  }
  .stat-num {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #d97706, #7f1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label {
    margin-top: 6px;
    color: #7c6a55;
    font-size: 15px;
  }
  .stat-icon {
    font-size: 30px;
    margin-bottom: 6px;
  }

  /* ===== Core advantages ===== */
  .core-advantages {
    background: #faf6ef;
  }
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .advantage-card {
    background: linear-gradient(160deg, #fffaf2, #f5e8d5);
    border: 1px solid #e6d3b8;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.35s ease;
  }
  .advantage-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 34px rgba(120, 53, 15, 0.12);
    border-color: #d97706;
  }
  .advantage-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(120, 53, 15, 0.18);
  }
  .advantage-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3f2d1c;
    margin-bottom: 8px;
  }
  .advantage-card p {
    font-size: 14px;
    color: #7c6a55;
  }

  /* ===== Scores ===== */
  .scores {
    background: linear-gradient(160deg, #241408, #5d3a1a);
    color: #fdf6e3;
  }
  .scores .section-head h2 {
    color: #fdf6e3;
  }
  .scores .section-head p {
    color: rgba(253, 246, 227, 0.65);
  }
  .scores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .match-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 22px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }
  .match-card:hover {
    border-color: #f59e0b;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  }
  .match-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .league-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 999px;
  }
  .league-name img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
  }
  .match-status {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.15);
    color: #86efac;
    font-weight: 600;
  }
  .match-status.live {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
  }
  .match-teams {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
  }
  .team {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
  }
  .team img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  .score-big {
    font-size: 30px;
    font-weight: 800;
    color: #fcd34d;
    padding: 0 14px;
  }
  .match-foot {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(253, 246, 227, 0.55);
  }
  .scores-more {
    text-align: center;
    margin-top: 32px;
  }
  .btn-outline {
    display: inline-block;
    border: 1.5px solid #f59e0b;
    color: #f59e0b;
    padding: 10px 30px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 15px;
  }
  .btn-outline:hover {
    background: #f59e0b;
    color: #241408;
    transform: translateY(-2px);
  }

  /* ===== Featured events ===== */
  .featured-events {
    background: #faf6ef;
  }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .event-card {
    background: #fffaf2;
    border: 1px solid #e6d3b8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.12);
  }
  .event-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }
  .event-body {
    padding: 16px;
  }
  .event-body .event-league {
    font-size: 12px;
    color: #b45309;
    font-weight: 700;
    background: #fef3c7;
    padding: 3px 10px;
    border-radius: 999px;
    display: inline-block;
  }
  .event-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #3f2d1c;
    margin-top: 8px;
  }
  .event-body p {
    font-size: 13px;
    color: #7c6a55;
    margin-top: 6px;
  }

  /* ===== Brand story ===== */
  .brand-story {
    background: linear-gradient(160deg, #f1e4d0, #faf6ef);
  }
  .brand-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .brand-img {
    flex: 1 1 360px;
  }
  .brand-img img {
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(120, 53, 15, 0.18);
  }
  .brand-text {
    flex: 1 1 360px;
  }
  .brand-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #3f2d1c;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .brand-text p {
    color: #6d5a44;
    margin-bottom: 14px;
    font-size: 15px;
  }
  .brand-flag {
    display: inline-block;
    background: linear-gradient(135deg, #d97706, #7f1d1d);
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
  }

  /* ===== News ===== */
  .news-list {
    background: linear-gradient(180deg, #faf6ef, #f3e9d9);
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .news-card {
    background: #fffaf2;
    border: 1px solid #e6d3b8;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(120, 53, 15, 0.05);
  }
  .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.1);
    border-color: #d97706;
  }
  .news-date {
    font-size: 13px;
    color: #b45309;
    font-weight: 600;
    background: #fef3c7;
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    align-self: flex-start;
  }
  .news-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3f2d1c;
    margin: 12px 0 8px;
    line-height: 1.4;
  }
  .news-card p {
    font-size: 14px;
    color: #7c6a55;
    flex: 1;
    margin-bottom: 12px;
  }
  .news-card .news-link {
    color: #d97706;
    font-weight: 600;
    font-size: 14px;
  }
  .news-card .news-link:hover {
    color: #78350f;
  }

  /* ===== Coverage ===== */
  .coverage {
    background: linear-gradient(140deg, #1c120a, #4a2c14);
    color: #fdf6e3;
  }
  .coverage .section-head h2 {
    color: #fdf6e3;
  }
  .coverage .section-head p {
    color: rgba(253, 246, 227, 0.6);
  }
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .coverage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.3s;
  }
  .coverage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f59e0b;
  }
  .coverage-card .cov-icon {
    font-size: 36px;
  }
  .coverage-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
  }
  .coverage-card p {
    font-size: 13px;
    color: rgba(253, 246, 227, 0.6);
    margin-top: 6px;
  }

  /* ===== Partners ===== */
  .partners {
    background: #faf6ef;
  }
  .partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    align-items: center;
  }
  .partner-item {
    background: #fffaf2;
    border: 1px solid #e6d3b8;
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #5d3a1a;
    transition: all 0.3s;
  }
  .partner-item img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
  .partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(120, 53, 15, 0.1);
  }

  /* ===== CTA ===== */
  .cta {
    background: linear-gradient(135deg, #d97706, #78350f);
    text-align: center;
    color: #fff;
    padding: 70px 24px;
  }
  .cta h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .cta p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 26px;
  }
  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta .btn-primary {
    background: #fff;
    color: #78350f;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  .cta .btn-primary:hover {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  }
  .cta .btn-secondary {
    border-color: #fff;
    color: #fff;
  }
  .cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  /* ===== FAQ ===== */
  .faq {
    background: #faf6ef;
  }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    background: #fffaf2;
    border: 1px solid #e6d3b8;
    border-radius: 14px;
    padding: 22px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(120, 53, 15, 0.04);
  }
  .faq-item:hover {
    border-color: #d97706;
  }
  .faq-item summary {
    font-size: 17px;
    font-weight: 700;
    color: #3f2d1c;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .faq-item summary::before {
    content: "❓";
    font-size: 20px;
  }
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  .faq-item[open] summary::before {
    content: "💡";
  }
  .faq-item p {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e6d3b8;
    color: #6d5a44;
    font-size: 15px;
  }

  /* ===== Footer ===== */
  .site-footer {
    background: linear-gradient(160deg, #1c120a, #3f2a14);
    color: #e7d6b8;
    padding: 50px 0 0;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f5e8d5;
  }
  .footer-brand p {
    font-size: 14px;
    color: rgba(231, 214, 184, 0.7);
    line-height: 1.7;
  }
  .footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fcd34d;
  }
  .footer-col a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    color: rgba(231, 214, 184, 0.75);
    transition: all 0.2s;
  }
  .footer-col a:hover {
    color: #fcd34d;
    padding-left: 4px;
  }
  .footer-contact p {
    font-size: 14px;
    padding: 4px 0;
    color: rgba(231, 214, 184, 0.75);
  }
  .footer-bottom {
    border-top: 1px solid rgba(231, 214, 184, 0.12);
    padding: 18px 24px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: rgba(231, 214, 184, 0.6);
  }
  .footer-bottom a {
    color: #fcd34d;
    margin: 0 6px;
  }
  .footer-bottom a:hover {
    text-decoration: underline;
  }

  /* ===== Responsive ===== */
  @media (max-width: 992px) {
    .stats-grid,
    .advantages-grid,
    .events-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .scores-grid {
      grid-template-columns: 1fr;
    }
    .coverage-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .hero h1 {
      font-size: 28px;
    }
  }
  @media (max-width: 640px) {
    .stats-grid,
    .advantages-grid,
    .events-grid,
    .news-grid,
    .coverage-grid {
      grid-template-columns: 1fr;
    }
    .hero {
      padding: 48px 16px;
    }
    .section-head h2 {
      font-size: 24px;
    }
    .header-inner {
      flex-direction: column;
    }
    .nav-links {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }