/* --- 全局重置 --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Microsoft YaHei", "PingFang SC", sans-serif; }
html { scroll-behavior: smooth; }
body { background: linear-gradient(to top, #30cfd0 0%, #330867 100%); background-size: cover; background-attachment: fixed; color: #fff; overflow-x: hidden; }
a { text-decoration: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 导航 --- */
.sticky-nav { position: sticky; top: 0; z-index: 1000; background: rgba(43, 86, 246, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); height: 70px; display: flex; align-items: center; width: 100%; }
.nav-content { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.nav-logo { height: 40px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 30px; }
.nav-links a { color: #fff; font-size: 15px; opacity: 0.9; transition: 0.3s; }
.nav-links a:hover { opacity: 1; font-weight: bold; }

/* --- Hero --- */
.hero-section { position: relative; width: 100%; padding-top: 20px; padding-bottom: 120px; min-height: 80vh; display: flex; justify-content: center; align-items: flex-start; }
.hero-container { width: 100%; max-width: 1200px; padding: 0 20px; position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: center; gap: 50px; }
.hero-content-left { flex: 1; max-width: 550px; margin-top: 0; }
.hero-main-img { max-width: 100%; height: auto; display: block; margin-bottom: 20px; }
.subtitle { font-size: 16px; line-height: 1.8; margin-bottom: 30px; background: rgba(0,0,0,0.1); padding: 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.hero-tg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; width: 100%; }
.unified-btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 20px; color: #fff; border-radius: 50px; font-weight: bold; font-size: 16px; text-shadow: 0 1px 2px rgba(0,0,0,0.2); box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.2); width: 100%; }
.unified-btn:hover { transform: translateY(-3px); filter: brightness(1.15); }
.unified-btn i { margin-right: 10px; font-size: 20px; }
.btn-blue { background: linear-gradient(135deg, #00c6ff, #0072ff); } .btn-red { background: linear-gradient(135deg, #FF512F, #DD2476); } .btn-purple { background: linear-gradient(135deg, #8E2DE2, #4A00E0); } .btn-green { background: linear-gradient(135deg, #11998e, #38ef7d); }
@keyframes float-anim { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.phone-mockup { position: relative; width: 220px; max-width: 40%; height: auto; margin-top: 10px; animation: float-anim 4s ease-in-out infinite; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3)); }
.phone-screen-img { width: 100%; height: auto; display: block; }

/* =========================================
   佣金案例板块
   ========================================= */
.case-section { position: relative; z-index: 3; margin-top: -80px; padding-bottom: 40px; scroll-margin-top: 80px; }
.section-title-center { text-align: center; margin-bottom: 30px; }
.section-title-center h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.section-title-center p { font-size: 16px; opacity: 0.9; color: #fff; }

/* 截图墙 */
.screenshot-wall-wrapper { margin-bottom: 40px; text-align: center; }
.scroll-hint { font-size: 12px; color: #aeeeff; margin-bottom: 10px; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }
.screenshot-wall { display: flex; overflow-x: auto; gap: 15px; padding: 10px 20px; scrollbar-width: none; -ms-overflow-style: none; }
.screenshot-wall::-webkit-scrollbar { display: none; }
.shot-item { flex: 0 0 auto; width: 120px; height: 220px; border-radius: 10px; overflow: hidden; border: 2px solid rgba(255,255,255,0.2); cursor: zoom-in; transition: transform 0.3s; background: #000; }
.shot-item:hover { transform: scale(1.05); border-color: #F9E267; }
.shot-item img { width: 100%; height: 100%; object-fit: cover; }

/* 轮播图 */
.carousel-container { position: relative; max-width: 900px; margin: 0 auto; overflow: hidden; padding-bottom: 20px; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; width: 100%; margin: 0; padding: 0; }
.carousel-slide { flex: 0 0 100%; width: 100%; padding: 0 10px; box-sizing: border-box; }
.case-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); border-radius: 20px; padding: 30px; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
.case-story-content { text-align: left; background: rgba(0,0,0,0.2); padding: 20px; border-radius: 15px; width: 100%; }
.story-header { display: flex; align-items: center; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.story-avatar { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; background: #fff; padding: 2px; }
.story-header h3 { font-size: 18px; color: #F9E267; margin-bottom: 5px; }
.story-date { font-size: 12px; color: #aaa; }
.story-text p { font-size: 15px; line-height: 1.8; margin-bottom: 10px; color: #eee; }
.story-text strong { color: #fff; font-size: 18px; color: #00d2ff; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.3); border: none; color: #fff; font-size: 24px; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10; transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: rgba(0,78,255,0.6); }
.prev { left: 0; } .next { right: 0; }
@media (max-width: 768px) { .carousel-btn { display: none; } .screenshot-wall { padding: 10px; } }
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); align-items: center; justify-content: center; flex-direction: column; }
.modal-content { max-width: 90%; max-height: 80%; border-radius: 5px; box-shadow: 0 0 20px rgba(255,255,255,0.2); }
.close-btn { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; }
#caption { margin-top: 15px; color: #ccc; }

/* Support Section */
.support-section { position: relative; z-index: 4; margin-top: 30px; padding: 60px 20px 60px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.3); border-top-left-radius: 50px; border-top-right-radius: 50px; scroll-margin-top: 80px; }
.support-header { text-align: center; max-width: 900px; margin: 0 auto 50px; }
.support-header h2 { font-size: 20px; line-height: 1.6; color: #fff; font-weight: bold; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.support-card { background: #fff; border-radius: 15px; padding: 30px 20px; text-align: center; color: #333; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 200px; }
.support-card:hover { transform: translateY(-10px); }
.icon-circle { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.ic-blue { background: linear-gradient(135deg, #4facfe, #00f2fe); } .ic-cyan { background: linear-gradient(135deg, #43e97b, #38f9d7); } .ic-purple { background: linear-gradient(135deg, #a18cd1, #fbc2eb); } .ic-green { background: linear-gradient(135deg, #fa709a, #fee140); }
.support-card h3 { font-size: 16px; font-weight: bold; color: #0072ff; }

/* =========================================
   游戏区域：1+2+3 特殊布局
   ========================================= */
.game-section { padding: 40px 0 100px 0; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); margin-top: 20px; border-radius: 30px; position: relative; z-index: 5; }

/* 核心 Grid：6列布局 */
.game-grid-special {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6列 */
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 布局控制 */
.span-full { grid-column: span 6; } /* 占满6列 (1个) */
.span-half { grid-column: span 3; } /* 占3列 (2个) */
.span-third { grid-column: span 2; } /* 占2列 (3个) */

.game-card { border-radius: 15px; padding: 25px; position: relative; overflow: hidden; min-height: 220px; display: flex; flex-direction: column; justify-content: center; color: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.game-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 2; }
.card-bg-img { position: absolute; right: -20px; bottom: -20px; height: 110%; width: auto; opacity: 0.9; z-index: 1; pointer-events: none; }
.card-content { position: relative; z-index: 2; max-width: 70%; }
.card-title { font-size: 24px; font-weight: 800; margin-bottom: 5px; display: flex; align-items: center; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.card-title img { height: 30px; margin-right: 10px; background: #fff; border-radius: 50%; padding: 2px; }
.card-desc { font-size: 14px; opacity: 0.9; margin-bottom: 2px; }
.card-sub { font-size: 12px; margin-top: 8px; margin-bottom: 15px; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.2); display: inline-block; padding: 2px 8px; border-radius: 4px; }
.btn-gold { background: linear-gradient(180deg, #F9E267 0%, #E8B62C 100%); border: none; color: #583602; font-weight: bold; padding: 8px 20px; border-radius: 25px; cursor: pointer; font-size: 14px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); display: inline-block; }
.btn-gold:hover { transform: scale(1.05); background: linear-gradient(180deg, #fff0a5 0%, #ffc83d 100%); }
.btn-full { width: 100%; text-align: center; } /* 下面3个小卡片的按钮全宽 */

.bg-jy { background: linear-gradient(135deg, #3B2667 0%, #BC78EC 100%); } 
.bg-ky { background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%); } 
.bg-hth { background: linear-gradient(135deg, #4c11ac 0%, #8c52ff 100%); }

footer { background: #111; color: #555; text-align: center; padding: 30px; font-size: 12px; }

/* 手机适配 */
@media (max-width: 900px) {
    .hero-container { flex-direction: column; align-items: center; gap: 30px; text-align: center; }
    .hero-tg-grid { width: 100%; max-width: 400px; margin: 0 auto; }
    .phone-mockup { width: 70%; max-width: 300px; margin-top: 0; }
    .nav-links { display: none; }
    .game-grid-9, .support-grid { grid-template-columns: 1fr !important; }
    .game-card:last-child { grid-column: auto; }
    .table-wrapper { overflow-x: auto; }
    
    /* 手机端 1+2+3 全部变单列 */
    .game-grid-special { grid-template-columns: 1fr !important; }
    .span-full, .span-half, .span-third { grid-column: auto !important; }
}


/* =========================================
   页面整体美化统一：深色渐变 + 毛玻璃
   ========================================= */
:root{
  --page-bg-1:#0b1020;
  --page-bg-2:#121c39;
  --page-bg-3:#1b2a57;
  --glass-bg:rgba(255,255,255,0.08);
  --glass-border:rgba(255,255,255,0.14);
  --text-main:#ffffff;
  --text-soft:rgba(255,255,255,0.78);
  --gold-1:#f9e267;
  --gold-2:#e8b62c;
  --blue-1:#4facfe;
  --blue-2:#00c6ff;
  --purple-1:#6d5dfc;
  --purple-2:#8b5cf6;
  --shadow-soft:0 14px 40px rgba(0,0,0,0.25);
}

body{
  background:
    radial-gradient(circle at top left, rgba(79,172,254,0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(139,92,246,0.18), transparent 24%),
    linear-gradient(180deg, var(--page-bg-1) 0%, var(--page-bg-2) 45%, var(--page-bg-3) 100%);
  color: var(--text-main);
}

.sticky-nav{
  background: rgba(10,18,40,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.hero-section{
  padding-top: 45px !important;
  min-height: 70vh;
}
.subtitle,
.case-card,
.support-section,
.game-section{
  box-shadow: var(--shadow-soft);
}

.subtitle{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-title-center h2{
  letter-spacing: 0.5px;
}

.case-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.case-story-content{
  background: rgba(7,12,24,0.34);
}

.support-section{
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.game-section{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

footer{
  background: rgba(7,10,20,0.9);
  color: rgba(255,255,255,0.45);
}

/* --- 从 HTML 拆出的原内联样式 --- */
/* 保持原有样式 */
        .hero-section { padding-top: 40px !important; min-height: 70vh; }

        /* --- 游戏区域布局优化 CSS --- */
        .game-grid-special {
            display: grid;
            grid-template-columns: repeat(6, 1fr); 
            gap: 20px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .span-full { grid-column: span 6; }
        .span-half { grid-column: span 3; }
        .span-third { grid-column: span 2; }

        .game-card {
            border-radius: 15px;
            padding: 25px;
            position: relative;
            overflow: hidden;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .game-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 2; }

        .card-content { position: relative; z-index: 2; width: 100%; text-align: left; }
        .span-third .card-content { text-align: center; }
        
        .card-title { 
            font-size: 24px; font-weight: 800; margin-bottom: 5px; 
            display: flex; align-items: center; 
            text-shadow: 0 2px 4px rgba(0,0,0,0.2); 
        }
        .span-third .card-title { justify-content: center; }

        .card-title img { height: 30px; margin-right: 10px; background: #fff; border-radius: 50%; padding: 2px; }
        .card-desc { font-size: 14px; opacity: 0.9; margin-bottom: 2px; }
        
        /* 去掉边框的描述样式 */
        .card-sub { 
            font-size: 12px; 
            margin-top: 5px; 
            margin-bottom: 15px; 
            color: rgba(255,255,255,0.7); 
            background: none; 
            border: none; 
            display: block; 
            padding: 0; 
        }

        .btn-full { width: 100%; display: block; margin-top: 5px; }

        /* =========================================
           新增：扶持活动卡片 (毛玻璃高级感)
           ========================================= */
        .support-card { 
            /* 背景改为半透明深色，实现毛玻璃 */
            background: rgba(255, 255, 255, 0.05); 
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1); /* 细微发光边框 */
            
            border-radius: 15px; 
            padding: 30px 20px; 
            text-align: center; 
            color: #fff; /* 文字改为白色 */
            box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
            transition: all 0.3s ease; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            min-height: 200px; 
            cursor: pointer; /* 鼠标变手型 */
        }
        
        /* 鼠标悬停效果：发光 + 上浮 */
        .support-card:hover { 
            transform: translateY(-10px); 
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .support-card h3 { 
            font-size: 18px; 
            font-weight: bold; 
            color: #fff; /* 标题白色 */
            margin-top: 15px;
            margin-bottom: 10px;
        }

        /* 点击引导文字 */
        .click-guide {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 5px;
            transition: color 0.3s;
        }
        .support-card:hover .click-guide {
            color: #F9E267; /* 悬停变金色 */
        }

        @media (max-width: 900px) {
            .game-grid-special { grid-template-columns: 1fr !important; }
            .span-full, .span-half, .span-third { grid-column: auto !important; }
            .card-content { text-align: center; }
            .card-title { justify-content: center; }
        }

/* =========================================
   顶部合作页模块（合并自上方页面）
   ========================================= */
.coop-top-section{
  position: relative;
  z-index: 4;
  padding: 26px 0 8px;
}

.coop-page-card{
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.coop-page-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 36%),
    linear-gradient(180deg, transparent 50%, rgba(79,172,254,0.06) 100%);
  pointer-events:none;
}

.coop-hero{
  position: relative;
  overflow: hidden;
  padding: 54px 36px 44px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.11), transparent 24%),
    linear-gradient(135deg, #283b90 0%, #4932b8 45%, #0ea5e9 100%);
}

.coop-hero::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-95px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  filter: blur(5px);
}

.coop-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.5px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.16);
  margin-bottom:18px;
}

.coop-hero h1{
  margin:0;
  font-size:clamp(30px, 4.1vw, 50px);
  line-height:1.28;
  font-weight:900;
  letter-spacing:0.2px;
  text-shadow:0 6px 18px rgba(0,0,0,0.18);
}

.coop-hero-sub{
  margin:16px auto 0;
  max-width:820px;
  font-size:28px;
  line-height:1.9;
  color:rgba(255,255,255,0.92);
}

.coop-content{
  position:relative;
  z-index:1;
  padding:34px 40px 40px;
}

.coop-summary-bar{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:0;
  margin-bottom:28px;
  position:relative;
  z-index:2;
}

.coop-summary-item{
  padding:18px 18px 16px;
  border-radius:18px;
  background: rgba(10,18,40,0.60);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 30px -20px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.coop-summary-item .small{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,0.66);
  margin-bottom:8px;
  font-weight:700;
  letter-spacing:0.4px;
}

.coop-summary-item b{
  font-size:18px;
  line-height:1.55;
  color:#fff;
}

.coop-cta-inline-wrap{ margin:0 0 30px; }

.coop-cta-inline{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,0.85fr);
  gap:22px;
  align-items:stretch;
  padding:24px 26px;
  border-radius:24px;
  background: linear-gradient(135deg, rgba(79,172,254,0.10) 0%, rgba(109,93,252,0.10) 45%, rgba(14,165,233,0.10) 100%);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 38px -28px rgba(0,0,0,0.4);
}

.coop-cta-inline-kicker{
  display:inline-block;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:#c7d2fe;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  letter-spacing:0.5px;
}

.coop-cta-inline-title{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.2;
  font-weight:900;
  color:#fff;
}

.coop-cta-inline-desc{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:rgba(255,255,255,0.78);
}

.coop-cta-inline-right{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:22px 20px;
  border-radius:20px;
  background: rgba(7,12,24,0.30);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.coop-cta-inline-btn{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:16px 20px;
  border-radius:999px;
  background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
  color:#fff;
  font-size:22px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 18px 30px -18px rgba(255,65,108,0.75);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
  border:none;
  cursor:pointer;
}

.coop-cta-inline-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 22px 36px -18px rgba(255,65,108,0.88);
  filter: brightness(1.06);
}

.coop-cta-inline-contact-title{
  margin:16px 0 12px;
  text-align:center;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,0.64);
}

.coop-cta-inline-tags{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.coop-section-title{
  margin:0 0 18px;
  font-size:24px;
  font-weight:900;
  color:#fff;
}

.coop-section-desc{
  margin:-4px 0 24px;
  color:rgba(255,255,255,0.76);
  font-size:15px;
  line-height:1.9;
}

.coop-features-list{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:34px;
}

.coop-line{
  margin:0;
  padding:20px 22px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 100%);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 10px 28px -24px rgba(0,0,0,0.4);
  font-size:16px;
  line-height:1.9;
  color:rgba(255,255,255,0.78);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.coop-line:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 36px -24px rgba(0,0,0,0.55);
  border-color:rgba(201,210,254,0.35);
}

.coop-label{
  display:inline-block;
  margin-right:10px;
  color:#8ec5ff;
  font-weight:800;
  font-size:17px;
}

.coop-red{
  color:#ff8f8f;
  font-weight:700;
}

.coop-highlight-box{
  padding:24px;
  margin-bottom:34px;
  border-radius:22px;
  background: linear-gradient(135deg, rgba(79,172,254,0.10) 0%, rgba(109,93,252,0.09) 50%, rgba(14,165,233,0.10) 100%);
  border:1px solid rgba(255,255,255,0.12);
}

.coop-highlight-box h2{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.4;
  color:#fff;
}

.coop-highlight-box p{
  margin:0;
  font-size:15px;
  line-height:1.95;
  color:rgba(255,255,255,0.78);
}

.coop-copy-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 18px;
  background: rgba(255,255,255,0.10);
  color:#fff;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:all .2s ease;
  box-shadow:0 10px 24px -22px rgba(0,0,0,0.35);
  justify-content:center;
  width:100%;
  margin:0;
}

.coop-copy-tag:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.coop-copy-tag span{
  color:#8ec5ff;
  font-size:13px;
  font-weight:700;
}

.coop-footer-notes{
  margin-top:28px;
  text-align:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.05) 100%);
  border:1px solid rgba(255,255,255,0.10);
  padding:20px 18px;
  border-radius:18px;
}

.coop-footer-notes p{
  margin:8px 0;
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,0.64);
}

.coop-footer-notes p strong{ color:#fff; }

.chat-guide-anchor{
  position:fixed;
  right:22px;
  bottom:22px;
  width:78px;
  height:78px;
  pointer-events:none;
  z-index:2147483000;
  opacity:0;
  transform:scale(0.82);
  transition:opacity .28s ease, transform .28s ease;
}

.chat-guide-anchor.show{
  opacity:1;
  transform:scale(1);
}

.chat-guide-ring{
  position:absolute;
  inset:0;
  border-radius:999px;
  border:4px solid rgba(255, 72, 72, 0.95);
  box-shadow:
    0 0 0 8px rgba(255,72,72,0.18),
    0 0 24px rgba(255,72,72,0.35);
  animation:guidePulse 1.15s infinite;
}

.chat-guide-tip{
  position:absolute;
  right:88px;
  bottom:12px;
  min-width:220px;
  max-width:280px;
  padding:12px 16px;
  border-radius:14px;
  background: rgba(15, 23, 42, 0.94);
  color:#fff;
  font-size:14px;
  line-height:1.6;
  font-weight:700;
  box-shadow:0 18px 38px -18px rgba(0,0,0,0.48);
  white-space:nowrap;
}

.chat-guide-tip::after{
  content:"";
  position:absolute;
  right:-8px;
  bottom:18px;
  width:14px;
  height:14px;
  background: rgba(15, 23, 42, 0.94);
  transform: rotate(45deg);
  border-radius:2px;
}

.chat-guide-tip small{
  display:block;
  margin-top:2px;
  font-size:12px;
  font-weight:500;
  color:rgba(255,255,255,0.78);
  white-space:normal;
}

@keyframes guidePulse{
  0%{ transform:scale(0.92); opacity:0.95; }
  70%{ transform:scale(1.16); opacity:0.32; }
  100%{ transform:scale(1.22); opacity:0; }
}

@media (max-width: 900px){
  .coop-summary-bar{
    grid-template-columns:1fr;
    margin-top:0;
  }
  .coop-content{ padding:28px 22px 28px; }
  .coop-hero{ padding:42px 22px 34px; }
  .coop-cta-inline{ grid-template-columns:1fr; }
  .coop-cta-inline-title{ font-size:24px; }
}

@media (max-width: 768px){
  .coop-top-section{ padding-top:16px; }
  .coop-page-card{ border-radius:20px; }
  .coop-hero h1{ font-size:30px; }
  .coop-hero-sub{ font-size:15px; line-height:1.85; }
  .coop-section-title{ font-size:22px; }
  .coop-line{ padding:16px; font-size:15px; }
  .coop-label{
    display:block;
    margin-right:0;
    margin-bottom:4px;
    font-size:16px;
  }
  .chat-guide-anchor{
    right:16px;
    bottom:16px;
    width:74px;
    height:74px;
  }
  .chat-guide-tip{
    right:0;
    bottom:90px;
    min-width:180px;
    max-width:220px;
    white-space:normal;
  }
  .chat-guide-tip::after{
    right:22px;
    bottom:-7px;
  }
}


/* === 联系方式重排优化 === */
.btn-orange { background: linear-gradient(135deg, #ff9f43, #ff6b00); }
.hero-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-contact-grid .unified-btn {
  min-height: 58px;
  border-radius: 18px;
  justify-content: flex-start;
  padding: 16px 18px;
  background-size: 150% 150%;
}
.hero-contact-grid .unified-btn span {
  letter-spacing: .2px;
}
.coop-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.coop-copy-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 88px;
  padding: 16px 18px;
}
.coop-copy-tag strong {
  font-size: 13px;
  line-height: 1;
  color: #8ec5ff;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.coop-copy-tag em {
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.coop-copy-tag span {
  font-size: 12px;
}
@media (max-width: 768px) {
  .hero-contact-grid,
  .coop-contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-contact-grid .unified-btn {
    justify-content: center;
  }
  .coop-copy-tag {
    min-height: 76px;
  }
}

/* =========================================================
   统一优化补丁：合作页 + 九大热门平台区块
   说明：本段放在 main.css 最底部，用于覆盖前面重复旧样式。
   ========================================================= */
:root{
    --ab-bg-0:#071122;
    --ab-bg-1:#0b1630;
    --ab-bg-2:#132552;
    --ab-glass:rgba(255,255,255,.075);
    --ab-glass-2:rgba(255,255,255,.105);
    --ab-border:rgba(255,255,255,.14);
    --ab-text:#fff;
    --ab-muted:rgba(255,255,255,.76);
    --ab-gold:#f8dc68;
    --ab-gold-2:#f0b735;
    --ab-blue:#4facfe;
    --ab-cyan:#00f2fe;
    --ab-shadow:0 18px 55px rgba(0,0,0,.34);
}

body{
    background:
        radial-gradient(circle at 12% 0%, rgba(79,172,254,.26), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(142,45,226,.24), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(0,198,255,.14), transparent 36%),
        linear-gradient(180deg, var(--ab-bg-0) 0%, var(--ab-bg-1) 48%, var(--ab-bg-2) 100%) !important;
    color:var(--ab-text);
}

.coop-top-section,
.hero-section,
.case-section,
.support-section,
.platform-section{
    position:relative;
    z-index:1;
}

.coop-page-card,
.case-card,
.support-section,
.game-section{
    background:linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.055)) !important;
    border:1px solid var(--ab-border) !important;
    box-shadow:var(--ab-shadow) !important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.coop-page-card{
    border-radius:30px !important;
    overflow:hidden;
}

.coop-hero,
.coop-content{
    background:transparent !important;
}

.coop-hero-badge,
.coop-cta-inline-kicker{
    background:rgba(248,220,104,.14) !important;
    border:1px solid rgba(248,220,104,.32) !important;
    color:#ffe58a !important;
}

.coop-hero h1,
.section-title-center h2,
.coop-section-title{
    letter-spacing:.4px;
    text-shadow:0 8px 24px rgba(0,0,0,.28);
}

.coop-summary-bar,
.coop-cta-inline,
.coop-highlight-box,
.subtitle,
.case-story-content{
    background:rgba(7,17,34,.42) !important;
    border:1px solid rgba(255,255,255,.12) !important;
    box-shadow:0 12px 34px rgba(0,0,0,.22);
}

.coop-cta-inline-btn,
.btn-gold{
    background:linear-gradient(180deg, #fff2a9 0%, var(--ab-gold) 48%, var(--ab-gold-2) 100%) !important;
    color:#543600 !important;
    border:0 !important;
    box-shadow:0 10px 22px rgba(240,183,53,.25), inset 0 1px 0 rgba(255,255,255,.65) !important;
}

.unified-btn,
.coop-copy-tag,
.support-card,
.game-card{
    will-change:transform;
}

.unified-btn:hover,
.coop-copy-tag:hover,
.support-card:hover,
.game-card:hover{
    transform:translateY(-5px);
}

/* 九大热门平台：从第二个页面迁入，素材路径继续复用 static 下原位置 */
.platform-section{
    padding:58px 0 95px !important;
    margin-top:34px !important;
    border-radius:34px 34px 0 0;
    overflow:hidden;
}

.platform-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 10%, rgba(248,220,104,.18), transparent 24%),
        radial-gradient(circle at 80% 0%, rgba(0,198,255,.16), transparent 28%);
    pointer-events:none;
}

.platform-section .section-title-center{
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.platform-section .section-title-center h2{
    font-size:34px;
    line-height:1.15;
    margin-bottom:12px;
}

.platform-section .section-title-center h2 span{
    display:inline-block;
    padding:0 18px 10px;
    background:linear-gradient(180deg,#fff 0%,#ffe58a 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    position:relative;
}

.platform-section .section-title-center h2 span::after{
    content:"";
    position:absolute;
    left:18px;
    right:18px;
    bottom:0;
    height:3px;
    border-radius:99px;
    background:linear-gradient(90deg, transparent, var(--ab-gold), transparent);
}

.platform-section .section-title-center p{
    color:var(--ab-muted);
    font-size:15px;
}

.game-grid-special{
    position:relative;
    z-index:2;
    display:grid !important;
    grid-template-columns:repeat(6,1fr) !important;
    gap:18px !important;
    max-width:1180px !important;
    padding:0 18px !important;
}

.span-full{ grid-column:span 6 !important; }
.span-half{ grid-column:span 3 !important; }
.span-third{ grid-column:span 2 !important; }

.game-card{
    min-height:218px !important;
    border-radius:22px !important;
    padding:26px !important;
    border:1px solid rgba(255,255,255,.16) !important;
    box-shadow:0 16px 42px rgba(0,0,0,.28) !important;
    overflow:hidden;
    isolation:isolate;
}

.game-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(255,255,255,.16), transparent 38%, rgba(255,255,255,.08));
    pointer-events:none;
    z-index:0;
}

.game-card::after{
    content:"";
    position:absolute;
    width:190px;
    height:190px;
    right:-70px;
    top:-70px;
    border-radius:50%;
    background:rgba(255,255,255,.11);
    z-index:0;
}

.card-bg-img{
    position:absolute;
    right:-18px;
    bottom:-22px;
    height:108%;
    width:auto;
    opacity:.88;
    z-index:1;
    pointer-events:none;
    filter:drop-shadow(0 16px 26px rgba(0,0,0,.25));
}

.card-content{
    position:relative;
    z-index:2;
    max-width:68%;
    width:100%;
}

.span-third .card-content{
    max-width:100%;
    text-align:center;
}

.card-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:25px !important;
    font-weight:900 !important;
    margin-bottom:10px !important;
    color:#fff;
}

.span-third .card-title{
    justify-content:center;
    font-size:22px !important;
}

.card-title img{
    height:34px !important;
    width:34px;
    object-fit:contain;
    margin-right:0 !important;
    background:rgba(255,255,255,.95);
    border-radius:999px;
    padding:3px;
}

.card-desc,
.game-card .desc{
    font-size:14px !important;
    line-height:1.7;
    color:rgba(255,255,255,.88);
    margin-bottom:4px;
}

.card-sub{
    display:inline-block !important;
    margin:8px 0 16px !important;
    padding:4px 10px !important;
    border-radius:999px !important;
    background:rgba(0,0,0,.22) !important;
    border:1px solid rgba(255,255,255,.12) !important;
    color:rgba(255,255,255,.78) !important;
    font-size:12px !important;
}

.btn-gold{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:9px 22px !important;
    border-radius:999px !important;
    font-size:14px !important;
    cursor:pointer;
    transition:transform .22s ease, filter .22s ease;
}

.btn-gold:hover{
    transform:scale(1.04);
    filter:brightness(1.05);
}

.btn-full{ width:100%; }

.bg-jy{ background:linear-gradient(135deg,#301060 0%,#8e3de7 55%,#c27bff 100%) !important; }
.bg-ky{ background:linear-gradient(135deg,#005bea 0%,#00c6fb 100%) !important; }
.bg-hth{ background:linear-gradient(135deg,#35106f 0%,#7c3aed 100%) !important; }
.platform-hth{ background:linear-gradient(135deg,#4c1d95 0%,#6d28d9 100%) !important; }
.platform-leyu{ background:linear-gradient(135deg,#0f172a 0%,#1e3a8a 100%) !important; }
.platform-ayx{ background:linear-gradient(135deg,#1f2937 0%,#475569 100%) !important; }
.platform-od{ background:linear-gradient(135deg,#232526 0%,#414345 100%) !important; }
.platform-milan{ background:linear-gradient(135deg,#134e5e 0%,#71b280 100%) !important; }
.platform-xk{ background:linear-gradient(135deg,#8e2de2 0%,#4a00e0 100%) !important; }

footer{
    background:rgba(3,7,18,.92) !important;
    border-top:1px solid rgba(255,255,255,.08);
}

@media (max-width:900px){
    .coop-top-section{ padding-top:18px; }
    .coop-page-card{ border-radius:22px !important; }
    .hero-section{ padding-top:24px !important; padding-bottom:74px !important; }
    .platform-section{ padding:42px 0 70px !important; margin-top:24px !important; border-radius:26px 26px 0 0; }
    .platform-section .section-title-center h2{ font-size:28px; }
    .game-grid-special{ grid-template-columns:1fr !important; gap:14px !important; padding:0 14px !important; }
    .span-full,.span-half,.span-third{ grid-column:auto !important; }
    .game-card{ min-height:190px !important; padding:22px !important; border-radius:20px !important; }
    .card-content{ max-width:72%; text-align:left; }
    .span-third .card-content{ max-width:100%; text-align:center; }
    .card-bg-img{ height:100%; opacity:.72; right:-34px; }
    .card-title{ font-size:23px !important; }
    .span-third .card-title{ font-size:21px !important; }
}

@media (max-width:520px){
    .container{ padding:0 14px; }
    .hero-tg-grid,
    .hero-contact-grid{ grid-template-columns:1fr !important; gap:12px !important; }
    .phone-mockup{ max-width:260px !important; width:72% !important; }
    .game-card{ min-height:176px !important; }
    .card-content{ max-width:78%; }
    .card-bg-img{ opacity:.56; }
    .span-third .card-content{ max-width:100%; }
    .btn-gold{ min-height:40px; }
}


/* === 客户世界杯文案定制补充 === */
.coop-policy-strip{
  position:relative;
  z-index:3;
  margin:0 auto 26px;
  padding:14px 18px;
  border-radius:18px;
  text-align:center;
  font-size:18px;
  line-height:1.65;
  font-weight:900;
  color:#fff8d6;
  background:linear-gradient(135deg, rgba(255,193,7,.18), rgba(255,65,108,.15), rgba(79,172,254,.14));
  border:1px solid rgba(249,226,103,.34);
  box-shadow:0 16px 36px -24px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.13);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.coop-summary-item b{font-size:15px;}
.coop-cta-inline-desc strong{color:#f9e267;}
.hero-contact-grid .coop-copy-tag{padding:15px 20px; border-radius:50px;}
@media (max-width:768px){
  .coop-policy-strip{margin:0 0 18px; font-size:15px; padding:12px 14px;}
  .coop-summary-item b{font-size:14px;}
}

/* =====================================================
   FINAL FIX：顶部政策条与 5/6/7 三卡片重叠修复
   说明：彻底取消负 margin，让第4条横幅、三张政策卡片都走正常文档流。
===================================================== */
.coop-top-section .coop-content{
  padding-top: 34px !important;
}

.coop-top-section .coop-policy-strip{
  display: block !important;
  position: relative !important;
  z-index: 5 !important;
  width: 100% !important;
  margin: 0 0 26px 0 !important;
  padding: 18px 22px !important;
  min-height: auto !important;
  line-height: 1.6 !important;
  text-align: center !important;
  box-sizing: border-box !important;
  clear: both !important;
  transform: none !important;
}

.coop-top-section .coop-summary-bar{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  position: relative !important;
  z-index: 4 !important;
  margin: 0 0 32px 0 !important;
  padding: 0 !important;
  clear: both !important;
  transform: none !important;
  align-items: stretch !important;
}

.coop-top-section .coop-summary-item{
  position: relative !important;
  z-index: 1 !important;
  min-height: 172px !important;
  padding: 22px 22px 20px !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.coop-top-section .coop-summary-item .small{
  font-size: 15px !important;
  line-height: 1.45 !important;
  margin-bottom: 12px !important;
  color: rgba(255,255,255,.76) !important;
}

.coop-top-section .coop-summary-item b{
  display: block !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  white-space: normal !important;
  word-break: break-word !important;
}

@media (max-width: 900px){
  .coop-top-section .coop-content{
    padding: 26px 18px 28px !important;
  }
  .coop-top-section .coop-policy-strip{
    margin: 0 0 18px 0 !important;
    padding: 15px 16px !important;
    font-size: 16px !important;
    border-radius: 18px !important;
  }
  .coop-top-section .coop-summary-bar{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin: 0 0 24px 0 !important;
  }
  .coop-top-section .coop-summary-item{
    min-height: auto !important;
    padding: 18px 16px !important;
  }
  .coop-top-section .coop-summary-item b{
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 520px){
  .coop-top-section .coop-hero{
    padding-bottom: 30px !important;
  }
  .coop-top-section .coop-content{
    padding-top: 22px !important;
  }
  .coop-top-section .coop-policy-strip{
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
}

/* ================================
   CTA 左侧文案优化
================================ */

.join-benefit-box {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 226, 120, 0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.join-benefit-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f9e267, #e8b62c);
    color: #3c2600;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.join-benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.join-benefit-item {
    position: relative;
    padding: 10px 12px 10px 30px;
    border-radius: 12px;
    background: rgba(9, 18, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.join-benefit-item::before {
    content: "✓";
    position: absolute;
    left: 11px;
    top: 10px;
    color: #f9e267;
    font-weight: 900;
}

@media (max-width: 768px) {
    .join-benefit-box {
        margin-top: 14px;
        padding: 14px;
        border-radius: 16px;
    }

    .join-benefit-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .join-benefit-item {
        font-size: 13px;
        padding: 9px 10px 9px 28px;
    }

    .join-benefit-item::before {
        top: 9px;
    }
}
