:root {
            --bg: #0a120c;
            --surface: #122018;
            --surface-hover: #1a2f23;
            --accent: #4ade80;
            --accent2: #a3e635;
            --text: #f0fdf4;
            --muted: #8fb89f;
            --font-display: 'Anton', sans-serif;
            --font-body: 'Barlow', sans-serif;
            --container-w: 1024px;
            --shadow-step: repeating-linear-gradient(45deg, rgba(74, 222, 128, 0.03) 0px, rgba(74, 222, 128, 0.03) 2px, transparent 2px, transparent 8px);
        }

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

        body {
            font-family: var(--font-body);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            background-image: radial-gradient(circle at 50% 0%, #122018 0%, transparent 70%);
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent2);
        }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: normal;
            letter-spacing: 0.05em;
            line-height: 1.2;
        }

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

        /* HEADER (As provided, styled to fit theme) */
        header {
            background-color: rgba(10, 18, 12, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo:hover { color: var(--accent2); }

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

        .nav-links {
            display: flex;
            gap: 24px;
        }

        .nav-links a {
            color: var(--text);
            font-weight: 500;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

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

        /* HERO BANNER */
        .hero-banner {
            padding: 60px 0 40px;
            background: var(--shadow-step), linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
            border-bottom: 1px solid rgba(74, 222, 128, 0.05);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(74, 222, 128, 0.05) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

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

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

        .hero-banner h1 {
            font-size: clamp(32px, 5vw, 56px);
            color: var(--text);
            margin-bottom: 24px;
            text-transform: uppercase;
            text-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }

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

        .meta-chips span {
            background-color: var(--surface);
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 4px;
            border: 1px solid rgba(74, 222, 128, 0.2);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .meta-chips span::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: var(--accent2);
            border-radius: 50%;
        }

        /* MAIN ARTICLE */
        .article-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px 60px;
        }

        .intro-block {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            padding: 24px 30px;
            background: linear-gradient(90deg, var(--surface) 0%, transparent 100%);
            border-left: 4px solid var(--accent);
            margin-bottom: 40px;
            border-radius: 0 8px 8px 0;
        }

        .intro-block a {
            font-weight: 600;
            border-bottom: 1px dashed var(--accent);
        }

        .content-section {
            margin-bottom: 48px;
            position: relative;
        }

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

        .content-section h2::before {
            content: '»';
            color: var(--muted);
            font-size: 24px;
        }

        .content-section p {
            margin-bottom: 20px;
            color: #d1e8da;
            font-size: 16px;
            text-align: justify;
        }

        .content-section p a {
            font-weight: 500;
        }

        /* CUSTOM LIST */
        .feature-list {
            list-style: none;
            margin: 24px 0;
            padding: 0;
            display: grid;
            gap: 16px;
        }

        .feature-list li {
            background-color: var(--surface);
            padding: 16px 20px 16px 48px;
            border-radius: 8px;
            position: relative;
            border: 1px solid rgba(143, 184, 159, 0.1);
            color: var(--text);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .feature-list li:hover {
            transform: translateX(5px);
            border-color: rgba(74, 222, 128, 0.3);
        }

        .feature-list li::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 22px;
            width: 10px;
            height: 10px;
            background-color: var(--accent);
            transform: rotate(45deg);
            box-shadow: 0 0 8px var(--accent);
        }

        /* FAQ SECTION */
        .faq-wrapper {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(143, 184, 159, 0.2);
        }

        .faq-wrapper h2 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 30px;
            color: var(--text);
        }

        details {
            background-color: var(--surface);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        summary {
            padding: 20px;
            font-weight: 600;
            font-size: 17px;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
            transition: background-color 0.3s;
        }

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

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

        details[open] summary {
            background-color: var(--surface-hover);
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
        }

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

        details p {
            padding: 20px;
            color: #d1e8da;
            margin: 0;
            background-color: rgba(10, 18, 12, 0.3);
        }

        /* RELATED PAGES */
        .related-pages {
            margin-top: 60px;
            background: var(--surface);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid rgba(74, 222, 128, 0.15);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .related-pages::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .related-pages h3 {
            font-size: 24px;
            margin-bottom: 24px;
            color: var(--text);
        }

        .nav-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .nav-pills a {
            background-color: var(--bg);
            color: var(--muted);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(143, 184, 159, 0.2);
            transition: all 0.3s ease;
        }

        .nav-pills a:hover {
            background-color: rgba(74, 222, 128, 0.1);
            color: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* CTA BLOCK */
        .cta-mega {
            margin-top: 60px;
            background: linear-gradient(135deg, var(--surface) 0%, #172a1f 100%);
            padding: 50px 30px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(74, 222, 128, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .cta-mega h3 {
            font-size: 36px;
            color: var(--accent2);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

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

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            font-family: var(--font-display);
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 180px;
        }

        .btn-primary {
            background-color: var(--accent);
            color: var(--bg);
            border: 2px solid var(--accent);
        }

        .btn-primary:hover {
            background-color: var(--accent2);
            border-color: var(--accent2);
            color: var(--bg);
            box-shadow: 0 0 20px rgba(163, 230, 53, 0.4);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background-color: rgba(74, 222, 128, 0.1);
            color: var(--accent2);
            border-color: var(--accent2);
        }

        /* FOOTER (As provided, styled to fit theme) */
        footer {
            background-color: #050a06;
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 60px 0 20px;
            margin-top: 80px;
        }

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

        .footer-brand {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--accent);
            text-transform: uppercase;
            display: block;
            margin-bottom: 16px;
        }

        .footer-tagline {
            color: var(--muted);
            font-size: 15px;
            max-width: 300px;
        }

        .footer-links h4 {
            color: var(--text);
            font-size: 20px;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

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

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(143, 184, 159, 0.1);
            color: var(--muted);
            font-size: 14px;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--surface);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid rgba(74, 222, 128, 0.2);
            }

            .nav-links.active {
                display: flex;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-banner h1 {
                font-size: 32px;
            }

            .content-section h2 {
                font-size: 24px;
            }

            .cta-mega h3 {
                font-size: 28px;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 390px) {
            .container {
                padding: 0 16px;
            }

            .intro-block {
                padding: 20px 16px;
                font-size: 16px;
            }

            .related-pages {
                padding: 24px 16px;
            }
        }


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