:root {
            --bg: #0e0618;
            --surface: #1f0f30;
            --accent: #ff00ff;
            --accent2: #00ffff;
            --text: #faf3ff;
            --muted: #a795c2;
            --font-display: 'Orbitron', sans-serif;
            --font-body: 'Exo 2', sans-serif;
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at 15% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
            background-attachment: fixed;
        }

        a {
            color: var(--accent2);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent);
            text-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
        }

        h1, h2, h3, .logo {
            font-family: var(--font-display);
            line-height: 1.2;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            min-height: 44px;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--accent), #b300b3);
            color: #fff !important;
            border: 1px solid var(--accent);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, #b300b3, var(--accent));
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
            transform: translateY(-2px);
            text-shadow: none;
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent2) !important;
            border: 1px solid var(--accent2);
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.2) inset;
        }

        .btn-secondary:hover {
            background: rgba(0, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.4) inset, 0 0 15px rgba(0, 255, 255, 0.4);
            transform: translateY(-2px);
            text-shadow: none;
        }

        /* HEADER (Styling the provided HTML) */
        header {
            background: rgba(14, 6, 24, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 255, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
        }

        .nav-links {
            display: none;
            gap: 20px;
        }

        .nav-links a {
            color: var(--text);
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            color: var(--accent2);
            text-shadow: 0 0 10px var(--accent2);
        }

        .header-ctas {
            display: none;
            gap: 15px;
        }

        .menu-toggle {
            display: block;
            background: none;
            border: none;
            color: var(--accent2);
            font-size: 28px;
            cursor: pointer;
            min-width: 44px;
            min-height: 44px;
        }

        /* HERO BANNER - MIRROR BALL THEME */
        .hero-banner {
            position: relative;
            padding: 80px 0 60px;
            text-align: center;
            background: linear-gradient(180deg, rgba(31, 15, 48, 0.8) 0%, var(--bg) 100%);
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,0,255,0.15) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            font-size: 12px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            display: inline-block;
            background: rgba(31, 15, 48, 0.8);
            padding: 6px 15px;
            border-radius: 20px;
            border: 1px solid rgba(167, 149, 194, 0.2);
        }

        .hero-banner h1 {
            font-size: 32px;
            color: #fff;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
            letter-spacing: 1px;
        }

        .meta-chips {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .chip {
            font-size: 12px;
            font-family: var(--font-display);
            background: rgba(0, 255, 255, 0.1);
            color: var(--accent2);
            padding: 5px 12px;
            border-radius: 4px;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        /* CONTENT AREA */
        .main-content {
            padding: 40px 0;
        }

        .intro-block {
            background: var(--surface);
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
            margin-bottom: 50px;
            font-size: 18px;
            line-height: 1.8;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            position: relative;
        }

        .intro-block::after {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: linear-gradient(90deg, transparent, rgba(255,0,255,0.03));
            pointer-events: none;
            border-radius: 8px;
        }

        .content-section {
            margin-bottom: 50px;
        }

        .content-section h2 {
            font-size: 24px;
            color: var(--accent2);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
            display: inline-block;
        }

        .content-section p {
            margin-bottom: 20px;
            color: #e0d5eb;
            font-size: 16px;
        }

        .content-section p a {
            font-weight: 600;
            border-bottom: 1px dashed var(--accent2);
        }

        .content-section p a:hover {
            border-bottom-style: solid;
        }

        /* Custom List Styling */
        .feature-list {
            list-style: none;
            margin: 30px 0;
            display: grid;
            gap: 15px;
        }

        .feature-list li {
            background: rgba(31, 15, 48, 0.6);
            padding: 20px 20px 20px 50px;
            border-radius: 6px;
            border: 1px solid rgba(255, 0, 255, 0.1);
            position: relative;
            transition: var(--transition);
        }

        .feature-list li:hover {
            background: var(--surface);
            border-color: rgba(255, 0, 255, 0.4);
            transform: translateX(5px);
        }

        .feature-list li::before {
            content: '✦';
            position: absolute;
            left: 20px;
            top: 20px;
            color: var(--accent);
            font-size: 18px;
            text-shadow: 0 0 10px var(--accent);
        }

        /* FAQ SECTION */
        .faq-container {
            background: var(--surface);
            padding: 40px;
            border-radius: 12px;
            margin: 60px 0;
            border: 1px solid rgba(167, 149, 194, 0.1);
            box-shadow: 0 0 40px rgba(0,0,0,0.5);
        }

        .faq-container h2 {
            text-align: center;
            color: #fff;
            margin-bottom: 30px;
            border: none;
            display: block;
            text-shadow: 0 0 10px var(--accent);
        }

        details {
            background: rgba(14, 6, 24, 0.6);
            margin-bottom: 15px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }

        summary {
            padding: 20px;
            font-family: var(--font-display);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--accent2);
            list-style: none;
            transition: var(--transition);
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            font-size: 24px;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        details[open] summary {
            background: rgba(0, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        details[open] summary::after {
            transform: rotate(45deg);
        }

        details p {
            padding: 20px;
            margin: 0;
            color: var(--muted);
            border-top: none;
        }

        /* RELATED LINKS */
        .related-section {
            margin: 60px 0;
            text-align: center;
        }

        .related-section h2 {
            border: none;
            margin-bottom: 30px;
            color: #fff;
        }

        .related-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .related-card {
            background: var(--surface);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid rgba(255, 0, 255, 0.2);
            color: var(--text);
            font-family: var(--font-display);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .related-card::before {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,0,255,0.2), transparent);
            transition: var(--transition);
            z-index: -1;
        }

        .related-card:hover {
            border-color: var(--accent);
            color: #fff;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
            text-decoration: none;
        }

        .related-card:hover::before {
            left: 100%;
            transition: left 0.6s ease;
        }

        /* MEGA CTA */
        .mega-cta {
            background: linear-gradient(135deg, var(--surface) 0%, #2a0a3a 100%);
            padding: 60px 20px;
            text-align: center;
            border-top: 2px solid var(--accent);
            border-bottom: 2px solid var(--accent2);
            position: relative;
        }

        .mega-cta::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                linear-gradient(90deg, rgba(255,0,255,0.1) 1px, transparent 1px) 0 0 / 20px 20px,
                linear-gradient(rgba(0,255,255,0.1) 1px, transparent 1px) 0 0 / 20px 20px;
            opacity: 0.5;
            pointer-events: none;
        }

        .mega-cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .mega-cta h2 {
            font-size: 32px;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 0 20px var(--accent);
        }

        .mega-cta p {
            font-size: 18px;
            color: var(--text);
            margin-bottom: 30px;
        }

        .mega-cta .cta-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
        }

        /* FOOTER (Styling the provided HTML) */
        footer {
            background: #090310;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(167, 149, 194, 0.1);
        }

        .footer-top {
            text-align: center;
            margin-bottom: 40px;
        }

        .footer-tagline {
            color: var(--muted);
            margin-top: 15px;
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 25px;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-links a {
            color: var(--muted);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            color: rgba(167, 149, 194, 0.5);
            font-size: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* MEDIA QUERIES */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            .header-ctas {
                display: flex;
            }
            .menu-toggle {
                display: none;
            }
            .hero-banner h1 {
                font-size: 48px;
            }
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .mega-cta .cta-group {
                flex-direction: row;
            }
        }

        @media (min-width: 1024px) {
            .related-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            /* Two column layout for comparison section */
            .comparison-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        /* Mobile Menu Active State */
        .nav-links.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(14, 6, 24, 0.98);
            padding: 20px;
            border-bottom: 1px solid var(--accent);
        }
        .header-ctas.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: calc(100% + 220px); /* rough estimate below menu */
            left: 0;
            width: 100%;
            background: rgba(14, 6, 24, 0.98);
            padding: 20px;
            border-bottom: 1px solid var(--accent2);
            z-index: 999;
        }


/* pipeline image & layout guards */
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
/* 合规声明块（zb-disclaimer，全站 footer） */
.zb-disclaimer { margin-top: 18px !important; padding: 14px 0 0 0 !important; border-top: 1px solid rgba(128,128,128,.25) !important; font-size: .72rem !important; line-height: 1.7 !important; opacity: .85 !important; display: block !important; text-align: left !important; width: 100% !important; clear: both !important; }
.zb-disclaimer .zb-18 { display: inline-block !important; padding: 2px 10px !important; border: 1.5px solid currentColor !important; border-radius: 6px !important; font-weight: 800 !important; letter-spacing: 1px !important; margin: 0 0 10px 0 !important; font-size: .78rem !important; }
.zb-disclaimer p { display: block !important; margin: 5px 0 !important; padding: 0 !important; color: inherit !important; font-size: .72rem !important; line-height: 1.7 !important; }
.zb-disclaimer p:last-child { margin-bottom: 0 !important; }
