:root {
            --bg: #0a120c;
            --surface: #122018;
            --accent: #4ade80;
            --accent2: #a3e635;
            --text: #f0fdf4;
            --muted: #8fb89f;
            --font-display: 'Anton', sans-serif;
            --font-body: 'Barlow', sans-serif;
            --container-width: 1024px;
            --shadow-step: 4px 4px 0 var(--accent);
            --shadow-step-hover: 6px 6px 0 var(--accent2);
        }

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

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-body);
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
        }

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

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

        h1, h2, h3, h4, .logo, .footer-brand {
            font-family: var(--font-display);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        /* HEADER */
        header {
            background-color: var(--surface);
            border-bottom: 2px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-size: 28px;
            color: var(--accent);
            letter-spacing: 2px;
        }

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

        .nav-links a {
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 0;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

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

        /* HERO BANNER */
        .hero {
            background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
            padding: 60px 0 40px;
            position: relative;
            border-bottom: 1px dashed var(--muted);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background-image: radial-gradient(var(--accent) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.05;
            pointer-events: none;
        }

        .breadcrumb {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 20px;
            display: inline-block;
            background: rgba(18, 32, 24, 0.8);
            padding: 5px 15px;
            border-left: 3px solid var(--accent);
        }

        .hero h1 {
            font-size: clamp(32px, 5vw, 56px);
            color: var(--text);
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 2px 2px 0 rgba(74, 222, 128, 0.2);
        }

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

        .chip {
            background-color: var(--surface);
            border: 1px solid var(--muted);
            color: var(--muted);
            font-size: 13px;
            padding: 4px 12px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* MAIN CONTENT */
        .content-area {
            padding: 50px 0;
        }

        .intro-block {
            font-size: 18px;
            color: var(--text);
            background-color: var(--surface);
            padding: 30px;
            border-left: 4px solid var(--accent);
            box-shadow: var(--shadow-step);
            margin-bottom: 50px;
            font-weight: 500;
        }

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

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

        .section-block h2::before {
            content: '';
            display: block;
            width: 12px;
            height: 12px;
            background-color: var(--accent);
            transform: rotate(45deg);
        }

        .section-block p {
            margin-bottom: 20px;
            color: #d1e8d9;
            text-align: justify;
        }

        .section-block p a {
            font-weight: 700;
            border-bottom: 1px dotted var(--accent);
        }

        /* FEATURE LIST */
        .feature-box {
            background-color: rgba(18, 32, 24, 0.5);
            border: 1px solid rgba(74, 222, 128, 0.3);
            padding: 30px;
            margin-top: 20px;
            position: relative;
        }

        .feature-box::after {
            content: '';
            position: absolute;
            bottom: -5px; right: -5px;
            width: 20px; height: 20px;
            border-bottom: 2px solid var(--accent);
            border-right: 2px solid var(--accent);
        }

        .styled-list {
            list-style: none;
        }

        .styled-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            color: #d1e8d9;
        }

        .styled-list li::before {
            content: '»';
            position: absolute;
            left: 0;
            top: 0;
            font-family: var(--font-display);
            color: var(--accent);
            font-size: 20px;
            line-height: 1;
        }

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

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

        details {
            background-color: var(--surface);
            border: 1px solid rgba(143, 184, 159, 0.3);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        details[open] {
            border-color: var(--accent);
            box-shadow: 2px 2px 0 rgba(74, 222, 128, 0.2);
        }

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

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

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

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

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

        /* RELATED LINKS */
        .related-links {
            margin-top: 60px;
            background: linear-gradient(to right, var(--surface), var(--bg));
            padding: 40px;
            border-left: 4px solid var(--accent2);
        }

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

        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .link-grid a {
            display: block;
            background-color: var(--bg);
            border: 1px solid var(--muted);
            padding: 15px;
            text-align: center;
            font-weight: 600;
            color: var(--text);
            text-transform: capitalize;
            transition: all 0.3s ease;
        }

        .link-grid a:hover {
            border-color: var(--accent);
            background-color: var(--surface);
            box-shadow: var(--shadow-step);
            transform: translateY(-2px);
            color: var(--accent);
        }

        /* CTA BLOCK */
        .cta-block {
            margin: 80px 0;
            text-align: center;
            padding: 60px 20px;
            background-color: var(--surface);
            border: 2px solid var(--accent);
            box-shadow: 8px 8px 0 rgba(74, 222, 128, 0.1);
            position: relative;
            overflow: hidden;
        }

        .cta-block::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: conic-gradient(from 0deg, transparent 0%, rgba(74, 222, 128, 0.05) 50%, transparent 100%);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .cta-block h2 {
            font-size: 36px;
            color: var(--text);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .cta-block p {
            color: var(--muted);
            margin-bottom: 30px;
            font-size: 18px;
            position: relative;
            z-index: 1;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            font-family: var(--font-display);
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 160px;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--accent);
            color: var(--bg);
            border: 2px solid var(--accent);
            box-shadow: 4px 4px 0 var(--accent2);
        }

        .btn-primary:hover {
            background-color: var(--accent2);
            border-color: var(--accent2);
            box-shadow: 2px 2px 0 var(--accent);
            transform: translate(2px, 2px);
            color: var(--bg);
        }

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

        .btn-secondary:hover {
            background-color: rgba(74, 222, 128, 0.1);
            box-shadow: var(--shadow-step);
            transform: translate(-2px, -2px);
        }

        /* FOOTER */
        footer {
            background-color: var(--surface);
            border-top: 1px solid #1a2e22;
            padding: 60px 0 20px;
            margin-top: auto;
        }

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

        .footer-brand {
            font-size: 32px;
            color: var(--accent);
            display: block;
            margin-bottom: 15px;
        }

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

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

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

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

        .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 #1a2e22;
            color: var(--muted);
            font-size: 14px;
        }

        /* RESPONSIVE */
        @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: 2px solid var(--accent);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .btn-group {
                flex-direction: column;
            }
            .cta-block {
                padding: 40px 20px;
            }
            .related-links {
                padding: 25px 15px;
            }
        }


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