/* ===== 全局重置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== 防扒站保护 ===== */
/* 已移除文本选择限制，用户可以自由复制内容 */

/* ===== 自定义滚动条 - 白色渐变风格 ===== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-left: 1px solid #e2e8f0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
    border-radius: 8px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #f1f5f9 0%, #cbd5e1 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Firefox 滚动条 */
* {
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 #f8fafc;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #8b5cf6;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --border: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== 导航栏 ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(226, 232, 240, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo img {
    height: 36px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}



.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* ===== Hero 区块 ===== */
.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -200px;
    right: -200px;
    animation: float 30s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: 50%;
    left: 50%;
    animation: float 35s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Hero下载统计 - 新风格 */
.hero-stats-new {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: nowrap; /* 强制并排，不换行 */
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem; /* 稍微减小padding */
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border: 1.5px solid rgba(59, 130, 246, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 0 1 auto; /* 允许收缩但不增长 */
    min-width: 0; /* 允许收缩到内容以下 */
    white-space: nowrap; /* 文本不换行 */
}

.stat-badge:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.stat-icon-small {
    font-size: 1.125rem;
    line-height: 1;
}

.stat-text {
    font-size: 0.8125rem; /* 稍微减小字体 */
    color: var(--text-secondary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stat-text strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    min-width: 320px;
}

.hero-card.floating {
    animation: floatCard 10s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
}

.scroll-animate.animated {
    animation: fadeInUp 2s ease-out forwards;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.card-status {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-status.online {
    background: #dcfce7;
    color: #16a34a;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-users {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.user-avatar:hover {
    transform: scale(1.15);
    z-index: 10;
}

.user-avatar svg {
    width: 20px;
    height: 20px;
    color: white;
}

.user-avatar.user-1 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.user-avatar.user-2 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.user-avatar.user-3 {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.user-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.card-ping {
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ping-value {
    color: #16a34a;
    font-weight: 700;
}

/* ===== 功能特性（现代列表风格） ===== */
.features-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-secondary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-tag-new {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-new {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-wide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card-wide {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card-wide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
    border-color: var(--primary-color);
}

.feature-icon-large {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card-wide:hover .feature-icon-large {
    transform: scale(1.1);
}

.feature-title-new {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.feature-desc-new {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== 视频教程 ===== */
.tutorial-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.video-wrapper {
    max-width: 960px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.bilibili-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.video-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.video-note a:hover {
    text-decoration: underline;
}

/* ===== 价格方案 ===== */
.pricing-new {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-new {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card-new.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-secondary);
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
}

.price-unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: var(--primary);
    color: white;
}

.featured-btn {
    background: var(--primary);
    color: white;
}

.featured-btn:hover {
    background: var(--primary-dark);
}

/* ===== CTA区块（新风格） ===== */
.cta-section-new {
    padding: 5rem 0;
    background: white;
}

.cta-box {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-left h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-left p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-features {
    list-style: none;
    padding: 0;
}

.cta-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
}

.cta-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-cta-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
    margin-bottom: 1rem;
}

.btn-cta-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.cta-system-note {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0.5rem 0 0.25rem;
}

.cta-dev-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== 页脚 ===== */
.footer-new {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    color: #1e293b;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
}

.footer-logo img {
    height: 36px;
}

.footer-brand p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social .social-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social .social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-social .social-icon svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.footer-social .social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
    border-color: #3b82f6;
}

.footer-social .social-icon:hover::before {
    opacity: 1;
}

.footer-social .social-icon:hover svg {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: #475569;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* ===== 返回顶部 ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* ===== 游戏展示区块 ===== */
.games-showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}

.games-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.game-showcase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(37, 99, 235, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.game-showcase-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.game-showcase-card:hover::before {
    opacity: 1;
}

.game-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.game-showcase-card:hover .game-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.game-showcase-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.game-showcase-card:hover h3 {
    color: #2563eb;
}

.game-showcase-card p {
    font-size: 0.875rem;
    color: #64748b;
    position: relative;
    z-index: 1;
}

.view-all-games {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 0.75rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.view-all-games:hover {
    color: #2563eb;
    gap: 0.75rem;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem;
        gap: 0.5rem;
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title-new {
        font-size: 2rem;
    }

    .hero-stats-new {
        gap: 0.5rem;
        flex-wrap: nowrap; /* 移动端也强制并排 */
        overflow-x: auto; /* 如果太宽允许横向滚动 */
        -webkit-overflow-scrolling: touch;
    }

    .stat-badge {
        padding: 0.5rem 0.875rem; /* 移动端更紧凑 */
        font-size: 0.75rem;
        flex-shrink: 0; /* 移动端不收缩 */
    }

    .stat-icon-small {
        font-size: 0.9375rem; /* 移动端图标稍小 */
    }
    
    .stat-text {
        font-size: 0.75rem; /* 移动端文字更小 */
    }
    
    .stat-text strong {
        font-size: 0.875rem; /* 移动端数字也相应缩小 */
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .container-wide {
        padding: 0 1.5rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .features-grid-wide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card-wide {
        padding: 2rem 1.5rem;
    }

    .feature-icon-large {
        font-size: 3rem;
    }

    .feature-title-new {
        font-size: 1.25rem;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .video-wrapper {
        border-radius: 12px;
    }

    .games-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .game-showcase-card {
        padding: 1.5rem 1rem;
    }

    .game-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .game-showcase-card h3 {
        font-size: 1rem;
    }
}

