 /* ========== 全局重置 & 字体 ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      -webkit-text-size-adjust: 100%;
      -webkit-tap-highlight-color: transparent;
      scroll-behavior: smooth;
    }

    body {
      background-color: #0b0d10;
      font-family: 'Inter', 'Segoe UI', 'Roboto', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
      color: #e3e5e8;
      line-height: 1.5;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      padding-left: env(safe-area-inset-left);
      padding-right: env(safe-area-inset-right);
    }

    /* 颗粒噪点纹理 */
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNCIgLz48L3N2Zz4=');
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .game-site {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem 4rem;
      position: relative;
      z-index: 1;
    }

    /* ========== HERO 区域 ========== */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      min-height: 75vh;
      margin-bottom: 6rem;
      position: relative;
      gap: 3rem;
      padding: 3rem 0;
      border-bottom: 1px solid rgba(220, 70, 70, 0.2);
    }

    .hero-content {
      flex: 1 1 450px;
      position: relative;
      z-index: 2;
    }

    .hero-tag {
      font-size: 0.9rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #d43f3f;
      font-weight: 700;
      margin-bottom: 1.2rem;
      display: inline-block;
      border-left: 4px solid #d43f3f;
      padding-left: 0.8rem;
      text-shadow: 0 0 8px rgba(212, 63, 63, 0.6);
    }

    .hero-title {
      font-size: clamp(2.8rem, 8vw, 6rem);
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -2px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      color: #fff;
      text-shadow: 0 0 30px rgba(200, 30, 30, 0.5), 4px 4px 0 #000;
    }

    .hero-title span {
      display: block;
      font-size: 0.3em;
      letter-spacing: 6px;
      font-weight: 400;
      color: #b0b3b8;
      text-shadow: none;
      margin-top: 0.3rem;
    }

    .hero-desc {
      font-size: 1.2rem;
      max-width: 500px;
      color: #b9bec7;
      margin-bottom: 2.5rem;
      border-left: 4px solid #d43f3f;
      padding: 1rem 1.5rem;
      background: linear-gradient(90deg, rgba(212, 63, 63, 0.08), transparent);
      border-radius: 0 8px 8px 0;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      align-items: center;
    }

    .btn {
      display: inline-block;
      padding: 1rem 2.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.15s ease;
      border: 2px solid transparent;
      cursor: pointer;
      color: white;
      border-radius: 0;
      text-align: center;
      min-height: 48px;
      min-width: 140px;
      touch-action: manipulation;
    }

    .btn-primary {
      background: #d43f3f;
      border-color: #d43f3f;
      color: #0b0d10;
      font-weight: 800;
      clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
      padding: 1.2rem 3rem;
      box-shadow: 0 0 20px rgba(212, 63, 63, 0.4);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: #e65a5a;
      border-color: #e65a5a;
      box-shadow: 0 0 35px rgba(212, 63, 63, 0.8);
      transform: scale(1.02);
      outline: none;
    }

    .btn-outline {
      border: 2px solid #3a3f46;
      color: #cfd3da;
      background: rgba(255, 255, 255, 0.02);
      clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
      padding: 1.2rem 3rem;
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
      border-color: #d43f3f;
      color: #fff;
      background: rgba(212, 63, 63, 0.1);
      transform: scale(1.02);
      outline: none;
    }

    /* HERO 右侧图片 — 无边框、无 clip-path */
    .hero-image-box {
      flex: 1 1 400px;
      max-width: 560px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image-box .glow {
      position: absolute;
      width: 120%;
      height: 120%;
      background: radial-gradient(circle at 60% 40%, rgba(212, 63, 63, 0.35), transparent 70%);
      filter: blur(50px);
      z-index: 0;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-image-box img {
      width: 100%;
      height: auto;
      position: relative;
      z-index: 1;
      /* 无边框、无 clip-path、无阴影 */
      display: block;
    }

    /* ========== 游戏简介 ========== */
    .section-label {
      font-size: 0.8rem;
      letter-spacing: 5px;
      color: #d43f3f;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, #d43f3f, transparent);
    }

    .about {
      margin-bottom: 6rem;
      max-width: 900px;
    }

    .about-text p {
      font-size: 1.15rem;
      color: #b9bec7;
      margin-bottom: 1.6rem;
      line-height: 1.8;
    }

    .about-text strong {
      color: #fff;
      font-weight: 700;
      background: linear-gradient(90deg, #d43f3f, #a03030);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .about-quote {
      color: #8b909a;
      margin-top: 2.5rem;
      font-size: 1rem;
      border-left: 2px solid #d43f3f;
      padding-left: 1.5rem;
      font-style: italic;
    }

    /* ========== 装备展示 ========== */
    .gear {
      margin-bottom: 4rem;
    }

    .gear-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2.5rem;
    }

    .gear-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -1px;
      color: #fff;
    }

    .gear-header h2 small {
      display: block;
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 4px;
      color: #d43f3f;
      margin-top: 0.3rem;
    }

    .gear-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .gear-card {
      background: #13161c;
      border: 1px solid #2a2f38;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
      transition: all 0.25s ease;
      clip-path: polygon(0% 0%, 100% 0%, 100% 88%, 92% 100%, 0% 100%);
      position: relative;
      overflow: hidden;
      cursor: default;
      text-align: center;
    }

    .gear-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #d43f3f, #ff7a7a, #d43f3f);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
      z-index: 2;
    }

    .gear-card:hover {
      border-color: #d43f3f;
      background: #1a1e26;
      transform: translateY(-5px);
      box-shadow: 0 15px 25px -10px rgba(212, 63, 63, 0.3);
    }

    .gear-card:hover::before {
      transform: scaleX(1);
    }

    /* 装备图片固定 375x480 */
    .gear-img {
      width: 375px;
      height: 480px;
      max-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #0e1015;
      border: 1px solid #2f353f;
      transition: all 0.3s;
      overflow: hidden;
    }

    .gear-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gear-card:hover .gear-img {
      border-color: #d43f3f;
      background: #1e1a1a;
    }

    .gear-info {
      width: 100%;
    }

    .gear-name {
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #fff;
      margin-bottom: 0.3rem;
    }

    .gear-type {
      font-size: 0.75rem;
      letter-spacing: 2px;
      color: #7e848e;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .gear-rarity {
      display: inline-block;
      font-size: 0.65rem;
      padding: 0.15rem 0.8rem;
      background: rgba(212, 63, 63, 0.2);
      border: 1px solid rgba(212, 63, 63, 0.5);
      color: #ff9f9f;
      letter-spacing: 1px;
      font-weight: 600;
      border-radius: 20px;
    }

    /* ========== 防沉迷提示 ========== */
    .anti-addiction {
      margin-top: 5rem;
      padding: 1.8rem 2rem;
      background: #0e1116;
      border: 1px solid #1f2329;
      border-left: 4px solid #d43f3f;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 1.5rem;
      clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 98% 100%, 0% 100%);
    }

    .anti-icon {
      flex: 0 0 auto;
      font-size: 1.8rem;
      line-height: 1;
      filter: drop-shadow(0 0 10px rgba(212, 63, 63, 0.5));
    }

    .anti-content {
      flex: 1 1 300px;
    }

    .anti-title {
      font-size: 0.85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      color: #d43f3f;
      margin-bottom: 0.8rem;
    }

    .anti-text {
      font-size: 0.9rem;
      color: #8f949c;
      line-height: 1.8;
      margin-bottom: 0.5rem;
    }

    .anti-text strong {
      color: #c9cdd4;
      font-weight: 600;
    }

    .anti-badge {
      display: inline-block;
      margin-top: 0.5rem;
      font-size: 0.7rem;
      letter-spacing: 2px;
      padding: 0.3rem 1rem;
      border: 1px solid #2f353f;
      color: #7e848e;
      text-transform: uppercase;
      background: #13161c;
    }

    /* 底部 */
    .footer-note {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      padding-bottom: env(safe-area-inset-bottom);
      border-top: 1px solid #1f2329;
      color: #5b616b;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* ========== 响应式适配 ========== */

    @media (max-width: 1200px) {
      .gear-img {
        width: 100%;
        height: auto;
        aspect-ratio: 375 / 480;
      }
    }

    @media (max-width: 1100px) {
      .gear-grid {
        gap: 1.5rem;
      }

      .gear-card {
        padding: 1.2rem;
      }
    }

    @media (max-width: 950px) {
      .game-site {
        padding: 0 1.5rem 3rem;
      }

      .hero-image-box {
        flex: 1 1 320px;
        max-width: 100%;
      }

      .hero-title {
        font-size: clamp(2.8rem, 9vw, 4rem);
      }
    }

    @media (max-width: 850px) {
      .game-site {
        padding: 0 1.2rem 3rem;
      }

      .hero {
        min-height: auto;
        margin-bottom: 3.5rem;
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
      }

      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-tag {
        border-left: none;
        padding-left: 0;
      }

      .hero-desc {
        border-left: none;
        border-top: 2px solid #d43f3f;
        background: linear-gradient(180deg, rgba(212, 63, 63, 0.08), transparent);
        border-radius: 0 0 8px 8px;
        padding: 1.2rem 1rem;
        text-align: center;
      }

      .hero-actions {
        justify-content: center;
        width: 100%;
      }

      .hero-image-box {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
      }

      .gear-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .gear-header h2 {
        font-size: 2rem;
      }

      .gear-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
      }

      .about {
        margin-bottom: 4rem;
      }

      .about-text p {
        font-size: 1.05rem;
      }

      .anti-addiction {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
      }

      .anti-icon {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 600px) {
      .game-site {
        padding: 0 1rem 2.5rem;
      }

      .hero {
        margin-bottom: 3rem;
        gap: 1.5rem;
      }

      .hero-title {
        font-size: clamp(2.5rem, 11vw, 3.2rem);
        letter-spacing: -1px;
      }

      .hero-title span {
        letter-spacing: 4px;
      }

      .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.8rem;
      }

      .hero-actions {
        gap: 0.8rem;
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        min-width: auto;
        width: 100%;
        clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
      }

      .btn-primary,
      .btn-outline {
        padding: 1rem 1.5rem;
        clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
      }

      .gear-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .gear-card {
        padding: 1.2rem;
      }

      .gear-img {
        width: 100%;
        height: auto;
        aspect-ratio: 375 / 480;
      }

      .gear-name {
        font-size: 1rem;
        letter-spacing: 1px;
      }

      .gear-header h2 {
        font-size: 1.7rem;
      }

      .gear-header h2 small {
        font-size: 0.75rem;
        letter-spacing: 2px;
      }

      .section-label {
        letter-spacing: 3px;
        font-size: 0.7rem;
      }

      .about-text p {
        font-size: 1rem;
        line-height: 1.7;
      }

      .about-quote {
        font-size: 0.9rem;
        padding-left: 1rem;
      }

      .anti-addiction {
        padding: 1.2rem 1rem;
        flex-direction: column;
        gap: 0.8rem;
      }

      .anti-icon {
        font-size: 1.5rem;
      }

      .anti-title {
        font-size: 0.75rem;
        letter-spacing: 2px;
      }

      .anti-text {
        font-size: 0.85rem;
      }

      .footer-note {
        font-size: 0.7rem;
        letter-spacing: 1px;
      }
    }

    @media (max-width: 380px) {
      .hero-title {
        font-size: 2.2rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    @media (prefers-contrast: more) {
      .gear-card {
        border-width: 2px;
      }

      .hero-desc {
        background: #0e1116;
      }
    }

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid #ff6b6b;
      outline-offset: 3px;
    }

    img[loading="lazy"] {
      background: #13161c;
    }