    @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700;900&family=Orbitron:wght@400;700;900&display=swap');

    :root {
      --gold: #f0c060;
      --gold-light: #ffe49a;
      --gold-dark: #b8860b;
      --cyan: #00e5ff;
      --cyan-dark: #0097a7;
      --purple: #7c3aed;
      --purple-light: #a78bfa;
      --red: #ff4060;
      --dark: #020510;
      --dark2: #060d1f;
      --dark3: #0a1628;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--dark);
      color: #e0e8ff;
      font-family: 'Noto Serif SC', 'Microsoft YaHei', serif;
      overflow-x: hidden;
    }

    /* ============================================================
       LOADING SCREEN
    ============================================================ */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--dark);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    #loader.hide { opacity: 0; visibility: hidden; }

    .loader-rune {
      position: relative;
      width: 160px;
      height: 160px;
    }

    .loader-rune svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .rune-ring-1 { animation: spin 4s linear infinite; }
    .rune-ring-2 { animation: spin 2.5s linear infinite reverse; }
    .rune-ring-3 { animation: spin 6s linear infinite; }

    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    .loader-title {
      font-size: 36px;
      font-weight: 900;
      letter-spacing: 8px;
      background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% 100%;
      animation: shimmer 2s ease-in-out infinite;
    }

    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .loader-bar-wrap {
      width: 280px;
      height: 2px;
      background: #ffffff11;
      border-radius: 2px;
      overflow: hidden;
    }

    .loader-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--purple), var(--cyan), var(--gold));
      border-radius: 2px;
      transition: width 0.1s linear;
      box-shadow: 0 0 12px var(--cyan);
    }

    .loader-text {
      font-size: 11px;
      letter-spacing: 4px;
      color: #304050;
    }

    /* ============================================================
       PARTICLES
    ============================================================ */
    #particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 72px;
      height: 72px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: all 0.4s ease;
    }

    nav.scrolled {
      background: #020510ee;
      border-bottom-color: #00e5ff1a;
      backdrop-filter: blur(16px);
      height: 60px;
      box-shadow: 0 4px 30px #00000066;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo-emblem {
      width: 38px; height: 38px;
      flex-shrink: 0;
    }

    .nav-logo-text {
      font-size: 20px;
      font-weight: 900;
      letter-spacing: 3px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      color: #7090b0;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 2px;
      transition: color 0.3s;
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; right: 50%;
      height: 1px;
      background: var(--cyan);
      transition: left 0.3s, right 0.3s;
    }

    .nav-links a:hover { color: #e0e8ff; }
    .nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }
    .nav-links a.active { color: var(--cyan); }

    .nav-cta {
      padding: 9px 28px;
      background: linear-gradient(135deg, var(--purple) 0%, #1a4a80 100%);
      border: 1px solid #00e5ff44;
      border-radius: 3px;
      color: #fff;
      font-size: 13px;
      letter-spacing: 3px;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 0 20px #7c3aed44;
      font-family: 'Noto Serif SC', serif;
    }

    .nav-cta:hover {
      box-shadow: 0 0 30px #00e5ff66;
      border-color: var(--cyan);
      transform: translateY(-1px);
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 40px 60px;
      overflow: hidden;
    }

    /* Layered background */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 100% 80% at 50% 30%, #0d2a5520 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 15% 70%, #7c3aed18 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 85% 20%, #00e5ff0d 0%, transparent 60%),
        linear-gradient(180deg, #020510 0%, #050e20 100%);
    }

    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 25%;
      opacity: 0.28;
      z-index: 0;
      pointer-events: none;
    }

    .hero-img-mask {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(180deg, #020510 0%, transparent 18%, transparent 65%, #020510 100%),
        linear-gradient(90deg, #020510 0%, #020510aa 25%, transparent 60%, #020510aa 85%, #020510 100%),
        radial-gradient(ellipse 100% 60% at 50% 50%, transparent 30%, #020510bb 100%);
      pointer-events: none;
    }

    /* Tech grid */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(#00e5ff07 1px, transparent 1px),
        linear-gradient(90deg, #00e5ff07 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 0%, transparent 80%);
    }

    /* Magic array / 法阵 */
    .hero-array {
      position: absolute;
      width: 700px;
      height: 700px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      opacity: 0.18;
    }

    .array-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ar-1 { border-color: #f0c060; animation: spin 60s linear infinite; }
    .ar-2 { inset: 40px; border-color: #00e5ff; animation: spin 40s linear infinite reverse; }
    .ar-3 { inset: 80px; border-color: #7c3aed; animation: spin 25s linear infinite; }
    .ar-4 { inset: 120px; border-color: #f0c060; animation: spin 18s linear infinite reverse; }

    /* Light beams */
    .hero-beams {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .beam {
      position: absolute;
      top: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(180deg, transparent 0%, var(--cyan) 40%, transparent 100%);
      opacity: 0;
      animation: beamFall 6s ease-in-out infinite;
    }

    .beam:nth-child(1) { left: 20%; animation-delay: 0s; }
    .beam:nth-child(2) { left: 45%; background: linear-gradient(180deg, transparent 0%, var(--gold) 40%, transparent 100%); animation-delay: 2s; }
    .beam:nth-child(3) { left: 70%; animation-delay: 4s; }
    .beam:nth-child(4) { left: 85%; background: linear-gradient(180deg, transparent 0%, var(--purple-light) 40%, transparent 100%); animation-delay: 1s; }

    @keyframes beamFall {
      0% { opacity: 0; transform: translateY(-100%); }
      20% { opacity: 0.15; }
      80% { opacity: 0.08; }
      100% { opacity: 0; transform: translateY(100%); }
    }

    /* Clouds / 祥云 */
    .hero-clouds {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .cloud {
      position: absolute;
      opacity: 0.06;
      animation: cloudDrift linear infinite;
    }

    @keyframes cloudDrift {
      from { transform: translateX(-200px); }
      to { transform: translateX(calc(100vw + 200px)); }
    }

    /* Mountain silhouette */
    .hero-mountains {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 380px;
      pointer-events: none;
    }

    /* Floating orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      animation: orbPulse 8s ease-in-out infinite;
    }

    .orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, #7c3aed33 0%, transparent 70%); top: 5%; left: -5%; animation-delay: 0s; }
    .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #00e5ff1a 0%, transparent 70%); top: 0%; right: -10%; animation-delay: -3s; }
    .orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #f0c06022 0%, transparent 70%); bottom: 25%; left: 25%; animation-delay: -5s; }

    @keyframes orbPulse {
      0%, 100% { transform: scale(1) translateY(0); }
      50% { transform: scale(1.1) translateY(-20px); }
    }

    /* Content */
    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 22px;
      border: 1px solid #f0c06055;
      border-radius: 30px;
      background: linear-gradient(135deg, #f0c06011 0%, #7c3aed11 100%);
      font-size: 12px;
      letter-spacing: 4px;
      color: var(--gold);
      margin-bottom: 36px;
      box-shadow: 0 0 20px #f0c06022;
    }

    .badge-pulse {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 8px var(--gold);
      animation: blink 1.2s ease-in-out infinite;
    }

    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

    .hero-title {
      font-size: clamp(60px, 9vw, 110px);
      font-weight: 900;
      letter-spacing: 10px;
      line-height: 1;
      margin-bottom: 16px;
    }

    .title-main {
      display: block;
      background: linear-gradient(135deg, #fff 0%, var(--gold-light) 30%, var(--gold) 50%, #fff 70%, var(--gold-light) 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 40px #f0c06055);
      animation: titleGlow 4s ease-in-out infinite, shimmer 5s ease-in-out infinite;
    }

    @keyframes titleGlow {
      0%,100% { filter: drop-shadow(0 0 30px #f0c06055); }
      50% { filter: drop-shadow(0 0 60px #f0c060aa); }
    }

    .title-sub {
      display: block;
      font-size: clamp(22px, 3vw, 36px);
      letter-spacing: 16px;
      background: linear-gradient(135deg, var(--cyan) 0%, var(--purple-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-top: 12px;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 20px;
      margin: 28px 0;
      width: 480px;
    }

    .divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, #f0c06055);
    }

    .divider-line.right { background: linear-gradient(90deg, #f0c06055, transparent); }

    .divider-diamond {
      width: 8px; height: 8px;
      background: var(--gold);
      transform: rotate(45deg);
      box-shadow: 0 0 10px var(--gold);
    }

    .hero-tags {
      display: flex;
      gap: 12px;
      margin-bottom: 48px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .htag {
      padding: 8px 22px;
      border-radius: 3px;
      font-size: 13px;
      letter-spacing: 2px;
      font-weight: 700;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .htag::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .htag:hover { transform: translateY(-2px); }
    .htag:hover::before { opacity: 1; }

    .htag-gold {
      border: 1px solid #f0c06055;
      color: var(--gold);
      background: #f0c06010;
    }

    .htag-gold::before { background: linear-gradient(135deg, #f0c06020, transparent); }
    .htag-gold:hover { box-shadow: 0 0 20px #f0c06033; border-color: #f0c060aa; }

    .htag-cyan {
      border: 1px solid #00e5ff44;
      color: var(--cyan);
      background: #00e5ff0d;
    }

    .htag-cyan:hover { box-shadow: 0 0 20px #00e5ff33; border-color: #00e5ffaa; }

    .htag-purple {
      border: 1px solid #7c3aed55;
      color: var(--purple-light);
      background: #7c3aed11;
    }

    .htag-purple:hover { box-shadow: 0 0 20px #7c3aed33; border-color: #a78bfaaa; }

    .hero-buttons {
      display: flex;
      gap: 20px;
    }

    .btn-gold {
      padding: 16px 56px;
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
      border: none;
      border-radius: 3px;
      color: #1a0e00;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 5px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 30px #f0c06055, 0 4px 20px #f0c06033, inset 0 1px 0 #ffffff44;
      transition: all 0.3s;
      font-family: 'Noto Serif SC', serif;
      position: relative;
      overflow: hidden;
    }

    .btn-gold::after {
      content: '';
      position: absolute;
      top: 0; left: -100%; width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, #ffffff55, transparent);
      transform: skewX(-20deg);
      transition: left 0.6s;
    }

    .btn-gold:hover::after { left: 140%; }
    .btn-gold:hover {
      box-shadow: 0 0 50px #f0c060aa, 0 8px 30px #f0c06055;
      transform: translateY(-3px);
    }

    .btn-outline {
      padding: 16px 48px;
      background: transparent;
      border: 1px solid #00e5ff55;
      border-radius: 3px;
      color: var(--cyan);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 4px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 20px #00e5ff22, inset 0 0 20px #00e5ff08;
      transition: all 0.3s;
      font-family: 'Noto Serif SC', serif;
    }

    .btn-outline:hover {
      background: #00e5ff0d;
      border-color: var(--cyan);
      box-shadow: 0 0 40px #00e5ff66, inset 0 0 30px #00e5ff11;
      transform: translateY(-3px);
    }

    /* Countdown */
    .hero-countdown {
      position: relative;
      z-index: 2;
      margin-top: 64px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .cd-label {
      font-size: 11px;
      letter-spacing: 6px;
      color: #3a5060;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .cd-label::before, .cd-label::after {
      content: '';
      display: block;
      width: 30px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #3a5060);
    }

    .cd-label::after { background: linear-gradient(90deg, #3a5060, transparent); }

    .cd-timer {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .cd-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .cd-num {
      width: 64px; height: 64px;
      background: linear-gradient(180deg, #0e1f38 0%, #060f1e 100%);
      border: 1px solid #00e5ff22;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Orbitron', monospace;
      font-size: 26px;
      font-weight: 700;
      color: var(--cyan);
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 15px #00e5ff11, inset 0 1px 0 #00e5ff11;
    }

    .cd-num::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      top: 50%; height: 1px;
      background: #00e5ff11;
    }

    .cd-text { font-size: 10px; letter-spacing: 2px; color: #2a4050; }
    .cd-sep { font-size: 30px; color: #00e5ff33; font-weight: 700; margin-bottom: 20px; }

    /* Mountains */
    .hero-mountains { position: absolute; bottom: 0; left: 0; right: 0; height: 380px; pointer-events: none; }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: scrollBounce 2s ease-in-out infinite;
    }

    .scroll-hint-text { font-size: 10px; letter-spacing: 4px; color: #2a4050; }

    .scroll-arrow {
      width: 20px; height: 20px;
      border-right: 1px solid #2a4050;
      border-bottom: 1px solid #2a4050;
      transform: rotate(45deg);
    }

    @keyframes scrollBounce {
      0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
      50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
    }

    /* ============================================================
       STATS
    ============================================================ */
    .stats {
      position: relative;
      z-index: 1;
      padding: 56px 72px;
      background: linear-gradient(180deg, #04091800 0%, #040918 20%, #040918 80%, #04091800 100%);
      border-top: 1px solid #00e5ff0d;
      border-bottom: 1px solid #00e5ff0d;
    }

    .stats::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.3;
    }

    .stats-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 8px 0;
      position: relative;
    }

    .stat-item + .stat-item::before {
      content: '';
      position: absolute;
      left: 0; top: 10%; bottom: 10%;
      width: 1px;
      background: linear-gradient(180deg, transparent, #00e5ff22, transparent);
    }

    .stat-num {
      font-family: 'Orbitron', monospace;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 900;
      background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .stat-suffix { font-size: 18px; color: var(--cyan); }
    .stat-label { font-size: 11px; letter-spacing: 4px; color: #3a5060; margin-top: 8px; }

    /* ============================================================
       SECTION SHARED
    ============================================================ */
    .sec {
      position: relative;
      z-index: 1;
      padding: 110px 72px;
    }

    .sec-head {
      text-align: center;
      margin-bottom: 72px;
    }

    .sec-eyebrow {
      font-family: 'Orbitron', monospace;
      font-size: 10px;
      letter-spacing: 6px;
      color: var(--cyan);
      margin-bottom: 16px;
    }

    .sec-title {
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;
      letter-spacing: 6px;
      background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, #fff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sec-ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
    }

    .orn-line {
      width: 60px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold));
    }

    .orn-line.r { background: linear-gradient(90deg, var(--gold), transparent); }
    .orn-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
    .orn-dot { width: 3px; height: 3px; background: var(--gold-dark); border-radius: 50%; }

    /* ============================================================
       FEATURES
    ============================================================ */
    .features { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }

    .feat-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feat-card {
      position: relative;
      padding: 44px 36px;
      background: linear-gradient(160deg, #0d1f3a 0%, #060f1e 100%);
      border: 1px solid #ffffff0d;
      border-radius: 6px;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    }

    .feat-card-corner {
      position: absolute;
      width: 16px; height: 16px;
    }

    .feat-card-corner.tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; border-radius: 6px 0 0 0; }
    .feat-card-corner.tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; border-radius: 0 6px 0 0; }
    .feat-card-corner.bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; border-radius: 0 0 0 6px; }
    .feat-card-corner.br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; border-radius: 0 0 6px 0; }

    .feat-card.c-cyan .feat-card-corner { border-color: var(--cyan); }
    .feat-card.c-gold .feat-card-corner { border-color: var(--gold); }
    .feat-card.c-purple .feat-card-corner { border-color: var(--purple-light); }

    .feat-card-glow {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s;
      border-radius: 6px;
    }

    .c-cyan .feat-card-glow { background: radial-gradient(ellipse at top left, #00e5ff0d 0%, transparent 60%); }
    .c-gold .feat-card-glow { background: radial-gradient(ellipse at top left, #f0c0600d 0%, transparent 60%); }
    .c-purple .feat-card-glow { background: radial-gradient(ellipse at top left, #7c3aed0d 0%, transparent 60%); }

    .feat-card:hover { transform: translateY(-8px); }
    .feat-card:hover .feat-card-glow { opacity: 1; }

    .c-cyan:hover { border-color: #00e5ff22; box-shadow: 0 20px 60px #00000055, 0 0 30px #00e5ff11; }
    .c-gold:hover { border-color: #f0c06022; box-shadow: 0 20px 60px #00000055, 0 0 30px #f0c06011; }
    .c-purple:hover { border-color: #7c3aed22; box-shadow: 0 20px 60px #00000055, 0 0 30px #7c3aed11; }

    .feat-index {
      position: absolute;
      top: 24px; right: 28px;
      font-family: 'Orbitron', monospace;
      font-size: 56px;
      font-weight: 900;
      line-height: 1;
      opacity: 0.05;
    }

    .c-cyan .feat-index { color: var(--cyan); }
    .c-gold .feat-index { color: var(--gold); }
    .c-purple .feat-index { color: var(--purple-light); }

    .feat-icon { margin-bottom: 28px; width: 56px; height: 56px; }
    .feat-icon svg { width: 100%; height: 100%; }

    .feat-title {
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 3px;
      color: #dde8ff;
      margin-bottom: 14px;
    }

    .feat-desc {
      font-size: 13px;
      line-height: 2.2;
      color: #4a6080;
      letter-spacing: 0.5px;
    }

    .feat-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }

    .chip {
      padding: 4px 12px;
      border-radius: 2px;
      font-size: 11px;
      letter-spacing: 2px;
    }

    .chip-cyan { background: #00e5ff0d; border: 1px solid #00e5ff2a; color: var(--cyan); }
    .chip-gold { background: #f0c0600d; border: 1px solid #f0c0602a; color: var(--gold); }
    .chip-purple { background: #7c3aed0d; border: 1px solid #7c3aed2a; color: var(--purple-light); }

    /* ============================================================
       DOWNLOAD CTA
    ============================================================ */
    .download {
      padding: 80px 72px;
      background: linear-gradient(180deg, var(--dark2) 0%, var(--dark3) 100%);
      position: relative;
      overflow: hidden;
    }

    .dl-bg-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
      opacity: 0.12;
      pointer-events: none;
    }

    .dl-bg-mask {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, var(--dark2) 0%, var(--dark2)cc 35%, transparent 65%),
        linear-gradient(180deg, var(--dark2) 0%, transparent 15%, transparent 85%, var(--dark2) 100%);
      pointer-events: none;
    }

    .download::before, .download::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      opacity: 0.25;
    }

    .download::before { top: 0; }
    .download::after { bottom: 0; }

    .dl-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
    }

    .dl-info { flex: 1; }

    .dl-eyebrow {
      font-family: 'Orbitron', monospace;
      font-size: 10px;
      letter-spacing: 6px;
      color: var(--cyan);
      margin-bottom: 12px;
    }

    .dl-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 900;
      letter-spacing: 4px;
      background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
    }

    .dl-desc {
      font-size: 14px;
      line-height: 2.2;
      color: #4a6080;
      letter-spacing: 1px;
      max-width: 500px;
    }

    .dl-specs {
      display: flex;
      gap: 32px;
      margin-top: 24px;
    }

    .dl-spec {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .dl-spec-label { font-size: 10px; letter-spacing: 3px; color: #2a4050; }
    .dl-spec-val { font-size: 14px; letter-spacing: 1px; color: #8090a0; }

    .dl-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .dl-btn-main {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 44px;
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
      border: none;
      border-radius: 4px;
      color: #1a0e00;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 3px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 40px #f0c06055, 0 6px 24px #f0c06033;
      transition: all 0.3s;
      font-family: 'Noto Serif SC', serif;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .dl-btn-main::after {
      content: '';
      position: absolute;
      top: 0; left: -80%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, #ffffff55, transparent);
      transform: skewX(-20deg);
      animation: btnShine 3s ease-in-out infinite;
    }

    @keyframes btnShine {
      0% { left: -80%; }
      60%, 100% { left: 140%; }
    }

    .dl-btn-main:hover {
      box-shadow: 0 0 60px #f0c060aa, 0 8px 32px #f0c06066;
      transform: translateY(-3px);
    }

    .dl-btn-icon {
      width: 22px; height: 22px;
      flex-shrink: 0;
    }

    .dl-btn-icon svg { width: 100%; height: 100%; }

    .dl-mirrors {
      display: flex;
      gap: 12px;
    }

    .dl-mirror {
      padding: 8px 20px;
      background: #00000033;
      border: 1px solid #ffffff11;
      border-radius: 3px;
      color: #4a6080;
      font-size: 12px;
      letter-spacing: 2px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
    }

    .dl-mirror:hover { border-color: #00e5ff33; color: var(--cyan); }

    /* ============================================================
       REWARDS (Timeline style)
    ============================================================ */
    .rewards { background: linear-gradient(180deg, var(--dark3) 0%, var(--dark2) 100%); }

    .rwd-layout {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2px 1fr;
      gap: 0 40px;
      position: relative;
    }

    .rwd-showcase {
      max-width: 300px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .rwd-showcase img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      filter: drop-shadow(0 0 40px #a78bfa66) drop-shadow(0 0 80px #f0c06033);
      animation: armorFloat 4s ease-in-out infinite;
    }

    @keyframes armorFloat {
      0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 40px #a78bfa66) drop-shadow(0 0 80px #f0c06033); }
      50% { transform: translateY(-12px); filter: drop-shadow(0 0 60px #a78bfaaa) drop-shadow(0 0 120px #f0c06055); }
    }

    .rwd-showcase-label {
      margin-top: 14px;
      font-size: 11px;
      letter-spacing: 6px;
      color: var(--gold);
      opacity: 0.55;
    }

    .rwd-spine {
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
      opacity: 0.3;
      position: relative;
    }

    .rwd-spine::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--gold);
    }

    .rwd-col { display: flex; flex-direction: column; gap: 24px; }
    .rwd-col.right { padding-top: 60px; }

    .rwd-card {
      padding: 28px 28px;
      background: linear-gradient(160deg, #0d1f3a 0%, #060f1e 100%);
      border: 1px solid #f0c06018;
      border-radius: 6px;
      position: relative;
      transition: all 0.3s;
      cursor: default;
    }

    .rwd-card::after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 20px; height: 1px;
      background: linear-gradient(90deg, transparent, #f0c06044);
    }

    .rwd-col.left .rwd-card::after { right: -60px; }
    .rwd-col.right .rwd-card::after { left: -60px; background: linear-gradient(90deg, #f0c06044, transparent); }

    .rwd-card:hover { border-color: #f0c06044; transform: scale(1.02); box-shadow: 0 10px 40px #00000066, 0 0 20px #f0c06011; }

    .rwd-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .rwd-icon { font-size: 28px; }
    .rwd-badge {
      padding: 3px 10px;
      border-radius: 2px;
      font-size: 10px;
      letter-spacing: 2px;
    }

    .badge-must { background: #f0c06011; border: 1px solid #f0c06033; color: var(--gold); }
    .badge-limit { background: #ff406011; border: 1px solid #ff406033; color: #ff8090; }
    .badge-daily { background: #00e5ff11; border: 1px solid #00e5ff33; color: var(--cyan); }

    .rwd-title { font-size: 16px; font-weight: 700; letter-spacing: 2px; color: var(--gold); margin-bottom: 6px; }
    .rwd-desc { font-size: 12px; line-height: 2; color: #3a5060; }

    /* ============================================================
       CLASSES (Flip cards)
    ============================================================ */
    .classes { background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%); }

    .cls-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    .cls-wrap {
      perspective: 1000px;
      aspect-ratio: 9/14;
      cursor: pointer;
    }

    .cls-card {
      width: 100%; height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cls-wrap:hover .cls-card { transform: rotateY(180deg); }

    .cls-front, .cls-back {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      border-radius: 8px;
      overflow: hidden;
    }

    .cls-front {
      background: linear-gradient(180deg, #0d1f3a 0%, #060f1e 100%);
      border: 1px solid #ffffff0d;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding-bottom: 20px;
    }

    .cls-front-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .cls-front-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      opacity: 0.78;
      transition: opacity 0.4s, transform 0.5s;
    }

    .cls-wrap:hover .cls-front-bg img { opacity: 1; transform: scale(1.06); }

    .cls-front-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 100%, currentColor 0%, transparent 70%);
      opacity: 0.06;
      transition: opacity 0.4s;
    }

    .cls-wrap:hover .cls-front-glow { opacity: 0.1; }

    .cls-front-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, #000000cc 100%);
    }

    .cls-front-content { position: relative; z-index: 2; text-align: center; }
    .cls-name { font-size: 15px; font-weight: 700; letter-spacing: 2px; color: #dde8ff; margin-bottom: 4px; }
    .cls-type { font-size: 10px; letter-spacing: 2px; color: #4a6080; }

    .cls-stars {
      display: flex;
      gap: 3px;
      justify-content: center;
      margin-top: 8px;
    }

    .cls-star { font-size: 8px; opacity: 0.3; }
    .cls-star.on { opacity: 1; }

    .cls-back {
      background: linear-gradient(160deg, #0d1f3a 0%, #060f1e 100%);
      border: 1px solid;
      transform: rotateY(180deg);
      padding: 20px 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .cls-back-title { font-size: 14px; font-weight: 900; letter-spacing: 2px; margin-bottom: 8px; }
    .cls-back-skills { display: flex; flex-direction: column; gap: 6px; }
    .cls-skill { font-size: 10px; letter-spacing: 1px; color: #4a6080; padding: 4px 0; border-bottom: 1px solid #ffffff06; }
    .cls-skill span { float: right; font-size: 9px; opacity: 0.6; }
    .cls-back-tag {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 2px;
      font-size: 10px;
      letter-spacing: 2px;
      margin-top: 10px;
    }

    /* ============================================================
       NEWS
    ============================================================ */
    .news-sec { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }

    .news-layout {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 24px;
    }

    .news-featured {
      background: linear-gradient(160deg, #0d1f3a 0%, #060f1e 100%);
      border: 1px solid #00e5ff1a;
      border-radius: 8px;
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .news-featured::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--purple), var(--cyan), var(--gold));
    }

    .news-featured-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, #00e5ff06 0%, transparent 60%);
    }

    .news-featured:hover { border-color: #00e5ff33; box-shadow: 0 20px 60px #00000066; }

    .nf-tag {
      display: inline-block;
      padding: 5px 14px;
      background: #00e5ff0d;
      border: 1px solid #00e5ff2a;
      border-radius: 2px;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--cyan);
      margin-bottom: 20px;
    }

    .nf-title {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 900;
      letter-spacing: 2px;
      color: #dde8ff;
      line-height: 1.6;
      margin-bottom: 20px;
      position: relative;
    }

    .nf-body {
      font-size: 13px;
      line-height: 2.4;
      color: #3a5060;
      position: relative;
      margin-bottom: 28px;
    }

    .nf-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nf-date { font-size: 11px; letter-spacing: 3px; color: #1e3040; }

    .nf-more {
      font-size: 12px;
      letter-spacing: 3px;
      color: var(--cyan);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.3s;
    }

    .nf-more:hover { gap: 10px; }

    .news-list { display: flex; flex-direction: column; gap: 12px; }

    .news-item {
      padding: 18px 20px;
      background: linear-gradient(160deg, #0a1830 0%, #06101e 100%);
      border: 1px solid #ffffff08;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .news-item::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: transparent;
      transition: background 0.3s;
    }

    .news-item:hover { border-color: #00e5ff1a; transform: translateX(4px); }
    .news-item:hover::before { background: var(--cyan); }

    .ni-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .ni-tag {
      padding: 2px 8px;
      border-radius: 2px;
      font-size: 10px;
      letter-spacing: 2px;
    }

    .ni-date { font-size: 10px; color: #1e3040; }
    .ni-title { font-size: 13px; letter-spacing: 1px; color: #5a7090; line-height: 1.6; }

    /* ============================================================
       REGISTER
    ============================================================ */
    .register { background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%); text-align: center; }

    .register::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      opacity: 0.2;
    }

    .reg-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 50%, #00e5ff06 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 60%, #7c3aed06 0%, transparent 60%);
    }

    .reg-wrap {
      position: relative;
      z-index: 2;
      max-width: 520px;
      margin: 0 auto;
    }

    .reg-form {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .reg-field {
      position: relative;
    }

    .reg-input {
      width: 100%;
      padding: 15px 20px;
      background: #060f1e;
      border: 1px solid #00e5ff1a;
      border-radius: 4px;
      color: #c0d0e0;
      font-size: 14px;
      letter-spacing: 2px;
      outline: none;
      transition: all 0.3s;
      font-family: 'Noto Serif SC', serif;
    }

    .reg-input:focus {
      border-color: #00e5ff44;
      background: #07121e;
      box-shadow: 0 0 20px #00e5ff0d, inset 0 0 15px #00e5ff06;
    }

    .reg-input::placeholder { color: #1e3040; }

    .reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .reg-submit {
      margin-top: 6px;
      padding: 17px;
      background: linear-gradient(135deg, #1e1060 0%, #0a3060 100%);
      border: 1px solid var(--cyan);
      border-radius: 4px;
      color: var(--cyan);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 6px;
      cursor: pointer;
      box-shadow: 0 0 20px #00e5ff22, inset 0 0 20px #00e5ff06;
      transition: all 0.3s;
      font-family: 'Noto Serif SC', serif;
      position: relative;
      overflow: hidden;
    }

    .reg-submit::after {
      content: '';
      position: absolute;
      top: 0; left: -100%; width: 70%; height: 100%;
      background: linear-gradient(90deg, transparent, #00e5ff11, transparent);
      transform: skewX(-20deg);
    }

    .reg-submit:hover {
      box-shadow: 0 0 40px #00e5ff44, inset 0 0 30px #00e5ff11;
      border-color: #00e5ffaa;
      transform: translateY(-2px);
    }

    .reg-submit:hover::after { animation: btnShine 0.6s ease forwards; }

    .reg-note { font-size: 11px; color: #1e3040; letter-spacing: 2px; margin-top: 14px; }
    .reg-note a { color: #00e5ff33; text-decoration: none; }

    /* ============================================================
       RECHARGE
    ============================================================ */
    .recharge-sec {
      background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .rch-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 50%, #f0c06008 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 60%, #7c3aed06 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 30%, #00e5ff05 0%, transparent 60%);
    }

    .recharge-sec::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.25;
    }

    .rch-packages {
      max-width: 1000px;
      margin: 0 auto 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      position: relative;
      z-index: 2;
    }

    .rch-pkg {
      position: relative;
      padding: 32px 20px 28px;
      background: linear-gradient(160deg, #0d1f3a 0%, #060f1e 100%);
      border: 1px solid #f0c06022;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      transition: all 0.35s;
      overflow: hidden;
    }

    .rch-pkg::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #f0c06055, transparent);
      transition: opacity 0.3s;
    }

    .rch-pkg:hover {
      border-color: #f0c06055;
      transform: translateY(-6px);
      box-shadow: 0 20px 50px #00000066, 0 0 30px #f0c06011;
    }

    .rch-pkg-hot {
      border-color: #f0c06066;
      background: linear-gradient(160deg, #1a1a08 0%, #0e0c04 100%);
      box-shadow: 0 0 30px #f0c06022;
    }

    .rch-pkg-hot::before {
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 1;
    }

    .rch-pkg-hot:hover {
      border-color: #f0c060bb;
      box-shadow: 0 20px 50px #00000077, 0 0 50px #f0c06033;
    }

    .rch-hot-label {
      position: absolute;
      top: 14px; right: 14px;
      padding: 3px 10px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      border-radius: 2px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #1a0e00;
    }

    .rch-pkg-top { text-align: center; }

    .rch-pkg-name {
      font-size: 13px;
      letter-spacing: 3px;
      color: #4a6080;
      margin-bottom: 6px;
    }

    .rch-pkg-coin {
      font-family: 'Orbitron', monospace;
      font-size: 28px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .rch-pkg-coin span {
      font-family: 'Noto Serif SC', serif;
      font-size: 13px;
      color: #6a7a50;
      font-weight: 400;
    }

    .rch-pkg-price {
      font-size: 22px;
      font-weight: 900;
      letter-spacing: 2px;
      color: #e0e8ff;
    }

    .rch-pkg-bonus {
      font-size: 11px;
      letter-spacing: 1px;
      color: #f0c06077;
      padding: 4px 12px;
      background: #f0c06010;
      border: 1px solid #f0c06022;
      border-radius: 20px;
    }

    .rch-pkg-hot .rch-pkg-bonus {
      color: var(--gold);
      background: #f0c06018;
      border-color: #f0c06044;
    }

    .rch-pkg-btn {
      display: block;
      width: 100%;
      padding: 10px;
      background: transparent;
      border: 1px solid #f0c06033;
      border-radius: 3px;
      color: #f0c06088;
      font-size: 13px;
      letter-spacing: 3px;
      text-decoration: none;
      transition: all 0.3s;
      font-family: 'Noto Serif SC', serif;
      margin-top: 4px;
    }

    .rch-pkg-btn:hover {
      background: #f0c06011;
      border-color: #f0c060aa;
      color: var(--gold);
      box-shadow: 0 0 15px #f0c06022;
    }

    .rch-pkg-btn-hot {
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
      border-color: var(--gold);
      color: #1a0e00;
      font-weight: 900;
      box-shadow: 0 0 20px #f0c06044;
    }

    .rch-pkg-btn-hot:hover {
      box-shadow: 0 0 35px #f0c06077;
      color: #1a0e00;
      background: linear-gradient(135deg, #fff5cc 0%, var(--gold-light) 100%);
    }

    .rch-cta {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .rch-main-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 52px;
      background: linear-gradient(135deg, #1e1060 0%, #0a3060 100%);
      border: 1px solid var(--cyan);
      border-radius: 4px;
      color: var(--cyan);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 4px;
      text-decoration: none;
      box-shadow: 0 0 20px #00e5ff22, inset 0 0 20px #00e5ff06;
      transition: all 0.3s;
      font-family: 'Noto Serif SC', serif;
    }

    .rch-main-btn:hover {
      box-shadow: 0 0 40px #00e5ff55, inset 0 0 30px #00e5ff11;
      border-color: #00e5ffaa;
      transform: translateY(-2px);
    }

    .rch-pay-icons {
      display: flex;
      gap: 20px;
    }

    .rch-pay-icon {
      font-size: 12px;
      letter-spacing: 2px;
      color: #2a4050;
    }

    @media (max-width: 1100px) {
      .rch-packages { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
    }
    @media (max-width: 640px) {
      .rch-packages { grid-template-columns: 1fr 1fr; }
      .rch-main-btn { padding: 14px 32px; font-size: 14px; }
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      padding: 48px 72px 32px;
      background: #010408;
      border-top: 1px solid #00e5ff0a;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 40px;
      gap: 40px;
    }

    .footer-brand { flex-shrink: 0; }

    .footer-logo-text {
      font-size: 22px;
      font-weight: 900;
      letter-spacing: 4px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 12px;
    }

    .footer-slogan { font-size: 12px; letter-spacing: 3px; color: #1e3040; }

    .footer-nav {
      display: flex;
      gap: 60px;
    }

    .footer-nav-col { display: flex; flex-direction: column; gap: 14px; }
    .footer-nav-title { font-size: 12px; letter-spacing: 3px; color: #2a4050; margin-bottom: 4px; }
    .footer-nav-link { font-size: 13px; letter-spacing: 1px; color: #1e3040; text-decoration: none; transition: color 0.3s; }
    .footer-nav-link:hover { color: #4a6080; }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid #0a1828;
    }

    .footer-copy { font-size: 11px; letter-spacing: 2px; color: #0e1e2a; }
    .footer-domain { font-family: 'Orbitron', monospace; font-size: 11px; color: #1e3040; letter-spacing: 2px; }

    /* ============================================================
       SCROLL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ============================================================
       SCROLLBAR
    ============================================================ */
    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: #00e5ff22; border-radius: 2px; }
    ::-webkit-scrollbar-thumb:hover { background: #00e5ff55; }

    /* ============================================================
       CURSOR
    ============================================================ */
    *, a, button { cursor: none !important; }

    /* 中心菱形 */
    #cur-diamond {
      position: fixed;
      width: 7px; height: 7px;
      background: #00e5ff;
      transform: translate(-50%, -50%) rotate(45deg);
      pointer-events: none;
      z-index: 9999;
      box-shadow: 0 0 10px #00e5ff, 0 0 22px rgba(0,229,255,0.5);
      transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
    }

    #cur-diamond.on-link {
      background: #f0c060;
      box-shadow: 0 0 12px #f0c060, 0 0 28px rgba(240,192,96,0.6);
      transform: translate(-50%, -50%) rotate(45deg) scale(1.4);
    }

    /* 四角瞄准框 */
    #cur-brackets {
      position: fixed;
      width: 26px; height: 26px;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width 0.2s, height 0.2s;
    }

    #cur-brackets.on-link { width: 38px; height: 38px; }

    #cur-brackets .cb {
      position: absolute;
      width: 8px; height: 8px;
      border-style: solid;
      border-color: #00e5ff;
      opacity: 0.85;
      transition: border-color 0.2s, width 0.2s, height 0.2s;
    }

    #cur-brackets.on-link .cb { border-color: #f0c060; width: 10px; height: 10px; }

    #cur-brackets .cb-tl { top:0; left:0;  border-width: 1.5px 0 0 1.5px; }
    #cur-brackets .cb-tr { top:0; right:0; border-width: 1.5px 1.5px 0 0; }
    #cur-brackets .cb-bl { bottom:0; left:0;  border-width: 0 0 1.5px 1.5px; }
    #cur-brackets .cb-br { bottom:0; right:0; border-width: 0 1.5px 1.5px 0; }

    #fx-canvas {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9997;
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1100px) {
      nav { padding: 0 28px; }
      .nav-links { display: none; }
      .sec { padding: 80px 28px; }
      .feat-grid { grid-template-columns: 1fr 1fr; }
      .dl-inner { flex-direction: column; align-items: flex-start; }
      .rwd-layout { grid-template-columns: 1fr; }
      .rwd-spine { display: none; }
      .rwd-col.right { padding-top: 0; }
      .cls-grid { grid-template-columns: repeat(3, 1fr); }
      .news-layout { grid-template-columns: 1fr; }
      .stats { padding: 48px 28px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      footer { padding: 40px 28px 24px; }
      .footer-top { flex-direction: column; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }

    @media (max-width: 640px) {
      .feat-grid { grid-template-columns: 1fr; }
      .cls-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-buttons { flex-direction: column; align-items: stretch; text-align: center; }
      .reg-row { grid-template-columns: 1fr; }
      .hero-divider { width: 280px; }
      .dl-specs { flex-direction: column; gap: 16px; }
    }

/* ════════════════════════════════════════════════════════════
   全局浮动组件 · 客服侧栏 + 公告 Toast（SOP §A.3）
   521 配色：金 #f0c060 / 青 #00e5ff / 紫 #7c3aed / 黑底
   ════════════════════════════════════════════════════════════ */

/* ===== 右侧客服联系侧栏 ===== */
.side-bar { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 9998; font-family: 'Noto Serif SC', serif; display: flex; align-items: center; }
.side-tab { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 32px; padding: 14px 6px; border-radius: 10px 0 0 10px; background: linear-gradient(180deg, rgba(124,58,237,0.85), rgba(0,229,255,0.55)); border: 1px solid rgba(0,229,255,0.4); border-right: none; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: -4px 4px 18px rgba(124,58,237,0.4); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; transition: all .3s cubic-bezier(.22,1,.36,1); opacity: 1; }
.side-bar:not(.collapsed) .side-tab { opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(20px); }
.side-tab:hover { width: 36px; background: linear-gradient(180deg, rgba(0,229,255,0.85), rgba(240,192,96,0.6)); box-shadow: -6px 6px 24px rgba(0,229,255,0.55); }
.side-tab-icon { width: 18px; height: 18px; flex-shrink: 0; }
.side-tab-text { font-size: 11px; letter-spacing: 1px; font-weight: 700; line-height: 1.5; text-shadow: 0 1px 2px rgba(0,0,0,.3); }
.side-tab-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px #4ade80; animation: sideDotBlink 2s ease-in-out infinite; }

.side-bar.collapsed .side-panel { opacity: 0; pointer-events: none; transform: translateX(20px); }
.side-panel { margin-right: 14px; width: 220px; background: linear-gradient(160deg, rgba(6,13,30,0.96), rgba(10,22,40,0.94)); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(0,229,255,0.28); border-radius: 12px; box-shadow: 0 12px 36px rgba(0,0,0,.5), 0 0 28px rgba(0,229,255,0.18), 0 0 0 1px rgba(255,255,255,.04) inset; overflow: hidden; position: relative; transition: all .4s cubic-bezier(.22,1,.36,1); }
.side-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,229,255,0.6), transparent); }

.side-head { padding: 10px 14px; padding-right: 32px; border-bottom: 1px solid rgba(0,229,255,0.12); background: linear-gradient(135deg, rgba(124,58,237,0.16), transparent); display: flex; align-items: center; gap: 6px; position: relative; }
.side-head-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: sideDotBlink 2s ease-in-out infinite; }
@keyframes sideDotBlink { 0%,100%{opacity:1} 50%{opacity:.4} }
.side-head-text { font-size: 12px; letter-spacing: 3px; color: var(--cyan, #00e5ff); font-weight: 700; }
.side-head-close { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; border: none; background: rgba(0,229,255,0.08); color: #7a8da8; cursor: pointer; font-family: inherit; font-size: 12px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.side-head-close:hover { background: rgba(255,255,255,.1); color: #fff; transform: translateY(-50%) rotate(90deg); }

.side-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid rgba(0,229,255,0.06); transition: background .2s; cursor: default; }
.side-row:last-child { border-bottom: none; }
.side-row:hover { background: rgba(0,229,255,0.05); }
.side-row-icon { width: 34px; height: 34px; border-radius: 8px; background: linear-gradient(135deg, rgba(124,58,237,0.22), rgba(0,229,255,0.10)); border: 1px solid rgba(0,229,255,0.18); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; filter: drop-shadow(0 1px 2px rgba(0,0,0,.3)); }
.side-row-info { flex: 1; min-width: 0; }
.side-row-label { font-size: 11px; color: #7a8da8; letter-spacing: 1px; margin-bottom: 1px; }
.side-row-value { font-family: 'Orbitron','Noto Serif SC',monospace; font-size: 13px; font-weight: 700; color: var(--gold, #f0c060); letter-spacing: .5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-row-copy { width: 28px; height: 28px; border-radius: 6px; border: 1px solid rgba(0,229,255,0.2); background: rgba(0,229,255,0.05); color: var(--cyan, #00e5ff); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; font-family: inherit; }
.side-row-copy svg { width: 14px; height: 14px; }
.side-row-copy:hover { background: linear-gradient(135deg, var(--purple, #7c3aed), var(--cyan, #00e5ff)); border-color: transparent; color: #fff; transform: scale(1.05); }
.side-row-copy.copied { background: linear-gradient(135deg, #4ade80, #22c55e); border-color: transparent; color: #fff; }
.side-row-copy.copied::before { content: '✓'; font-size: 16px; font-weight: 900; }
.side-row-copy.copied svg { display: none; }

.side-top { position: fixed; right: 14px; bottom: 96px; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, rgba(6,13,30,0.92), rgba(10,22,40,0.88)); border: 1px solid rgba(0,229,255,0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: var(--cyan, #00e5ff); cursor: pointer; display: none; align-items: center; justify-content: center; font-family: inherit; transition: all .3s; opacity: 0; }
.side-top.show { display: flex; opacity: 1; }
.side-top svg { width: 16px; height: 16px; }
.side-top:hover { background: linear-gradient(135deg, var(--purple, #7c3aed), var(--cyan, #00e5ff)); border-color: transparent; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,229,255,0.45); }

@media (max-width: 768px) {
  .side-panel { width: 200px; margin-right: 8px; }
  .side-tab { width: 28px; padding: 12px 4px; }
  .side-tab-icon { width: 16px; height: 16px; }
  .side-tab-text { font-size: 10px; }
  .side-top { right: 8px; bottom: 80px; width: 34px; height: 34px; }
  .side-row { padding: 8px 10px; gap: 8px; }
  .side-row-icon { width: 30px; height: 30px; font-size: 16px; }
  .side-row-value { font-size: 12px; }
  .side-row-label { font-size: 10px; }
}

/* ===== 右下角浮动公告 Toast ===== */
.notice-toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; font-family: 'Noto Serif SC', serif; }
.notice-toast-trigger { position: absolute; bottom: 0; right: 0; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--purple, #7c3aed), var(--cyan, #00e5ff)); border: 2px solid rgba(255,255,255,.18); color: #fff; cursor: pointer; box-shadow: 0 6px 24px rgba(124,58,237,.5), 0 0 0 1px rgba(0,229,255,.3) inset; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transform: scale(.6); transition: opacity .4s, transform .4s cubic-bezier(.22,1,.36,1); font-family: inherit; animation: ntTriggerPulse 2.4s ease-in-out infinite; }
.notice-toast.collapsed .notice-toast-trigger { opacity: 1; pointer-events: auto; transform: scale(1); }
.notice-toast-trigger:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(0,229,255,.55); }
.notice-toast-trigger svg { width: 24px; height: 24px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.3)); }
.notice-toast-dot { position: absolute; top: 6px; right: 6px; width: 10px; height: 10px; border-radius: 50%; background: #ff4060; border: 2px solid #050510; animation: ntDotPing 2s ease-in-out infinite; }
@keyframes ntTriggerPulse { 0%,100%{box-shadow: 0 6px 24px rgba(124,58,237,.5), 0 0 0 1px rgba(0,229,255,.3) inset} 50%{box-shadow: 0 6px 24px rgba(124,58,237,.5), 0 0 0 8px rgba(124,58,237,0) inset} }
@keyframes ntDotPing { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }

.notice-toast-box { width: 340px; background: linear-gradient(160deg, #060d1e, #0a1628); border: 1px solid rgba(0,229,255,0.28); border-radius: 14px; box-shadow: 0 16px 50px rgba(124,58,237,.3), 0 0 0 1px rgba(255,255,255,.04) inset; overflow: hidden; transform: translateX(0) translateY(0) scale(1); transform-origin: bottom right; opacity: 1; transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .4s ease; max-height: calc(100vh - 60px); display: flex; flex-direction: column; }
.notice-toast.collapsed .notice-toast-box { transform: translateX(40px) translateY(40px) scale(.5); opacity: 0; pointer-events: none; }

.notice-toast-head { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(0,229,255,0.12); position: relative; overflow: hidden; }
.notice-toast-head::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.15), transparent 70%); }
.notice-toast-gold .notice-toast-head::before { background: linear-gradient(135deg, rgba(240,192,96,.2), transparent 70%); }
.notice-toast-cyan .notice-toast-head::before { background: linear-gradient(135deg, rgba(0,229,255,.18), transparent 70%); }
.notice-toast-purple .notice-toast-head::before { background: linear-gradient(135deg, rgba(124,58,237,.18), transparent 70%); }
.notice-toast-type { position: relative; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--cyan, #00e5ff); }
.notice-toast-gold .notice-toast-type { color: var(--gold, #f0c060); }
.notice-toast-cyan .notice-toast-type { color: var(--cyan, #00e5ff); }
.notice-toast-purple .notice-toast-type { color: #a78bfa; }
.notice-toast-close { position: relative; background: none; border: none; color: #7a8da8; font-size: 18px; cursor: pointer; width: 26px; height: 26px; border-radius: 50%; transition: all .2s; font-family: inherit; }
.notice-toast-close:hover { background: rgba(255,255,255,.08); color: #fff; transform: rotate(90deg); }

.notice-toast-body { padding: 16px 18px 12px; overflow-y: auto; flex: 1; }
.notice-toast-pin { display: inline-block; background: linear-gradient(135deg, var(--gold, #f0c060), #ffd870); color: #1a0e00; padding: 2px 8px; border-radius: 10px; font-size: 10px; font-weight: 800; letter-spacing: 1px; margin-bottom: 8px; }
.notice-toast-title { font-size: 16px; font-weight: 700; color: #e8f3ff; line-height: 1.45; margin-bottom: 6px; }
.notice-toast-date { font-size: 11px; color: #7a8da8; font-family: 'Orbitron', monospace; letter-spacing: 1px; margin-bottom: 10px; }
.notice-toast-content { font-size: 13px; line-height: 1.85; color: #c8d8f0; white-space: pre-wrap; word-break: break-word; max-height: 240px; overflow-y: auto; }
.notice-toast-content::-webkit-scrollbar { width: 4px; }
.notice-toast-content::-webkit-scrollbar-thumb { background: rgba(0,229,255,.3); border-radius: 2px; }

.notice-toast-foot { padding: 10px 18px 14px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(0,229,255,0.12); background: rgba(0,0,0,.15); gap: 8px; }
.notice-toast-nshow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #7a8da8; cursor: pointer; user-select: none; }
.notice-toast-nshow input { accent-color: var(--cyan, #00e5ff); cursor: pointer; width: 13px; height: 13px; }
.notice-toast-link { font-size: 12px; color: var(--cyan, #00e5ff); text-decoration: none; letter-spacing: 1px; transition: color .2s; }
.notice-toast-link:hover { color: var(--gold, #f0c060); }

@media (max-width: 600px) {
  .notice-toast { right: 12px; bottom: 12px; left: 12px; }
  .notice-toast-box { width: 100%; }
  .notice-toast-trigger { left: auto; right: 0; bottom: 0; }
}

/* 数据驱动版 feature-icon emoji 兜底 */
.feat-icon-emoji { font-size: 44px; line-height: 1; margin: 4px 0 18px; text-align: left; filter: drop-shadow(0 0 14px rgba(0,229,255,0.35)); }
.c-gold   .feat-icon-emoji { filter: drop-shadow(0 0 14px rgba(240,192,96,0.35)); }
.c-purple .feat-icon-emoji { filter: drop-shadow(0 0 14px rgba(167,139,250,0.35)); }
