:root {
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --radius-full: 9999px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: auto;
      scroll-padding-top: 88px;
      -webkit-text-size-adjust: 100%;
    }
    body {
      font-family: var(--font-body, 'DM Sans', system-ui, sans-serif);
      font-size: var(--text-base, 14px);
      background: var(--bg-void);
      color: var(--text-primary);
      min-height: 100vh;
      overflow-x: hidden;
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
    }
    .container { max-width: 1140px; margin: 0 auto; padding: 0 16px; }

    /* 背景装饰 */
    .bg-mesh {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(124, 58, 237, 0.12), transparent),
        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(236, 72, 153, 0.08), transparent);
    }
    .top-accent {
      position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999;
      background: linear-gradient(90deg, var(--accent-deep), var(--accent-primary), var(--hot-pink), var(--gold), var(--accent-primary));
      background-size: 300% 100%;
      animation: gradient-shift 4s ease infinite;
    }
    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* 按钮 */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      padding: 10px 24px; border-radius: var(--radius-full);
      font-weight: 700; font-size: var(--text-base, 14px); cursor: pointer; border: none;
      font-family: inherit; transition: all 0.2s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-glow {
      color: #fff;
      background: var(--btn-glow-bg, linear-gradient(135deg, var(--accent-deep), var(--accent-primary)));
      box-shadow: var(--btn-glow-shadow, 0 4px 15px rgba(168, 85, 247, 0.4));
    }
    .btn-gold {
      color: var(--color-on-gold, #1a0a00);
      background: var(--btn-gold-bg, linear-gradient(135deg, var(--gold-light), var(--gold), #d97706));
      box-shadow: var(--btn-gold-shadow, 0 4px 15px rgba(245, 158, 11, 0.4));
    }
    .btn-ghost {
      color: var(--text-primary);
      background: rgba(168, 85, 247, 0.1);
      border: 1px solid var(--border-glow);
    }
    .btn-ghost:hover { background: rgba(168, 85, 247, 0.2); }
    .btn-sm { padding: 8px 18px; font-size: var(--text-sm, 13px); }

    /* 头部 */
    .site-header {
      position: sticky; top: 3px; z-index: 100;
      background: rgba(5, 1, 13, 0.75);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 12px 0;
    }
    .header-inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      column-gap: 20px;
    }
    .logo-link {
      display: flex; align-items: center; gap: 10px; flex-shrink: 0; cursor: pointer;
      position: relative; z-index: 3;
    }
    .header-nav {
      display: flex; align-items: center; gap: 6px;
      min-width: 0; width: 100%; justify-content: flex-end;
    }
    .nav-links {
      display: none; align-items: center; flex-wrap: nowrap; gap: 2px;
      margin-right: 8px; flex: 0 1 auto; min-width: 0; justify-content: flex-end;
    }
    .logo-img {
      display: block; height: 40px; width: auto; max-width: 200px;
      object-fit: contain;
    }
    .logo-icon {
      width: 40px; height: 40px; border-radius: 12px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
    }
    .logo-icon svg { width: 22px; height: 22px; color: var(--bg-void); }
    .logo-text {
      font-family: var(--font-heading, 'Outfit', sans-serif); font-weight: 800; font-size: 18px;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .nav-links a {
      padding: 8px 14px; border-radius: var(--radius-full);
      font-size: var(--text-sm, 13px); font-weight: 500; color: var(--text-secondary);
      white-space: nowrap;
      transition: color 0.2s, background 0.2s; cursor: pointer;
    }
    .nav-links a:hover { color: var(--gold-light); background: rgba(168, 85, 247, 0.08); }
    .header-nav .btn { white-space: nowrap; flex-shrink: 0; }
    .site-header--nav-overflow .logo-link {
      padding-right: 4px;
      background: linear-gradient(90deg, rgba(5, 1, 13, 0.98) 78%, rgba(5, 1, 13, 0));
    }
    .site-header--nav-overflow .nav-links { display: none !important; }
    .site-header--nav-overflow .menu-toggle { display: flex !important; }
    .menu-toggle {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; border-radius: 12px;
      background: rgba(168, 85, 247, 0.1); border: 1px solid var(--border-subtle);
      cursor: pointer; color: var(--text-primary);
    }
    .mobile-nav {
      display: none; padding: 8px 0 12px;
      border-top: 1px solid var(--border-subtle); margin-top: 12px;
    }
    .mobile-nav.open { display: block; }
    .mobile-nav a {
      display: block; padding: 12px 16px; border-radius: var(--radius-md);
      font-size: 14px; color: var(--text-primary); cursor: pointer;
      transition: background 0.2s;
    }
    .mobile-nav a:hover { background: rgba(168, 85, 247, 0.1); color: var(--gold-light); }

    /* Hero */
    .hero { position: relative; padding: 24px 0 16px; z-index: 1; }
    .hero-wrapper {
      position: relative; border-radius: var(--radius-xl); overflow: hidden;
      background: linear-gradient(180deg, rgba(18, 5, 40, 0.9), rgba(5, 1, 13, 0.95));
      border: 1px solid var(--border-subtle);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(168, 85, 247, 0.08);
    }
    .hero-visual {
      position: relative; display: block; border-radius: var(--radius-lg);
      overflow: hidden; margin: 16px;
      background: var(--bg-deep, #0a0118);
      line-height: 0; text-align: center; cursor: pointer;
    }
    .hero-banner-media {
      position: relative; display: block; overflow: hidden;
      width: 100%;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(5, 1, 13, 0.95));
    }
    .hero-banner-img {
      position: relative; z-index: 1;
      display: block; width: 100%; max-width: 100%; height: auto;
      max-height: min(460px, 55vw);
      margin: 0 auto;
      vertical-align: top;
      transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }
    .hero-visual-fallback {
      display: none; aspect-ratio: 16 / 9; min-height: 180px;
      align-items: center; justify-content: center; flex-direction: column; gap: 12px;
      padding: 24px; line-height: 1.4;
    }
    .hero-visual.is-empty .hero-banner-media { display: none; }
    .hero-visual.is-empty .hero-visual-fallback { display: flex; }
    .hero-visual-fallback svg { width: 56px; height: 56px; color: var(--accent-glow); opacity: 0.6; }
    .hero-visual-fallback span { font-size: 12px; color: var(--text-muted); }
    .hero-visual::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(5, 1, 13, 0.6));
      pointer-events: none;
    }
    /* Banner 多图轮播 */
    .hero-carousel {
      position: relative; display: block; margin: 16px;
      border-radius: var(--radius-lg); overflow: hidden;
      background: var(--bg-deep, #0a0118);
    }
    .hero-carousel-track {
      position: relative; width: 100%;
      aspect-ratio: 16 / 9;
      max-height: min(460px, 55vw);
      overflow: hidden;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(5, 1, 13, 0.95));
    }
    .hero-carousel-slide {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      opacity: 0; visibility: hidden;
      transition: opacity 0.6s ease, visibility 0.6s ease;
      pointer-events: none;
    }
    .hero-carousel-slide.is-active {
      opacity: 1; visibility: visible; z-index: 1;
      pointer-events: auto;
    }
    .hero-carousel-link {
      display: block; width: 100%; height: 100%;
      line-height: 0;
    }
    .hero-carousel .hero-banner-media {
      width: 100%; height: 100%;
    }
    .hero-carousel .hero-banner-img {
      width: 100%; height: 100%;
      max-height: none;
      margin: 0;
      object-fit: cover;
      object-position: center;
    }
    @media (hover: hover) {
      .hero-visual:hover .hero-banner-img,
      .hero-carousel:hover .hero-carousel-slide.is-active .hero-banner-img {
        transform: scale(1.06);
      }
    }
    .hero-carousel-dots {
      position: absolute; bottom: 12px; left: 0; right: 0; z-index: 2;
      display: flex; justify-content: center; gap: 8px;
    }
    .hero-carousel-dot {
      width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%;
      background: rgba(255, 255, 255, 0.35); cursor: pointer;
      transition: transform 0.2s, background 0.2s;
    }
    .hero-carousel-dot.is-active { background: var(--gold-light); transform: scale(1.2); }
    .hero-content { padding: 4px 24px 28px; text-align: center; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 16px; border-radius: var(--radius-full);
      background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.15));
      border: 1px solid rgba(168, 85, 247, 0.3);
      color: var(--accent-glow); font-size: 12px; font-weight: 700;
      letter-spacing: 0.5px; margin-bottom: 16px;
    }
    .hero-content h1 {
      font-family: var(--font-heading, 'Outfit', sans-serif);
      font-size: var(--heading-hero, clamp(22px, 5vw, 32px)); font-weight: 900; line-height: 1.25;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #fff, var(--accent-glow), var(--gold-bright));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-desc { color: var(--text-secondary); font-size: var(--text-base, 14px); line-height: 1.8; max-width: 720px; margin: 0 auto 20px; }
    .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .hero-actions .btn { min-width: 150px; min-height: 44px; }

    /* 滚动公告 */
    .ticker-wrap {
      position: relative; z-index: 1; overflow: hidden;
      padding: 10px 0; margin: 0 -16px;
      background: linear-gradient(90deg, var(--bg-void), rgba(168, 85, 247, 0.06), var(--bg-void));
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }
    .ticker { display: flex; gap: 48px; animation: ticker-scroll 25s linear infinite; white-space: nowrap; list-style: none; margin: 0; padding: 0; }
    .ticker-item { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 13px; font-weight: 600; flex-shrink: 0; }
    .ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-primary); box-shadow: 0 0 8px var(--accent-primary); }
    .ticker-hot { color: var(--gold); }
    @keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* 通用区块头 */
    .section-head {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px; gap: 12px;
    }
    .section-head h2, .intro-block > h2 {
      font-family: var(--font-heading, 'Outfit', sans-serif); font-size: var(--heading-section, clamp(18px, 4vw, 22px));
      font-weight: 800; color: var(--text-white);
    }
    .section-link { font-size: 13px; font-weight: 600; color: var(--accent-glow); cursor: pointer; white-space: nowrap; transition: color 0.2s; }
    .section-link:hover { color: var(--gold-light); }

    /* 锚点跳转高亮 */
    @keyframes hunsing-anchor-highlight {
      0% {
        box-shadow: inset 0 0 0 0 rgba(168, 85, 247, 0), 0 0 0 0 rgba(245, 158, 11, 0);
        transform: translateY(0);
      }
      18% {
        box-shadow: inset 0 0 0 2px rgba(168, 85, 247, 0.55), 0 0 36px rgba(168, 85, 247, 0.22);
        transform: translateY(-2px);
      }
      100% {
        box-shadow: inset 0 0 0 0 rgba(168, 85, 247, 0), 0 0 0 0 rgba(245, 158, 11, 0);
        transform: translateY(0);
      }
    }
    .hunsing-anchor-highlight {
      animation: hunsing-anchor-highlight 1.15s ease-out;
      border-radius: var(--radius-lg);
    }
    section[id],
    .hero[id] {
      scroll-margin-top: 88px;
    }
    section[id]:focus,
    .hero[id]:focus {
      outline: none;
    }

    /* 平台介绍（布局参考 amp/index.html） */
    .intro-section { position: relative; z-index: 1; padding: 28px 0; }
    .intro-block {
      padding: 24px 20px; border-radius: var(--radius-lg);
      background: var(--bg-glass); backdrop-filter: blur(12px);
      border: 1px solid var(--border-subtle);
    }
    .intro-block > h2 {
      font-weight: 800; color: var(--gold-light); text-align: center;
      margin: 0 0 16px;
    }
    .feature-row {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
      margin-bottom: 14px;
    }
    .feature-pill {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      min-height: 88px; padding: 14px 8px; border-radius: var(--radius-lg);
      background: rgba(168, 85, 247, 0.06); border: 1px solid var(--border-subtle);
      text-align: center; transition: border-color 0.2s, box-shadow 0.2s; cursor: pointer;
    }
    .feature-pill:hover { border-color: var(--border-glow); box-shadow: 0 6px 20px rgba(168, 85, 247, 0.1); }
    .feature-icon {
      width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
      background: rgba(168, 85, 247, 0.15); color: var(--accent-glow);
      display: flex; align-items: center; justify-content: center;
    }
    .feature-icon svg { width: 20px; height: 20px; }
    .feature-pill strong { font-size: 13px; color: var(--text-white); line-height: 1.3; }
    .feature-pill span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

    /* 数据条 — AMP stat-row */
    .stat-row {
      display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px;
      margin-bottom: 14px;
    }
    .stat-card {
      padding: 14px; border-radius: var(--radius-lg);
      background: linear-gradient(160deg, var(--bg-glass), rgba(10, 1, 24, 0.96));
      border: 1px solid var(--border-subtle);
    }
    .stat-tag {
      display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
      background: rgba(168, 85, 247, 0.2); color: var(--gold-light);
      font-size: 11px; font-weight: 700;
    }
    .stat-value {
      display: block; margin-top: 8px;
      font-family: 'Outfit', sans-serif; font-size: clamp(22px, 5vw, 28px);
      font-weight: 900; color: var(--text-white); line-height: 1.1;
    }
    .stat-meta {
      display: block; margin-top: 6px; font-size: 12px; color: var(--text-secondary); line-height: 1.45;
    }
    .stat-stack { display: grid; gap: 10px; }
    .stat-mini {
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      min-height: 55px; padding: 8px 12px; text-align: center;
    }
    .stat-mini strong {
      display: block; margin-top: 4px; font-size: 15px; font-weight: 800; color: var(--text-white);
    }

    .intro-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 10px; }
    .intro-body p:last-child { margin-bottom: 0; }

    /* 优惠横条 */
    .promo-strip {
      display: block; padding: 16px 20px; margin-bottom: 28px;
      border-radius: var(--radius-lg); text-align: center; cursor: pointer;
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(236, 72, 153, 0.1));
      border: 1px solid rgba(245, 158, 11, 0.3);
      transition: border-color 0.2s, transform 0.2s;
    }
    .promo-strip:hover { border-color: var(--gold); transform: translateY(-1px); }
    .promo-text { font-size: 15px; font-weight: 700; color: var(--gold-light); margin-bottom: 4px; }
    .promo-sub { font-size: 12px; color: var(--text-secondary); }

    /* 优惠卡片 */
    .promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-bottom: 28px; position: relative; z-index: 1; }
    .promo-card {
      padding: 20px; border-radius: var(--radius-lg);
      background: var(--bg-glass); border: 1px solid var(--border-subtle);
      transition: border-color 0.2s; cursor: pointer;
    }
    .promo-card:hover { border-color: var(--border-glow); }
    .promo-card.featured { border-color: rgba(245, 158, 11, 0.3); background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), var(--bg-glass)); }
    .promo-tag {
      display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
      background: rgba(249, 115, 22, 0.2); color: var(--cta);
      font-size: 10px; font-weight: 700; margin-bottom: 10px;
    }
    .promo-amount { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 900; color: var(--gold-light); margin-bottom: 6px; }
    .promo-card h3 { font-size: 15px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
    .promo-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

    /* 游戏厂商 — 统一 LOGO 展示尺寸 */
    .providers { position: relative; z-index: 1; padding-bottom: 28px; }
    .provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
      gap: 12px;
    }
    .provider-card {
      display: block; border-radius: var(--radius-md); overflow: hidden;
      background: var(--bg-glass); border: 1px solid var(--border-subtle);
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; cursor: pointer;
    }
    .provider-card:hover {
      border-color: var(--border-glow); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(168, 85, 247, 0.12);
    }
    .provider-logo-slot {
      --provider-logo-h: 44px;
      position: relative; width: 100%; height: 80px;
      display: flex; align-items: center; justify-content: center;
      padding: 14px 16px; box-sizing: border-box;
      background: rgba(168, 85, 247, 0.06);
    }
    .provider-logo-slot img {
      display: block; width: auto; height: auto;
      max-width: 100%; max-height: var(--provider-logo-h);
      object-fit: contain; object-position: center;
      transition: transform 0.2s;
    }
    .provider-card:hover .provider-logo-slot img { transform: scale(1.06); }
    .provider-logo-slot img.is-error { display: none; }
    .provider-logo-slot img:not(.is-error) + .provider-fallback { display: none; }
    .provider-fallback {
      position: absolute; inset: 8px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 6px; padding: 6px;
      border: 1px dashed rgba(168, 85, 247, 0.35); border-radius: calc(var(--radius-md) - 2px);
      color: var(--text-muted); text-align: center;
    }
    .provider-fallback svg { width: 22px; height: 22px; color: var(--accent-glow); opacity: 0.6; flex-shrink: 0; }
    .provider-fallback span { font-size: 11px; font-weight: 600; line-height: 1.3; }
    .provider-fallback em {
      font-style: normal; font-size: 9px; color: var(--text-muted); opacity: 0.7;
      word-break: break-all;
    }
    .provider-card-add { border-style: dashed; border-color: rgba(168, 85, 247, 0.3); }
    .provider-card-add:hover { border-color: var(--accent-glow); }
    .provider-card-add .provider-logo-slot img { display: none; }
    .provider-card-add .provider-fallback { display: flex; border: none; color: var(--accent-glow); }
    .provider-card-add .provider-fallback em { color: var(--accent-glow); opacity: 0.8; }

    /* 热门游戏 — 竖屏封面（392:470），4 列网格适当缩放 */
    .games { position: relative; z-index: 1; padding-bottom: 28px; }
    .game-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .game-card {
      position: relative; display: flex; flex-direction: column;
      border-radius: var(--radius-lg); overflow: hidden;
      background: var(--bg-glass); border: 1px solid var(--border-subtle);
      cursor: pointer;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .game-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(168, 85, 247, 0.15);
    }
    .game-cover {
      position: relative; aspect-ratio: 392 / 470; overflow: hidden;
      background: var(--bg-deep);
    }
    .game-cover-zoom {
      width: 100%; height: 100%;
      transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .game-cover-zoom img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      display: block;
    }
    .game-cover-zoom--baccarat { background: linear-gradient(145deg, #1a0a2e, #7c3aed 55%, #4c1d95); }
    .game-cover-zoom--sports { background: linear-gradient(145deg, #0a1628, #0369a1 50%, #0ea5e9); }
    .game-cover-zoom--slots { background: linear-gradient(145deg, #2e1065, #a855f7 45%, #f59e0b); }
    .game-cover-zoom--poker { background: linear-gradient(145deg, #14532d, #15803d 50%, #fbbf24); }
    .game-cover-zoom--esports { background: linear-gradient(145deg, #1e1b4b, #6366f1 50%, #ec4899); }
    .game-cover-zoom--lottery { background: linear-gradient(145deg, #431407, #ea580c 50%, #fbbf24); }
    .game-cover-zoom--fishing { background: linear-gradient(145deg, #042f2e, #0d9488 50%, #22d3ee); }
    .game-cover-zoom--vr { background: linear-gradient(145deg, #312e81, #8b5cf6 50%, #c084fc); }
    .game-hover {
      position: absolute; inset: 0; z-index: 2;
      display: flex; align-items: center; justify-content: center;
      background: rgba(5, 1, 13, 0.5);
      backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
      opacity: 0; transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .game-play-icon {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--bg-void);
      box-shadow: 0 4px 20px rgba(245, 158, 11, 0.55), 0 0 0 4px rgba(245, 158, 11, 0.2);
      transform: scale(0.75); transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .game-play-icon svg { width: 18px; height: 18px; margin-left: 2px; }
    .game-badge {
      position: absolute; top: 8px; left: 8px; z-index: 3;
      padding: 3px 9px; border-radius: var(--radius-full);
      font-size: 9px; font-weight: 800; letter-spacing: 0.4px; color: #fff;
    }
    .game-badge.hot { background: var(--cta); }
    .game-badge.new { background: var(--accent-primary); }
    .game-badge.top { background: var(--gold); color: var(--bg-void); }
    .game-meta { padding: 8px 10px 10px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
    .game-meta-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 6px; }
    .game-meta-head h3 {
      font-size: 12px; font-weight: 700; color: var(--text-white); line-height: 1.3;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .game-provider {
      flex-shrink: 0; padding: 2px 7px; border-radius: var(--radius-full);
      font-size: 9px; font-weight: 600; color: var(--accent-glow);
      background: rgba(168, 85, 247, 0.12); border: 1px solid rgba(168, 85, 247, 0.25);
    }
    .game-rtp {
      display: flex; align-items: center; gap: 6px;
    }
    .game-rtp-label {
      font-size: 9px; font-weight: 700; color: var(--text-muted);
      letter-spacing: 0.3px; flex-shrink: 0;
    }
    .game-rtp-bar {
      flex: 1; height: 4px; border-radius: var(--radius-full);
      background: rgba(168, 85, 247, 0.15); overflow: hidden;
    }
    .game-rtp-bar span {
      display: block; height: 100%; border-radius: inherit;
      background: linear-gradient(90deg, var(--accent-primary), var(--gold-light));
      transition: width 0.6s ease;
    }
    .game-rtp-val {
      font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800;
      color: var(--gold-light); flex-shrink: 0; min-width: 38px; text-align: right;
    }
    .game-desc {
      font-size: 10px; color: var(--text-muted); line-height: 1.45;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    @media (hover: hover) {
      .game-card:hover .game-cover-zoom { transform: scale(1.1); }
      .game-card:hover .game-hover { opacity: 1; }
      .game-card:hover .game-play-icon { transform: scale(1); }
    }

    /* 代理计划 */
    .agent-section { position: relative; z-index: 1; padding-bottom: 28px; }
    .agent-intro {
      padding: 20px; border-radius: var(--radius-lg); margin-bottom: 20px;
      background: var(--bg-glass); border: 1px solid var(--border-subtle);
    }
    .agent-intro p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 10px; }
    .agent-intro p:last-child { margin-bottom: 0; }
    .agent-arch-wrap {
      padding: 20px 16px; border-radius: var(--radius-lg); margin-bottom: 20px;
      background: linear-gradient(180deg, rgba(18, 5, 40, 0.9), rgba(5, 1, 13, 0.95));
      border: 1px solid var(--border-subtle);
    }
    .agent-arch-title {
      text-align: center; font-size: 13px; font-weight: 700; color: var(--accent-glow);
      margin: 0 0 16px; letter-spacing: 0.5px;
    }
    .agent-arch-diagram { max-width: 720px; margin: 0 auto; }
    .agent-arch-panel {
      border-radius: 12px; border: 1px solid var(--border-subtle);
      padding: 14px 12px; margin-bottom: 14px;
    }
    .agent-arch-panel--flow {
      background: rgba(245, 158, 11, 0.08);
      border-color: rgba(245, 158, 11, 0.35);
    }
    .agent-arch-panel--tree {
      position: relative;
      background: rgba(10, 2, 24, 0.5);
      padding-top: 12px;
    }
    .agent-arch-banner {
      margin: 0 0 12px; text-align: center; font-size: 12px; font-weight: 700;
      color: #fbbf24; line-height: 1.45;
    }
    .agent-arch-flow {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
      gap: 6px 4px; margin: 0; padding: 0; list-style: none;
    }
    .agent-arch-flow-item {
      display: flex; align-items: center; gap: 4px; max-width: 100%;
    }
    .agent-arch-flow-arrow {
      color: #fbbf24; font-size: 12px; font-weight: 700; flex-shrink: 0;
    }
    .agent-arch-chip {
      display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 4px; padding: 8px 10px; border-radius: 8px; text-align: center;
      font-size: 11px; font-weight: 600; line-height: 1.35;
      word-break: break-word; overflow-wrap: anywhere; hyphens: auto;
      min-width: 72px; max-width: 148px;
    }
    .agent-arch-chip__text { display: block; width: 100%; }
    .agent-arch-chip__sub {
      display: block; width: 100%; font-size: 10px; font-weight: 700; color: #fbbf24;
    }
    .agent-arch-chip--purple {
      background: rgba(168, 85, 247, 0.2); border: 1px solid #a855f7; color: #e2e8f0;
    }
    .agent-arch-chip--purple-soft {
      background: rgba(168, 85, 247, 0.15); border: 1px solid rgba(168, 85, 247, 0.4); color: #e2e8f0;
    }
    .agent-arch-chip--gold {
      background: linear-gradient(135deg, #fbbf24, #f59e0b); border: 1px solid #fde68a; color: #1a0a00;
    }
    .agent-arch-chip--invite {
      background: rgba(168, 85, 247, 0.25); border: 1px solid #c084fc; color: #c084fc;
    }
    .agent-arch-chip--invite .agent-arch-chip__text { color: #c084fc; }
    .agent-arch-chip--cyan {
      background: rgba(34, 211, 238, 0.15); border: 1px solid rgba(34, 211, 238, 0.5); color: #22d3ee;
    }
    .agent-arch-hint {
      margin: 10px 0 0; text-align: center; font-size: 11px; color: #94a3b8; line-height: 1.45;
    }
    .agent-arch-rebate {
      position: absolute; top: 12px; right: 8px; display: flex; flex-direction: column;
      align-items: center; gap: 6px; width: 72px; margin: 0; pointer-events: none;
    }
    .agent-arch-rebate__line {
      width: 2px; flex: 1; min-height: 120px;
      background: linear-gradient(0deg, rgba(245, 158, 11, 0.5), rgba(192, 132, 252, 0.8));
      border-radius: 2px;
    }
    .agent-arch-rebate__text {
      font-size: 10px; color: #94a3b8; text-align: center; line-height: 1.3;
      word-break: break-word;
    }
    .agent-arch-tree {
      display: flex; flex-direction: column; align-items: center;
      padding: 0 56px 4px 8px;
    }
    .agent-arch-node {
      display: block; width: 100%; max-width: 420px; padding: 10px 14px;
      border-radius: 10px; text-align: center; font-size: 12px; font-weight: 600;
      line-height: 1.4; word-break: break-word; overflow-wrap: anywhere;
    }
    .agent-arch-tree h3 {
      margin: 0;
      padding: 0;
      font-size: inherit;
      font-weight: inherit;
      line-height: inherit;
    }
    .agent-arch-node--self .agent-arch-node__title,
    .agent-arch-node--infinity .agent-arch-node__title {
      width: 100%;
    }
    .agent-arch-node__sub {
      margin: 0;
    }
    .agent-arch-node--platform {
      background: linear-gradient(135deg, #7c3aed, #a855f7);
      border: 1px solid rgba(192, 132, 252, 0.5); color: #fff; font-size: 14px; font-weight: 700;
    }
    .agent-arch-node--self {
      background: rgba(245, 158, 11, 0.18); border: 1.5px solid #f59e0b;
      display: flex; flex-direction: column; gap: 6px;
    }
    .agent-arch-node--self .agent-arch-node__title { color: #fbbf24; font-size: 13px; }
    .agent-arch-node--self .agent-arch-node__sub { color: #94a3b8; font-size: 11px; font-weight: 500; }
    .agent-arch-node--sub {
      background: rgba(168, 85, 247, 0.15); border: 1px solid rgba(168, 85, 247, 0.4); color: #e2e8f0;
      max-width: none; font-size: 11px;
    }
    .agent-arch-node--sub-more {
      background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.3);
      color: #94a3b8; max-width: none; font-size: 10px; font-weight: 500;
      margin: 0;
    }
    .agent-arch-node--infinity {
      border: 2px dashed #f59e0b; background: rgba(245, 158, 11, 0.12);
      border-radius: 22px; display: flex; flex-direction: column; gap: 6px; max-width: 480px;
    }
    .agent-arch-node--infinity .agent-arch-node__title { color: #fbbf24; font-size: 15px; font-weight: 800; }
    .agent-arch-node--infinity .agent-arch-node__sub { color: #94a3b8; font-size: 11px; font-weight: 500; }
    .agent-arch-node--player {
      flex: 1 1 100px; max-width: 160px; min-width: 0;
      background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.35);
      color: #94a3b8; font-size: 10px; font-weight: 500; padding: 8px 10px;
    }
    .agent-arch-vline {
      width: 2px; height: 18px; background: #64748b; flex-shrink: 0;
    }
    .agent-arch-vline--short { height: 14px; }
    .agent-arch-vline--dashed {
      height: 18px;
      background: repeating-linear-gradient(180deg, #64748b 0 4px, transparent 4px 8px);
    }
    .agent-arch-vline--branch {
      position: relative; width: min(72%, 320px); height: 20px; background: transparent;
    }
    .agent-arch-vline--branch::before {
      content: ""; position: absolute; left: 50%; top: 0; width: 2px; height: 10px;
      background: #64748b; transform: translateX(-50%);
    }
    .agent-arch-vline--branch::after {
      content: ""; position: absolute; left: 16.66%; right: 16.66%; top: 10px; height: 2px;
      background: #64748b;
    }
    .agent-arch-branch {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px; width: 100%; max-width: 520px;
    }
    .agent-arch-branch-col {
      display: flex; flex-direction: column; align-items: center; min-width: 0;
    }
    .agent-arch-players {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
      width: 100%; max-width: 520px;
    }
    .agent-arch-footer {
      margin-top: 4px; padding-top: 12px; border-top: 1px solid rgba(100, 116, 139, 0.35);
    }
    .agent-arch-footer p {
      margin: 0 0 8px; font-size: 11px; color: #64748b; line-height: 1.55;
      text-align: center; word-break: break-word;
    }
    .agent-arch-footer p:last-child { margin-bottom: 0; }
    @media (max-width: 640px) {
      .agent-arch-tree { padding-right: 8px; }
      .agent-arch-rebate { position: static; flex-direction: row; width: 100%; margin-bottom: 10px; }
      .agent-arch-rebate__line {
        width: 100%; min-height: 0; height: 2px; flex: 1;
        background: linear-gradient(90deg, rgba(192, 132, 252, 0.8), rgba(245, 158, 11, 0.5));
      }
      .agent-arch-rebate__text { max-width: 42%; text-align: right; }
      .agent-arch-branch { grid-template-columns: 1fr; max-width: 280px; }
      .agent-arch-vline--branch { display: none; }
      .agent-arch-chip { max-width: 100%; min-width: 0; }
      .agent-arch-flow-item { width: 100%; justify-content: center; }
      .agent-arch-flow-arrow { display: none; }
    }
    .agent-timeline {
      position: relative; margin-bottom: 20px; padding-left: 32px; list-style: none;
    }
    .agent-timeline::before {
      content: ""; position: absolute; left: 11px; top: 14px; bottom: 14px; width: 2px;
      background: linear-gradient(180deg, var(--accent-primary), var(--gold), rgba(245, 158, 11, 0.4));
    }
    .agent-timeline-item {
      position: relative; padding-bottom: 18px;
    }
    .agent-timeline-item:last-child { padding-bottom: 0; }
    .agent-timeline-dot {
      position: absolute; left: -32px; top: 6px;
      width: 22px; height: 22px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--bg-deep); border: 2px solid var(--accent-primary);
      box-shadow: 0 0 10px rgba(168, 85, 247, 0.35);
    }
    .agent-timeline-dot svg { width: 11px; height: 11px; color: var(--accent-glow); }
    .agent-timeline-item.permanent .agent-timeline-dot {
      border-color: var(--gold); box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
    }
    .agent-timeline-item.permanent .agent-timeline-dot svg { color: var(--gold-light); }
    .agent-timeline-head {
      display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 6px;
    }
    .agent-timeline-time {
      display: inline-block; padding: 2px 10px; border-radius: var(--radius-full);
      font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
      color: var(--accent-glow); background: rgba(168, 85, 247, 0.12);
      border: 1px solid rgba(168, 85, 247, 0.25);
    }
    .agent-timeline-item.permanent .agent-timeline-time {
      color: var(--gold-light); background: rgba(245, 158, 11, 0.12);
      border-color: rgba(245, 158, 11, 0.3);
    }
    .agent-timeline-head h3 {
      font-size: 16px; font-weight: 700; color: var(--text-white);
    }
    .agent-timeline-rate {
      font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900;
      color: var(--gold-light); margin-bottom: 6px;
    }
    .agent-timeline-item.permanent .agent-timeline-rate { font-size: 18px; }
    .agent-timeline-item p {
      font-size: 13px; color: var(--text-secondary); line-height: 1.65;
      padding: 10px 12px; border-radius: var(--radius-md);
      background: rgba(168, 85, 247, 0.04); border-left: 3px solid rgba(168, 85, 247, 0.35);
    }
    .agent-timeline-item.permanent p {
      border-left-color: rgba(245, 158, 11, 0.5);
      background: rgba(245, 158, 11, 0.06);
    }
    .agent-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .agent-step {
      text-align: center; padding: 16px 10px; border-radius: var(--radius-md);
      background: rgba(168, 85, 247, 0.06); border: 1px solid var(--border-subtle);
    }
    .agent-step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 28px; border-radius: 50%; margin-bottom: 8px;
      background: linear-gradient(135deg, var(--accent-deep), var(--accent-primary));
      font-size: 13px; font-weight: 800; color: #fff;
    }
    .agent-step strong { display: block; font-size: 13px; color: var(--text-white); margin-bottom: 4px; }
    .agent-step span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
    .agent-cta-wrap { text-align: center; margin-top: 20px; }

    /* FAQ */
    .faq-section { position: relative; z-index: 1; padding-bottom: 28px; }
    .faq-list { display: flex; flex-direction: column; gap: 8px; }
    .faq-item {
      border-radius: var(--radius-md); background: var(--bg-glass);
      border: 1px solid var(--border-subtle); overflow: hidden; transition: border-color 0.2s;
    }
    .faq-item[open] { border-color: var(--border-glow); }
    .faq-item summary {
      padding: 16px 20px; cursor: pointer; color: var(--text-white);
      font-weight: 700; font-size: 14px; list-style: none;
      display: flex; justify-content: space-between; align-items: center;
      transition: color 0.2s;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: "+"; color: var(--accent-glow); font-size: 16px; font-weight: 700; flex-shrink: 0; margin-left: 12px; transition: transform 0.2s; }
    .faq-item[open] summary::after { content: "−"; }
    .faq-item summary:hover { color: var(--accent-glow); }
    .faq-answer { padding: 0 20px 16px; color: var(--text-secondary); font-size: 13.5px; line-height: 1.75; }

    /* 底部 */
    .site-footer {
      position: relative; z-index: 1;
      padding: 24px 0 calc(90px + env(safe-area-inset-bottom));
      border-top: 1px solid var(--border-subtle);
      text-align: center;
    }
    .footer-bottom-links {
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
      gap: 6px 4px; margin-bottom: 16px;
    }
    .footer-bottom-links a {
      padding: 6px 10px; font-size: 12px; color: var(--text-muted);
      cursor: pointer; transition: color 0.2s;
    }
    .footer-bottom-links a:hover { color: var(--gold-light); }
    .footer-bottom-links span { color: var(--border-subtle); font-size: 12px; user-select: none; }

    /* 页脚：信任条（Social Proof） */
    .footer-trust {
      display: grid; gap: 28px; max-width: 960px; margin: 0 auto 20px; padding: 8px 4px 0;
    }
    .footer-trust-group { min-width: 0; text-align: center; }
    .footer-trust-eyebrow {
      margin: 0 0 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--text-muted);
    }
    .footer-trust-sep {
      display: none;
    }
    .footer-social-list,
    .footer-license-list {
      list-style: none; margin: 0; padding: 0;
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px;
    }
    .footer-social-item,
    .footer-license-item { margin: 0; padding: 0; }
    .footer-social-pill {
      display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
      padding: 10px 18px; border-radius: 999px; cursor: pointer;
      background: var(--overlay-primary-06); border: 1px solid var(--border-subtle);
      color: var(--text-secondary);
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .footer-social-pill:hover {
      color: var(--gold-light); border-color: var(--border-glow);
      background: var(--overlay-primary-10); box-shadow: var(--shadow-primary-soft);
    }
    .footer-social-pill:focus-visible {
      outline: 2px solid var(--gold-light); outline-offset: 2px;
    }
    .footer-social-pill__icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 24px; height: 24px; flex-shrink: 0; color: var(--text-primary);
    }
    .footer-social-pill__icon i {
      font-size: 20px; line-height: 1; width: 1em; height: 1em;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .footer-social-pill__label {
      font-size: 13px; font-weight: 600; line-height: 1.2; white-space: nowrap;
    }
    .footer-social-pill:hover .footer-social-pill__icon { color: var(--gold-light); }
    .footer-license-list { flex-direction: column; align-items: stretch; gap: 10px; max-width: 420px; margin: 0 auto; }
    .footer-license-chip {
      display: flex; align-items: flex-start; gap: 14px; width: 100%;
      padding: 14px 16px; border-radius: var(--radius-md); text-align: left;
      background: var(--overlay-primary-04); border: 1px solid var(--border-subtle);
      color: inherit;
    }
    .footer-license-chip--link {
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .footer-license-chip--link:hover {
      background: var(--overlay-primary-08); border-color: var(--border-glow);
      box-shadow: var(--shadow-primary-soft);
    }
    .footer-license-chip--link:focus-visible {
      outline: 2px solid var(--gold-light); outline-offset: 2px;
    }
    .footer-license-chip__mark {
      flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: var(--overlay-primary-10); border: 1px solid var(--border-subtle);
      color: var(--gold-light); font-size: 20px; overflow: hidden;
    }
    .footer-license-chip__mark img {
      width: 100%; height: 100%; object-fit: contain; padding: 5px;
    }
    .footer-license-chip__body {
      display: flex; flex-direction: column; gap: 4px; min-width: 0;
    }
    .footer-license-chip__name {
      font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.35;
    }
    .footer-license-chip__id {
      font-size: 12px; font-weight: 700; letter-spacing: 0.03em; color: var(--gold-light);
    }
    .footer-license-chip__note {
      font-size: 12px; line-height: 1.5; color: var(--text-muted);
    }

    /* 页脚：18+ / SSL 合规（仅图片横排） */
    .footer-compliance {
      max-width: 960px; margin: 0 auto 16px; padding: 0 4px;
    }
    .footer-compliance-list {
      list-style: none; margin: 0; padding: 0;
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px;
    }
    .footer-compliance-item { margin: 0; padding: 0; }
    .footer-compliance-img {
      display: inline-flex; align-items: center; justify-content: center;
      line-height: 0;
    }
    .footer-compliance-img--link {
      cursor: pointer; border-radius: 8px;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .footer-compliance-img--link:hover {
      opacity: 0.88; transform: translateY(-1px);
    }
    .footer-compliance-img--link:focus-visible {
      outline: 2px solid var(--accent-glow); outline-offset: 3px;
    }
    .footer-compliance-img img {
      display: block; width: auto; height: 56px; max-width: 120px;
      object-fit: contain;
    }

    .footer-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
    .footer-badge {
      padding: 8px 16px; border-radius: var(--radius-md);
      background: rgba(168, 85, 247, 0.08); border: 1px solid var(--border-subtle);
      font-size: 11px; font-weight: 600; color: var(--text-muted);
    }
    .copyright { text-align: center; font-size: 12px; color: var(--text-muted); }

    /* 底部固定栏 */
    .sticky-bar {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
      display: flex; gap: 10px; max-width: 1140px; margin: 0 auto;
      padding: 10px 14px max(10px, env(safe-area-inset-bottom));
      background: rgba(5, 1, 13, 0.85); backdrop-filter: blur(20px);
      border-top: 1px solid var(--border-subtle);
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }
    .sticky-btn {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      flex: 1; min-height: 50px; padding: 8px 12px;
      border-radius: var(--radius-md); font-size: 15px; font-weight: 700;
      font-family: inherit; cursor: pointer; border: none; transition: transform 0.2s;
    }
    .sticky-btn:hover { transform: translateY(-1px); }
    .sticky-btn-primary {
      flex: 1.5; color: #1a0a00;
      background: linear-gradient(135deg, var(--gold-light), var(--gold), #d97706);
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }
    .sticky-btn-secondary {
      color: var(--text-primary);
      background: rgba(168, 85, 247, 0.15); border: 1px solid var(--border-glow);
    }
    .sticky-sub { display: block; margin-top: 2px; font-size: 10px; font-weight: 600; opacity: 0.8; }

    /* 返回顶部 */
    .back-to-top {
      position: fixed; right: 16px; z-index: 99;
      bottom: calc(88px + env(safe-area-inset-bottom));
      display: flex; align-items: center; justify-content: center;
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid var(--border-glow);
      background: rgba(5, 1, 13, 0.92);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      color: var(--gold-light);
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
      opacity: 0; visibility: hidden; pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
    }
    .back-to-top.is-visible {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateY(0);
    }
    .back-to-top:hover {
      background: rgba(168, 85, 247, 0.22);
      color: var(--gold-bright);
    }
    .back-to-top:focus-visible {
      outline: 2px solid var(--accent-glow); outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    }
    @media (min-width: 992px) {
      .nav-links { display: flex; }
      .menu-toggle { display: none; }
      .mobile-nav:not(.open) { display: none !important; }
      .mobile-nav.open { display: block !important; }
      .footer-trust:has(.footer-trust-group--social):has(.footer-trust-group--license) {
        grid-template-columns: 1fr auto 1fr; align-items: start; gap: 36px;
      }
      .footer-trust-sep {
        display: block; width: 1px; align-self: stretch; min-height: 72px;
        background: linear-gradient(180deg, transparent, var(--border-subtle) 20%, var(--border-subtle) 80%, transparent);
      }
      .footer-trust-group--license .footer-license-list {
        max-width: none; margin: 0;
      }
    }
    @media (min-width: 992px) and (max-width: 1279px) {
      .nav-links { gap: 0; margin-right: 4px; }
      .nav-links a { padding: 8px 10px; font-size: 12px; }
      .header-nav { gap: 4px; }
      .header-nav .btn-sm { padding: 8px 12px; font-size: 12px; }
      .btn-login-desktop { display: none; }
    }
    @media (min-width: 992px) and (max-width: 1399px) {
      body.hunsing-locale-vi .nav-links a,
      body.hunsing-locale-th .nav-links a,
      body.hunsing-locale-tr .nav-links a {
        padding: 8px 8px; font-size: 11.5px;
      }
      body.hunsing-locale-vi .header-nav .btn-sm,
      body.hunsing-locale-th .header-nav .btn-sm,
      body.hunsing-locale-tr .header-nav .btn-sm {
        padding: 8px 10px; font-size: 11.5px;
      }
      body.hunsing-locale-vi .btn-login-desktop,
      body.hunsing-locale-th .btn-login-desktop,
      body.hunsing-locale-tr .btn-login-desktop {
        display: none;
      }
    }
    @media (max-width: 768px) {
      .feature-row { grid-template-columns: repeat(2, 1fr); }
      .game-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
      .promo-grid { grid-template-columns: 1fr; }
      .agent-steps { grid-template-columns: 1fr; }
      .logo-text { display: none; }
      .provider-logo-slot { height: 72px; padding: 12px 14px; --provider-logo-h: 38px; }
      .intro-block { padding: 18px 14px; }
    }
    @media (max-width: 520px) {
      .hero-content { padding: 4px 16px 24px; }
      .hero-visual { margin: 12px; }
      .hero-banner-img { max-height: min(360px, 62vw); }
      .hero-carousel-track { max-height: min(360px, 62vw); }
      .feature-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .feature-pill { min-height: 74px; padding: 10px 6px; }
      .feature-pill strong { font-size: 12px; }
      .feature-pill span { font-size: 10px; }
      .provider-logo-slot { height: 64px; padding: 10px 12px; --provider-logo-h: 34px; }
      .game-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .header-nav .btn-sm { padding: 7px 14px; font-size: 12px; }
      .btn-login-desktop { display: none; }
      .footer-social-list { gap: 10px; }
      .footer-social-pill { padding: 10px 14px; }
      .footer-social-pill__label { font-size: 12px; }
    }
    @media (max-width: 380px) {
      .stat-row { grid-template-columns: 1fr; }
      .stat-stack { grid-template-columns: 1fr 1fr; }
      .sticky-sub { display: none; }
    }

    /* ── 文章 / 页面 / 404 ── */
    .site-content {
      position: relative;
      z-index: 1;
      padding: 40px 0 72px;
    }
    .hunsing-singular .site-footer {
      padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
    .content-card {
      max-width: 820px;
      margin: 0 auto;
      padding: 32px 28px;
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(25, 10, 55, 0.72), rgba(10, 4, 24, 0.88));
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-primary-soft);
    }
    .content-card + .content-card { margin-top: 24px; }
    .content-card--404,
    .content-card--empty {
      text-align: center;
      padding: 48px 28px;
    }
    .content-eyebrow {
      display: inline-block;
      margin-bottom: 12px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: var(--gold-light, var(--color-secondary-light));
    }
    .content-title {
      font-family: var(--font-heading, 'Outfit', sans-serif);
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.15;
      color: var(--text-white);
      margin-bottom: 12px;
    }
    .content-lead {
      color: var(--text-secondary);
      font-size: 16px;
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto 24px;
    }
    .content-header { margin-bottom: 20px; }
    .content-meta {
      color: var(--text-muted);
      font-size: 13px;
    }
    .content-meta-sep { margin: 0 8px; }
    .content-featured-media {
      margin: 0 0 24px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
    }
    .content-featured-image {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }
    .content-actions {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .entry-content {
      color: var(--text-primary);
      font-size: 16px;
      line-height: 1.8;
    }
    .entry-content > * + * { margin-top: 1em; }
    .entry-content h2,
    .entry-content h3,
    .entry-content h4 {
      font-family: var(--font-heading, 'Outfit', sans-serif);
      color: var(--text-white);
      line-height: 1.3;
      margin-top: 1.6em;
      margin-bottom: 0.6em;
    }
    .entry-content h2 { font-size: 1.5em; }
    .entry-content h3 { font-size: 1.25em; }
    .entry-content a {
      color: var(--gold-light, var(--color-secondary-light));
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .entry-content a:hover { color: var(--text-white); }
    .entry-content ul,
    .entry-content ol {
      padding-left: 1.4em;
    }
    .entry-content li + li { margin-top: 0.35em; }
    .entry-content blockquote {
      margin: 1.2em 0;
      padding: 14px 18px;
      border-left: 3px solid var(--gold, var(--color-secondary));
      background: rgba(168, 85, 247, 0.08);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      color: var(--text-secondary);
    }
    .entry-content img {
      border-radius: var(--radius-md);
      margin: 1em 0;
    }
    .entry-content table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    .entry-content th,
    .entry-content td {
      border: 1px solid var(--border-subtle);
      padding: 10px 12px;
    }
    .page-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--border-subtle);
      font-size: 14px;
    }
    .page-links-title { color: var(--text-muted); margin-right: 8px; }
    .page-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      padding: 6px 12px;
      border-radius: var(--radius-full);
      background: rgba(168, 85, 247, 0.12);
      border: 1px solid var(--border-glow);
    }
    .post-pagination {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--border-subtle);
    }
    .post-pagination__link {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 14px 16px;
      border-radius: var(--radius-md);
      background: rgba(168, 85, 247, 0.08);
      border: 1px solid var(--border-subtle);
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .post-pagination__link:hover {
      border-color: var(--border-glow);
      background: rgba(168, 85, 247, 0.14);
    }
    .post-pagination__link--next { text-align: right; }
    .post-pagination__label {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .post-pagination__title {
      color: var(--text-white);
      font-weight: 600;
      line-height: 1.4;
    }
    .content-comments {
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--border-subtle);
    }
    .content-comments .comment-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .content-comments .comment-body {
      padding: 14px 0;
      border-bottom: 1px solid var(--border-subtle);
    }
    .content-comments .comment-respond {
      margin-top: 20px;
    }
    .content-comments label {
      display: block;
      margin-bottom: 6px;
      color: var(--text-secondary);
      font-size: 13px;
    }
    .content-comments input[type="text"],
    .content-comments input[type="email"],
    .content-comments input[type="url"],
    .content-comments textarea {
      width: 100%;
      margin-bottom: 12px;
      padding: 10px 12px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      background: rgba(5, 1, 13, 0.55);
      color: var(--text-primary);
      font: inherit;
    }
    .content-comments .submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border: none;
      border-radius: var(--radius-full);
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--color-on-gold);
      font-weight: 700;
      cursor: pointer;
    }
    @media (max-width: 640px) {
      .site-content { padding: 24px 0 64px; }
      .content-card { padding: 24px 18px; }
      .post-pagination { grid-template-columns: 1fr; }
      .post-pagination__link--next { text-align: left; }
    }
