:root {
            --bg: #0e0618;
            --surface: #1f0f30;
            --accent: #ff00ff;
            --accent-glow: rgba(255, 0, 255, 0.5);
            --accent2: #00ffff;
            --accent2-glow: rgba(0, 255, 255, 0.5);
            --text: #faf3ff;
            --muted: #a795c2;
            --font-display: 'Orbitron', sans-serif;
            --font-body: 'Exo 2', sans-serif;
            --container-width: 1200px;
            --content-width: 840px;
        }

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

        body {
            font-family: var(--font-body);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* Typography */
        h1, h2, h3, .logo {
            font-family: var(--font-display);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            border-radius: 4px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s ease;
            text-align: center;
            min-height: 44px;
        }

        .btn-primary {
            background-color: var(--accent);
            color: #fff;
            box-shadow: 0 0 10px var(--accent-glow);
            border: 1px solid var(--accent);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--accent);
            box-shadow: 0 0 20px var(--accent-glow) inset, 0 0 20px var(--accent-glow);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent2);
            border: 1px solid var(--accent2);
            box-shadow: 0 0 5px var(--accent2-glow) inset;
        }

        .btn-secondary:hover {
            background-color: var(--accent2);
            color: var(--bg);
            box-shadow: 0 0 15px var(--accent2-glow);
        }

        /* HEADER (Exact copy styling) */
        header {
            background-color: 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: 100;
        }

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

        .logo {
            font-size: 24px;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 0 8px var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
        }

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

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

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

        /* Mobile Menu Active State */
        .nav-links.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--surface);
            padding: 20px;
            border-bottom: 1px solid var(--accent);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        /* HERO BANNER */
        .hero {
            position: relative;
            padding: 60px 0;
            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;
        }

        /* Mirror ball / Disco effect background */
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 40%),
                linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.02) 75%, rgba(255,255,255,0.02)),
                linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.02) 75%, rgba(255,255,255,0.02));
            background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
            background-position: 0 0, 0 0, 0 0, 15px 15px;
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: var(--content-width);
            margin: 0 auto;
        }

        .breadcrumb {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 20px;
            display: inline-block;
            background: rgba(0,0,0,0.5);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid rgba(167, 149, 194, 0.3);
        }

        .hero h1 {
            font-size: 32px;
            color: #fff;
            margin-bottom: 24px;
            text-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
            line-height: 1.2;
        }

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

        .chip {
            font-size: 12px;
            font-weight: 600;
            background: rgba(0, 255, 255, 0.1);
            color: var(--accent2);
            padding: 6px 14px;
            border-radius: 4px;
            border: 1px solid var(--accent2);
            box-shadow: 0 0 8px rgba(0, 255, 255, 0.2) inset;
        }

        /* MAIN CONTENT AREA */
        .content-area {
            max-width: var(--content-width);
            margin: 40px auto;
            padding: 0 20px;
        }

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

        .intro-block::after {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; width: 30%;
            background: linear-gradient(90deg, transparent, rgba(255,0,255,0.05));
            pointer-events: none;
        }

        .section-block {
            margin-bottom: 40px;
        }

        .section-block h2 {
            font-size: 22px;
            color: var(--accent2);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-block h2::before {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background: var(--accent2);
            box-shadow: 0 0 8px var(--accent2);
        }

        .section-block p {
            margin-bottom: 16px;
            color: #e0d8e6;
            font-size: 16px;
        }

        /* Styling for links inside verbatim text */
        .section-block a {
            color: var(--accent);
            font-weight: 600;
            border-bottom: 1px dotted var(--accent);
        }
        .section-block a:hover {
            color: var(--accent2);
            border-bottom-color: var(--accent2);
            text-shadow: 0 0 5px var(--accent2-glow);
        }

        /* Neon List */
        .neon-list {
            list-style: none;
            margin: 20px 0;
            padding-left: 10px;
        }

        .neon-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            color: #e0d8e6;
        }

        .neon-list li::before {
            content: '►';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent);
            font-size: 12px;
            text-shadow: 0 0 5px var(--accent);
        }

        /* FAQ Section */
        .faq-wrapper {
            margin-top: 50px;
            background: var(--surface);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid rgba(167, 149, 194, 0.2);
        }

        .faq-wrapper h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #fff;
        }
        .faq-wrapper h2::before { display: none; }

        details {
            margin-bottom: 16px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 6px;
            overflow: hidden;
            background: rgba(0,0,0,0.3);
        }

        summary {
            padding: 16px 20px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--accent2);
            transition: background 0.3s;
            min-height: 44px;
        }

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

        summary::after {
            content: '+';
            font-size: 20px;
            color: var(--accent2);
        }

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

        details[open] summary::after {
            content: '-';
        }

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

        /* RELATED LINKS BLOCK (Creative Navigation) */
        .related-nav {
            margin: 60px 0;
            padding: 40px 0;
            border-top: 1px dashed rgba(255,0,255,0.3);
            border-bottom: 1px dashed rgba(255,0,255,0.3);
        }

        .related-nav h3 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 20px;
            color: #fff;
        }

        .nav-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .nav-card {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            background: var(--surface);
            border: 1px solid rgba(255, 0, 255, 0.2);
            border-radius: 6px;
            font-family: var(--font-display);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text);
            position: relative;
            overflow: hidden;
            z-index: 1;
            min-height: 44px;
        }

        .nav-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: left 0.5s ease;
            z-index: -1;
        }

        .nav-card:hover {
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(255,0,255,0.2);
            color: #fff;
        }

        .nav-card:hover::before {
            left: 100%;
        }

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

        .mega-cta::after {
            content: '';
            position: absolute;
            top: 0; left: 50%; transform: translateX(-50%);
            width: 150px; height: 2px;
            background: #fff;
            box-shadow: 0 0 20px 5px var(--accent);
        }

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

        .mega-cta p {
            font-size: 16px;
            color: var(--muted);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* FOOTER (Exact copy styling) */
        footer {
            background-color: #07030c;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

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

        .footer-tagline {
            color: var(--muted);
            margin-top: 10px;
            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;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
        }

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

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

        /* RESPONSIVE BREAKPOINTS */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            .header-ctas {
                display: flex;
            }
            .menu-toggle {
                display: none;
            }
            .hero h1 {
                font-size: 42px;
            }
            .nav-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-block h2 {
                font-size: 26px;
            }
        }

        @media (min-width: 1024px) {
            .nav-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 48px;
            }
        }


/* 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; }
