/* 全局重置与字体强制 */
    * {
      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: linear-gradient(135deg, #0a0e27 0%, #1a1040 50%, #0d2137 100%);
      color: #e2f3f5;
      line-height: 1.7;
      overflow-x: hidden;
    }
    a {
      color: #2dd4bf;
      text-decoration: none;
      transition: color 0.3s;
    }
    a:hover {
      color: #38bdf8;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 导航栏 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(10, 14, 39, 0.85);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(45, 212, 191, 0.2);
      padding: 14px 0;
    }
    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .brand-logo {
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(90deg, #2dd4bf, #38bdf8, #a855f7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      white-space: nowrap;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.95rem;
      font-weight: 500;
      padding: 6px 2px;
      position: relative;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, #2dd4bf, #38bdf8);
      transition: width 0.3s;
    }
    .nav-links a:hover::after {
      width: 100%;
    }

    /* Hero */
    .hero-section {
      padding: 160px 0 80px;
      text-align: center;
      position: relative;
    }
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }
    .hero-section .container {
      position: relative;
      z-index: 1;
    }
    .hero-section h1 {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(120deg, #2dd4bf, #38bdf8, #a855f7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 24px;
      letter-spacing: 2px;
    }
    .hero-sub {
      font-size: 1.1rem;
      color: #94a3b8;
      max-width: 720px;
      margin: 0 auto;
    }
    .hero-img {
      margin-top: 40px;
      border-radius: 20px;
      max-width: 100%;
      box-shadow: 0 20px 60px rgba(45, 212, 191, 0.2);
    }

    /* GEO 地域介绍 */
    .geo-intro {
      padding: 40px 0;
    }
    .geo-intro .inner {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 40px;
      border-left: 4px solid #2dd4bf;
    }
    .geo-intro h2 {
      font-size: 1.6rem;
      margin-bottom: 16px;
      color: #2dd4bf;
    }
    .geo-intro p {
      color: #cbd5e1;
      font-size: 1rem;
    }

    /* 通用区块 */
    .section {
      padding: 80px 0;
    }
    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 48px;
      background: linear-gradient(90deg, #2dd4bf, #38bdf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* 数据统计 */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
    }
    .stat-card {
      text-align: center;
      padding: 32px 20px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      border: 1px solid rgba(45, 212, 191, 0.2);
      backdrop-filter: blur(10px);
    }
    .stat-num {
      font-size: 2.4rem;
      font-weight: 800;
      background: linear-gradient(120deg, #2dd4bf, #38bdf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .stat-label {
      color: #94a3b8;
      margin-top: 8px;
      font-size: 0.9rem;
    }

    /* 核心优势 */
    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }
    .advantage-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 18px;
      padding: 36px 28px;
      border: 1px solid rgba(56, 189, 248, 0.15);
      transition: transform 0.3s, box-shadow 0.3s;
      backdrop-filter: blur(8px);
    }
    .advantage-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(45, 212, 191, 0.15);
    }
    .advantage-icon {
      font-size: 2.4rem;
      margin-bottom: 16px;
    }
    .advantage-card h3 {
      font-size: 1.2rem;
      color: #e2f3f5;
      margin-bottom: 12px;
    }
    .advantage-card p {
      color: #94a3b8;
      font-size: 0.92rem;
    }

    /* 品牌故事 */
    .brand-story .inner {
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 20px;
      padding: 48px;
      border: 1px solid rgba(168, 85, 247, 0.1);
    }
    .brand-story img {
      width: 320px;
      max-width: 100%;
      border-radius: 16px;
    }
    .brand-story .text h3 {
      font-size: 1.6rem;
      margin-bottom: 16px;
      color: #38bdf8;
    }
    .brand-story .text p {
      color: #9ca3af;
      margin-bottom: 12px;
    }

    /* 游戏推荐 */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 28px;
    }
    .game-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(45, 212, 191, 0.15);
      transition: transform 0.3s;
    }
    .game-card:hover {
      transform: scale(1.03);
    }
    .game-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }
    .game-card .game-info {
      padding: 20px;
    }
    .game-card h3 {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }
    .game-card .game-tag {
      display: inline-block;
      background: rgba(45, 212, 191, 0.2);
      color: #2dd4bf;
      font-size: 0.75rem;
      padding: 2px 10px;
      border-radius: 20px;
    }

    /* 热门排行 */
    .rank-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .rank-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 12px;
      margin-bottom: 12px;
      border-left: 3px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }
    .rank-item:hover {
      border-left-color: #2dd4bf;
      background: rgba(45, 212, 191, 0.08);
    }
    .rank-badge {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2dd4bf, #38bdf8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #0a0e27;
    }
    .rank-info {
      flex: 1;
    }
    .rank-info .name {
      font-weight: 600;
    }
    .rank-info .stats {
      font-size: 0.85rem;
      color: #94a3b8;
    }

    /* 焦点赛事 */
    .event-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }
    .event-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 18px;
      padding: 32px;
      border: 1px solid rgba(56, 189, 248, 0.2);
      text-align: center;
      transition: background 0.3s;
    }
    .event-card:hover {
      background: rgba(56, 189, 248, 0.1);
    }
    .event-icon {
      font-size: 2.5rem;
      margin-bottom: 12px;
    }
    .event-card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
    }
    .event-card p {
      color: #94a3b8;
      font-size: 0.9rem;
    }

    /* 用户口碑 */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }
    .testimonial-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 28px;
      border: 1px solid rgba(168, 85, 247, 0.1);
    }
    .testimonial-card .quote {
      font-size: 1.8rem;
      color: #8b5cf6;
    }
    .testimonial-card p {
      color: #cbd5e1;
      font-style: italic;
      margin-bottom: 16px;
    }
    .testimonial-card .user {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-card .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2dd4bf, #8b5cf6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #fff;
    }
    .testimonial-card .name {
      font-size: 0.9rem;
      color: #94a3b8;
    }

    /* 服务覆盖 */
    .coverage-map {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      text-align: center;
    }
    .coverage-item {
      padding: 24px 12px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 14px;
      border: 1px solid rgba(45, 212, 191, 0.1);
    }
    .coverage-item .city {
      font-size: 1.1rem;
      font-weight: 700;
      color: #38bdf8;
    }
    .coverage-item .desc {
      font-size: 0.8rem;
      color: #94a3b8;
      margin-top: 6px;
    }

    /* 新闻 */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 28px;
    }
    .news-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: transform 0.3s;
    }
    .news-card:hover {
      transform: translateY(-4px);
    }
    .news-card .news-body {
      padding: 24px;
    }
    .news-card h3 {
      font-size: 1.15rem;
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .news-card time {
      color: #2dd4bf;
      font-size: 0.85rem;
      display: block;
      margin-bottom: 12px;
    }
    .news-card p {
      color: #94a3b8;
      font-size: 0.9rem;
      line-height: 1.65;
    }

    /* FAQ */
    .faq-list {
      max-width: 860px;
      margin: 0 auto;
    }
    .faq-item {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 14px;
      padding: 28px;
      margin-bottom: 20px;
      border-left: 3px solid #2dd4bf;
    }
    .faq-item h3 {
      font-size: 1.1rem;
      margin-bottom: 12px;
      color: #38bdf8;
    }
    .faq-item p {
      color: #9ca3af;
      font-size: 0.95rem;
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(56, 189, 248, 0.2));
      border-radius: 24px;
      padding: 60px 40px;
      text-align: center;
    }
    .cta-section h2 {
      font-size: 2rem;
      margin-bottom: 16px;
    }
    .cta-section p {
      max-width: 600px;
      margin: 0 auto 24px;
      color: #cbd5e1;
    }
    .cta-btn {
      display: inline-block;
      padding: 14px 36px;
      background: linear-gradient(90deg, #2dd4bf, #38bdf8);
      color: #0a0e27;
      font-weight: 700;
      border-radius: 30px;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(45, 212, 191, 0.4);
      color: #0a0e27;
    }

    /* 下载中心 */
    .download-section .inner {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
    }
    .download-section img {
      width: 220px;
      border-radius: 24px;
      box-shadow: 0 16px 48px rgba(45, 212, 191, 0.25);
    }
    .download-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 24px;
    }
    .download-btn {
      display: inline-block;
      padding: 14px 32px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 30px;
      color: #e2f3f5;
      font-weight: 600;
      transition: background 0.3s;
    }
    .download-btn:hover {
      background: rgba(45, 212, 191, 0.2);
      color: #e2f3f5;
    }

    /* 页脚 */
    .site-footer {
      background: rgba(0, 0, 0, 0.4);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 48px 0 24px;
      margin-top: 40px;
      text-align: center;
    }
    .site-footer .footer-info {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
      font-size: 0.85rem;
      color: #94a3b8;
    }
    .site-footer a {
      color: #38bdf8;
    }
    .site-footer a:hover {
      color: #2dd4bf;
    }
    .copyright {
      margin-top: 24px;
      font-size: 0.8rem;
      color: #6b7280;
    }

    /* 响应式 */
    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 2rem;
      }
      .section {
        padding: 50px 0;
      }
      .brand-story .inner {
        flex-direction: column;
        padding: 28px;
      }
      .nav-links {
        gap: 12px;
        flex-wrap: wrap;
      }
    }