* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f0518 0%, #1a0933 50%, #2d1b4e 100%);
            color: #f0e9ff;
            line-height: 1.5;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ===== 头部导航 - 深紫渐变风格 ===== */
        .header {
            background: rgba(22, 8, 38, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(156, 98, 255, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #c89bff, #9f7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: #d4c2ff;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }
        .nav-links a:hover {
            color: #c89bff;
        }
        .header-buttons {
            display: flex;
            gap: 12px;
        }
        .btn-login {
            background: transparent;
            border: 1px solid #6b4b9c;
            color: #e0d0ff;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-login:hover {
            border-color: #b794ff;
            color: #ffffff;
            background: rgba(183, 148, 255, 0.1);
        }
        .btn-register {
            background: linear-gradient(135deg, #8b5cf6, #c084fc);
            border: none;
            color: #ffffff;
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }
        .btn-register:hover {
            background: linear-gradient(135deg, #9f7aff, #d6a4ff);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
        }
        
        /* ===== 汉堡菜单移动端样式 ===== */
        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #e0d0ff;
            font-size: 28px;
            cursor: pointer;
            padding: 8px 12px;
            transition: color 0.2s;
            z-index: 101;
        }
        .menu-toggle:hover {
            color: #c89bff;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(22, 8, 38, 0.95);
                backdrop-filter: blur(12px);
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                border-top: 1px solid rgba(156, 98, 255, 0.3);
                border-bottom: 1px solid rgba(156, 98, 255, 0.3);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
                z-index: 100;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(156, 98, 255, 0.2);
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .nav-links li a {
                display: block;
                padding: 18px 20px;
                font-size: 18px;
                font-weight: 500;
                color: #e0d0ff;
                text-decoration: none;
                transition: all 0.2s;
                width: 100%;
            }
            .nav-links li a:hover {
                background: rgba(139, 92, 246, 0.2);
                color: #ffffff;
            }
            .menu-toggle {
                display: block;
            }
            .header-buttons {
                display: flex;
                gap: 8px;
            }
            .btn-login {
                padding: 6px 16px;
                font-size: 13px;
            }
            .btn-register {
                padding: 6px 18px;
                font-size: 13px;
            }
        }
        
        /* ===== Hero 主视觉 - 风格1: 深紫渐变+光效 ===== */
        .hero {
            padding: 60px 0 80px;
            background: transparent;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: glowPulse 8s infinite alternate;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(192, 132, 252, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: glowPulse 10s infinite alternate-reverse;
        }
        @keyframes glowPulse {
            0% { opacity: 0.4; transform: scale(1); }
            100% { opacity: 0.8; transform: scale(1.2); }
        }
        .hero .container {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        .hero-content {
            flex: 1;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(139, 92, 246, 0.2);
            color: #c89bff;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(183, 148, 255, 0.3);
            backdrop-filter: blur(5px);
        }
        .hero-stat {
            text-align: center;
            background: rgba(30, 12, 48, 0.5);
            backdrop-filter: blur(5px);
            border-radius: 16px;
            padding: 16px 10px;
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        .hero-stat .stat-label {
            font-size: 13px;
            color: #b39ddb;
        }
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            border: none;
            color: #ffffff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #9f7aff, #c89bff);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(139, 92, 246, 0.7);
        }
        .btn-secondary {
            background: transparent;
            border: 1px solid #6b4b9c;
            color: #e0d0ff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            backdrop-filter: blur(5px);
        }
        .btn-secondary:hover {
            border-color: #b794ff;
            color: #ffffff;
            background: rgba(139, 92, 246, 0.15);
        }
        .hero-image {
            flex: 1;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: 30px;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        
        /* ===== 交易产品板块 - 风格2: 深紫卡片悬浮 ===== */
        .products-section {
            padding: 80px 0;
            background: transparent;
            position: relative;
        }
        .products-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #8b5cf6, #c084fc, #8b5cf6, transparent);
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            text-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
        }
        .section-title p {
            font-size: 16px;
            color: #b39ddb;
            max-width: 700px;
            margin: 0 auto;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .product-card {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 24px;
            padding: 32px 20px;
            text-align: center;
            border: 1px solid rgba(156, 98, 255, 0.25);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #c084fc, #e0b0ff);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .product-card:hover::before {
            transform: scaleX(1);
        }
        .product-card:hover {
            transform: translateY(-8px);
            border-color: #b794ff;
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
            background: rgba(40, 18, 60, 0.8);
        }
        .product-icon {
            font-size: 42px;
            background: linear-gradient(135deg, #c89bff, #9f7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        .product-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #ffffff;
        }
        .product-card p {
            color: #b39ddb;
            font-size: 14px;
        }
        
        /* ===== 平台优势 - 风格3: 左右分栏+数据列表 ===== */
        .features-section {
            padding: 80px 0;
            background: transparent;
        }
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .features-content h3 {
            font-size: 32px;
            color: #ffffff;
            margin-bottom: 24px;
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }
        .features-content p {
            color: #cfbfff;
            margin-bottom: 30px;
            line-height: 1.7;
        }
        .features-list {
            list-style: none;
        }
        .features-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
            color: #e0d0ff;
            font-size: 16px;
        }
        .features-list li i {
            background: linear-gradient(135deg, #c89bff, #9f7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 20px;
            width: 28px;
        }
        .features-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        .stat-block {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 24px;
            padding: 30px 20px;
            text-align: center;
            border: 1px solid rgba(156, 98, 255, 0.25);
            transition: all 0.2s;
        }
        .stat-block:hover {
            border-color: #b794ff;
            background: rgba(40, 18, 60, 0.8);
        }
        .stat-block .number {
            font-size: 40px;
            font-weight: 700;
            background: linear-gradient(135deg, #e0b0ff, #b48aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .stat-block .label {
            color: #b39ddb;
            margin-top: 8px;
            font-size: 14px;
        }
        
        /* ===== 平台技术 - 风格4: 卡片墙+徽章 ===== */
        .platform-section {
            padding: 80px 0;
            background: transparent;
        }
        .platform-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .platform-content h3 {
            font-size: 32px;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }
        .platform-content p {
            color: #cfbfff;
            margin-bottom: 30px;
        }
        .platform-badges {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .badge {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 60px;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(156, 98, 255, 0.25);
            transition: all 0.2s;
        }
        .badge:hover {
            border-color: #b794ff;
            transform: scale(1.05);
            background: rgba(40, 18, 60, 0.8);
        }
        .badge i {
            font-size: 24px;
            background: linear-gradient(135deg, #c89bff, #9f7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .badge span {
            font-weight: 600;
            color: #ffffff;
        }
        .platform-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        
        /* ===== 社区交易 - 风格5: 列表+图标网格 ===== */
        .community-section {
            padding: 80px 0;
            background: transparent;
        }
        .community-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .community-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        .community-content h3 {
            font-size: 32px;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }
        .community-list {
            list-style: none;
        }
        .community-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 16px;
            color: #e0d0ff;
        }
        .community-list li i {
            background: linear-gradient(135deg, #c89bff, #9f7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 20px;
            width: 28px;
        }
        
        /* ===== 信任徽章 - 风格6: 水平滚动条 ===== */
        .trust-section {
            padding: 60px 0;
            background: rgba(22, 8, 38, 0.5);
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(156, 98, 255, 0.3);
            border-bottom: 1px solid rgba(156, 98, 255, 0.3);
            overflow: hidden;
        }
        .trust-track {
            display: flex;
            gap: 50px;
            animation: scroll 30s linear infinite;
            width: fit-content;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            padding: 12px 28px;
            border-radius: 60px;
            border: 1px solid rgba(156, 98, 255, 0.3);
            white-space: nowrap;
        }
        .trust-item i {
            font-size: 24px;
            background: linear-gradient(135deg, #c89bff, #9f7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .trust-item span {
            font-weight: 600;
            color: #ffffff;
        }
        
        /* ===== 经纪商介绍 - 风格7: 卡片+监管标签 ===== */
        .about-section {
            padding: 80px 0;
            background: transparent;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        .about-text h2 {
            font-size: 36px;
            color: #ffffff;
            margin-bottom: 24px;
            text-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
        }
        .about-text p {
            color: #cfbfff;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .regulation-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px;
        }
        .regulation-item {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 30px;
            padding: 8px 20px;
            border: 1px solid rgba(156, 98, 255, 0.3);
            color: #c89bff;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s;
        }
        .regulation-item:hover {
            border-color: #b794ff;
            background: rgba(139, 92, 246, 0.2);
            color: #ffffff;
        }
        .about-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        
        /* ===== APP下载 - 风格8: 全宽渐变CTA ===== */
        .app-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #5b21b6, #8b5cf6, #a78bfa);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        .app-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .app-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .app-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }
        .app-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        .app-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        .app-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #ffffff;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(5px);
        }
        .app-btn:hover {
            background: #ffffff;
            color: #8b5cf6;
            border-color: #ffffff;
            transform: translateY(-2px);
        }
        
        /* ===== CTA区块 - 风格9: 三步指引卡片 ===== */
        .cta-section {
            padding: 80px 0;
            background: transparent;
        }
        .cta-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .cta-box h2 {
            font-size: 38px;
            color: #ffffff;
            margin-bottom: 16px;
            text-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
        }
        .cta-box p {
            color: #cfbfff;
            margin-bottom: 40px;
            font-size: 18px;
        }
        .cta-steps {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
        }
        .step {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 24px;
            padding: 30px 25px;
            flex: 1;
            max-width: 200px;
            border: 1px solid rgba(156, 98, 255, 0.25);
            transition: all 0.2s;
        }
        .step:hover {
            border-color: #b794ff;
            transform: translateY(-5px);
            background: rgba(40, 18, 60, 0.8);
        }
        .step .number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: 700;
            font-size: 24px;
            color: #ffffff;
            box-shadow: 0 8px 15px rgba(139, 92, 246, 0.5);
        }
        .step p {
            margin-bottom: 0;
            font-size: 16px;
            color: #ffffff;
        }
        .step small {
            color: #b39ddb;
        }
        .cta-btn-large {
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            border: none;
            color: #ffffff;
            padding: 16px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 20px;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
        }
        .cta-btn-large:hover {
            background: linear-gradient(135deg, #9f7aff, #c89bff);
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(139, 92, 246, 0.7);
        }
        .telegram-link {
            margin-top: 30px;
            color: #c89bff;
            font-size: 16px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s;
        }
        .telegram-link:hover {
            color: #ffffff;
        }
        
        /* ===== 页脚 - 深紫风格 ===== */
        .footer {
            background: rgba(15, 5, 24, 0.9);
            backdrop-filter: blur(10px);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(156, 98, 255, 0.3);
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-col .footer-logo {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #c89bff, #9f7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        .footer-col p {
            color: #b39ddb;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .footer-social {
            display: flex;
            gap: 20px;
        }
        .footer-social a {
            color: #b39ddb;
            font-size: 20px;
            transition: color 0.2s;
        }
        .footer-social a:hover {
            color: #c89bff;
        }
        .footer-col h4 {
            font-size: 18px;
            color: #ffffff;
            margin-bottom: 24px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 14px;
        }
        .footer-col ul li a {
            color: #b39ddb;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #c89bff;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(156, 98, 255, 0.3);
            color: #b39ddb;
            font-size: 13px;
        }
        
        /* 响应式 */
        @media (max-width: 1024px) {
            .hero .container,
            .features-grid,
            .platform-grid,
            .community-grid,
            .about-grid {
                flex-direction: column;
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .products-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 36px;
            }
            .cta-steps {
                flex-direction: column;
                align-items: center;
            }
            .step {
                max-width: 100%;
                width: 100%;
            }
            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
            .trust-track {
                animation: scroll 20s linear infinite;
            }
        }
        @media (max-width: 1024px) {
            .hero .container,
            .features-grid,
            .platform-grid,
            .community-grid,
            .about-grid {
                flex-direction: column;
                grid-template-columns: 1fr;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .products-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }
            .cta-steps {
                flex-direction: column;
                align-items: center;
            }
            .step {
                max-width: 100%;
                width: 100%;
            }
            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
            .trust-track {
                animation: scroll 20s linear infinite;
            }
        }
        @media (max-width: 480px) {
            .share-buttons {
                flex-wrap: wrap;
            }
        }
        /* 动画 */
        @keyframes glowPulse {
            0% { opacity: 0.4; transform: scale(1); }
            100% { opacity: 0.8; transform: scale(1.2); }
        }
        
        /* 响应式 */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            .pagination {
                flex-wrap: wrap;
            }
            
            .cta-steps {
                flex-direction: column;
                align-items: center;
            }
            .step {
                max-width: 100%;
                width: 100%;
            }
            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
            .trust-track {
                animation: scroll 20s linear infinite;
            }
        }





        /* ===== 列表页专属样式 ===== */
        
        /* ===== Hero 主视觉 - 风格1: 深紫渐变+光效 ===== */
        .hero {
            padding: 60px 0 80px;
            background: transparent;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: glowPulse 8s infinite alternate;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(192, 132, 252, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: glowPulse 10s infinite alternate-reverse;
        }
        @keyframes glowPulse {
            0% { opacity: 0.4; transform: scale(1); }
            100% { opacity: 0.8; transform: scale(1.2); }
        }
        .hero .container {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        .hero-content {
            flex: 1;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(139, 92, 246, 0.2);
            color: #c89bff;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(183, 148, 255, 0.3);
            backdrop-filter: blur(5px);
        }
        .hero-content h1 {
            /* font-size: 52px; */
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #ffffff;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }
        .hero-content h1 span {
            background: linear-gradient(135deg, #e0b0ff, #b48aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-content p {
            font-size: 16px;
            color: #cfbfff;
            margin-bottom: 32px;
            max-width: 550px;
        }
        .hero-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .hero-stat {
            text-align: center;
            background: rgba(30, 12, 48, 0.5);
            backdrop-filter: blur(5px);
            border-radius: 16px;
            padding: 16px 10px;
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        .hero-stat .stat-value {
            /* font-size: 32px; */
            font-weight: 700;
            background: linear-gradient(135deg, #e0b0ff, #b48aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .hero-stat .stat-label {
            font-size: 13px;
            color: #b39ddb;
        }
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            border: none;
            color: #ffffff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #9f7aff, #c89bff);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(139, 92, 246, 0.7);
        }
        .btn-secondary {
            background: transparent;
            border: 1px solid #6b4b9c;
            color: #e0d0ff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            backdrop-filter: blur(5px);
        }
        .btn-secondary:hover {
            border-color: #b794ff;
            color: #ffffff;
            background: rgba(139, 92, 246, 0.15);
        }
        .hero-image {
            flex: 1;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: 30px;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 16px 0;
            background: rgba(22, 8, 38, 0.5);
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(156, 98, 255, 0.2);
            border-bottom: 1px solid rgba(156, 98, 255, 0.2);
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #b39ddb;
            font-size: 14px;
        }
        .breadcrumb a {
            color: #c89bff;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: #ffffff;
        }
        .breadcrumb i {
            font-size: 12px;
            color: #6b4b9c;
        }
        
        /* 分类标签 */
        .category-section {
            padding: 40px 0 20px;
        }
        .category-tags {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .tag {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(156, 98, 255, 0.25);
            border-radius: 40px;
            padding: 8px 24px;
            font-size: 14px;
            font-weight: 500;
            color: #e0d0ff;
            cursor: pointer;
            transition: all 0.2s;
        }
        .tag:hover, .tag.active {
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            color: #ffffff;
            border-color: #b794ff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
        }
        
        /* 新闻网格展示 - 一排3个 */
        .news-section {
            padding: 30px 0 60px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        .news-card {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 24px;
            padding: 28px;
            border: 1px solid rgba(156, 98, 255, 0.25);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #c084fc, #e0b0ff);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .news-card:hover::before {
            transform: scaleX(1);
        }
        .news-card:hover {
            transform: translateY(-8px);
            border-color: #b794ff;
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
            background: rgba(40, 18, 60, 0.8);
        }
        .news-category {
            display: inline-block;
            background: rgba(139, 92, 246, 0.2);
            color: #c89bff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 30px;
            margin-bottom: 16px;
            align-self: flex-start;
            border: 1px solid rgba(183, 148, 255, 0.3);
        }
        .news-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.5;
            flex: 1;
        }
        .news-card h3 a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.2s;
        }
        .news-card h3 a:hover {
            color: #c89bff;
        }
        .news-excerpt {
            color: #b39ddb;
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.6;
            flex: 1;
        }
        .news-meta {
            display: flex;
            justify-content: space-between;
            color: #b39ddb;
            font-size: 13px;
            border-top: 1px solid rgba(156, 98, 255, 0.2);
            padding-top: 20px;
            margin-top: auto;
        }
        .news-meta i {
            color: #c89bff;
            margin-right: 4px;
        }
        
        /* 分页组件 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }
        .page-item {
            min-width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(156, 98, 255, 0.25);
            border-radius: 12px;
            color: #e0d0ff;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0 12px;
        }
        .page-item:hover {
            border-color: #b794ff;
            color: #ffffff;
            background: rgba(139, 92, 246, 0.3);
        }
        .page-item.active {
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            border-color: #b794ff;
            color: #ffffff;
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.5);
        }
        .page-dots {
            color: #b39ddb;
            padding: 0 4px;
        }




        /* ===== 内容页专属样式 ===== */
        
        /* ===== Hero 主视觉 - 风格1: 深紫渐变+光效 ===== */
        .hero {
            padding: 60px 0 80px;
            background: transparent;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: glowPulse 8s infinite alternate;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(192, 132, 252, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: glowPulse 10s infinite alternate-reverse;
        }
        @keyframes glowPulse {
            0% { opacity: 0.4; transform: scale(1); }
            100% { opacity: 0.8; transform: scale(1.2); }
        }
        .hero .container {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        .hero-content {
            flex: 1;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(139, 92, 246, 0.2);
            color: #c89bff;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(183, 148, 255, 0.3);
            backdrop-filter: blur(5px);
        }
        .hero-content h1 {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #ffffff;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }
        .hero-content h1 span {
            background: linear-gradient(135deg, #e0b0ff, #b48aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-content p {
            font-size: 16px;
            color: #cfbfff;
            margin-bottom: 32px;
            max-width: 550px;
        }
        .hero-stat {
            text-align: center;
            background: rgba(30, 12, 48, 0.5);
            backdrop-filter: blur(5px);
            border-radius: 16px;
            padding: 16px 10px;
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        .hero-stat .stat-value {
            font-size: 32px;
            font-weight: 700;
            background: linear-gradient(135deg, #e0b0ff, #b48aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .hero-stat .stat-label {
            font-size: 13px;
            color: #b39ddb;
        }
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            border: none;
            color: #ffffff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #9f7aff, #c89bff);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(139, 92, 246, 0.7);
        }
        .btn-secondary {
            background: transparent;
            border: 1px solid #6b4b9c;
            color: #e0d0ff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            backdrop-filter: blur(5px);
        }
        .btn-secondary:hover {
            border-color: #b794ff;
            color: #ffffff;
            background: rgba(139, 92, 246, 0.15);
        }
        .hero-image {
            flex: 1;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: 30px;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(156, 98, 255, 0.3);
        }
        .banner-meta {
            display: flex;
            gap: 30px;
            color: #8a9ac0;
            font-size: 14px;
            flex-wrap: wrap;
        }
        .banner-meta i {
            color: #b39ddb;
            margin-right: 6px;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 16px 0;
            background: rgba(22, 8, 38, 0.5);
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(156, 98, 255, 0.2);
            border-bottom: 1px solid rgba(156, 98, 255, 0.2);
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #b39ddb;
            font-size: 14px;
        }
        .breadcrumb a {
            color: #c89bff;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: #ffffff;
        }
        .breadcrumb i {
            font-size: 12px;
            color: #6b4b9c;
        }
        
        /* 主要内容区域 - 左右两栏 */
        .detail-section {
            padding: 50px 0 70px;
        }
        .detail-container {
            display: flex;
            gap: 40px;
        }
        
        /* 左侧：内容展示 */
        .detail-main {
            flex: 2.5;
        }
        .article-card {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 28px;
            border: 1px solid rgba(156, 98, 255, 0.25);
            padding: 40px;
            transition: all 0.3s;
        }
        .article-card:hover {
            border-color: #b794ff;
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
        }
        .article-content {
            color: #f0e9ff;
            font-size: 16px;
            line-height: 1.8;
        }

        .article-content h1 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .article-content h2 {
            font-size: 24px;
            margin: 32px 0 16px;
            color: #ffffff;
        }
        .article-content h3 {
            font-size: 20px;
            margin: 28px 0 12px;
            color: #ffffff;
        }
        .article-content p {
            margin-bottom: 20px;
            color: #d4c2ff;
        }
        .article-content ul, .article-content ol {
            margin: 20px 0 20px 24px;
            color: #d4c2ff;
        }
        .article-content li {
            margin-bottom: 8px;
        }
        .article-content .highlight-box {
            background: rgba(139, 92, 246, 0.15);
            border-left: 4px solid #c084fc;
            padding: 24px;
            border-radius: 16px;
            margin: 30px 0;
        }
        .article-content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .share-buttons {
            display: flex;
            gap: 16px;
            align-items: center;
            border-top: 1px solid rgba(156, 98, 255, 0.3);
            padding-top: 30px;
            margin-top: 10px;
        }
        .share-buttons span {
            font-weight: 600;
            color: #b39ddb;
        }
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(30, 12, 48, 0.8);
            border: 1px solid rgba(156, 98, 255, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #c89bff;
            text-decoration: none;
            transition: all 0.2s;
        }
        .share-btn:hover {
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            color: #ffffff;
            border-color: #b794ff;
            transform: translateY(-2px);
        }
        
        
        
        /* 右侧边栏 */
        .detail-sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-card {
            background: rgba(30, 12, 48, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 24px;
            padding: 28px 24px;
            border: 1px solid rgba(156, 98, 255, 0.25);
            transition: all 0.2s;
        }
        .sidebar-card:hover {
            border-color: #b794ff;
        }
        .sidebar-card h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h4 i {
            color: #c89bff;
        }
        
        /* 相关文章列表 */
        .related-list {
            list-style: none;
        }
        .related-list li {
            margin-bottom: 20px;
            border-bottom: 1px dashed rgba(156, 98, 255, 0.3);
            padding-bottom: 16px;
        }
        .related-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .related-list li a {
            text-decoration: none;
            color: #f0e9ff;
            font-weight: 500;
            display: block;
            line-height: 1.5;
            transition: color 0.2s;
        }
        .related-list li a:hover {
            color: #c89bff;
        }
        .related-list .related-date {
            font-size: 12px;
            color: #b39ddb;
            margin-top: 6px;
        }
        
        /* 下载板块 */
        .download-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px dashed rgba(156, 98, 255, 0.3);
        }
        .download-item:last-child {
            border-bottom: none;
        }
        .download-icon {
            width: 48px;
            height: 48px;
            background: rgba(139, 92, 246, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c89bff;
            font-size: 24px;
        }
        .download-info h5 {
            font-size: 16px;
            margin-bottom: 4px;
            color: #ffffff;
        }
        .download-info p {
            font-size: 13px;
            color: #b39ddb;
        }
        .download-btn {
            background: transparent;
            border: 1px solid #c084fc;
            color: #c89bff;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-left: auto;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            color: #ffffff;
            border-color: #b794ff;
        }
        
        /* 客服在线板块 */
        .service-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .service-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 20px;
            transition: all 0.2s;
            cursor: pointer;
            border: 1px solid rgba(156, 98, 255, 0.2);
        }
        .service-item:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: #c084fc;
        }
        .service-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #8b5cf6, #b47aff);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 20px;
        }
        .service-info h5 {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 2px;
        }
        .service-info p {
            font-size: 13px;
            color: #b39ddb;
        }


        @media (max-width: 768px) {
            .content-banner h1 {
                font-size: 32px;
            }
            .article-card {
                padding: 24px;
            }
            .prev-article, .next-article {
                max-width: 100%;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .banner-meta {
                gap: 15px;
            }
        }
        @media (max-width: 480px) {
            .share-buttons {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 1024px) {
            .hero .container,
            .features-grid,
            .platform-grid,
            .community-grid,
            .about-grid {
                flex-direction: column;
                grid-template-columns: 1fr;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .products-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 36px;
            }
        }
        /* 响应式 */
        @media (max-width: 1024px) {
            .detail-container {
                flex-direction: column;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 动画 */
        @keyframes glowPulse {
            0% { opacity: 0.4; transform: scale(1); }
            100% { opacity: 0.8; transform: scale(1.2); }
        }