:root {
            /* Palette */
            --bg: #140d08;
            --surface: #241710;
            --accent: #e8965a;
            --accent-hover: #f3a871;
            --accent2: #f5c542;
            --text: #fef8f0;
            --muted: #b89878;
            --border: #3a271d;

            /* Typography */
            --font-display: 'Oswald', sans-serif;
            --font-body: 'Fira Sans', sans-serif;

            /* Layout */
            --container-width: 1024px;
            --header-height: 70px;
        }

        /* Reset & Base */
        * {
            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;
        }

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

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

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

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

        /* Header Styles (Matching Homepage constraints) */
        header {
            background-color: #0d0805;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            display: flex;
            align-items: center;
            height: var(--header-height);
        }

        .brand {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--accent2);
            text-decoration: none;
            margin-right: 2rem;
            letter-spacing: 1px;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 1.5rem;
        }

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

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 1.25rem;
            border-radius: 4px;
            font-family: var(--font-display);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--accent);
            color: #000;
            border: 1px solid var(--accent);
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
            color: #000;
            box-shadow: 0 0 15px rgba(232, 150, 90, 0.4);
        }

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

        .btn-secondary:hover {
            background-color: rgba(232, 150, 90, 0.1);
        }

        .mobile-menu-btn {
            display: block;
            margin-left: auto;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            background-color: var(--surface);
            border-bottom: 1px solid var(--border);
            padding: 1rem 1.5rem;
            flex-direction: column;
            gap: 1rem;
        }

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

        .mobile-nav a {
            color: var(--text);
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border);
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a100a 0%, #2a1910 100%);
            border-bottom: 2px solid var(--border);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: radial-gradient(circle at top right, rgba(232, 150, 90, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .breadcrumb {
            font-size: 0.875rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }

        .breadcrumb a {
            color: var(--muted);
        }

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

        .breadcrumb span {
            color: var(--accent2);
        }

        .hero h1 {
            font-size: 2.25rem;
            line-height: 1.2;
            color: var(--text);
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .meta-chips {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .chip {
            background-color: rgba(232, 150, 90, 0.15);
            color: var(--accent);
            border: 1px solid rgba(232, 150, 90, 0.3);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8125rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        /* Main Content Area */
        .page-wrapper {
            padding: 3rem 0;
        }

        .intro-block {
            font-size: 1.125rem;
            color: var(--text);
            border-left: 4px solid var(--accent2);
            padding-left: 1.5rem;
            margin-bottom: 3rem;
            line-height: 1.7;
            background: linear-gradient(90deg, rgba(36,23,16,0.8) 0%, transparent 100%);
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .content-card {
            background-color: var(--surface);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
            border-radius: 6px 6px 0 0;
        }

        .content-card h2 {
            font-size: 1.5rem;
            color: var(--accent2);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .content-card h2::before {
            content: '■';
            color: var(--accent);
            font-size: 0.8em;
        }

        .content-card p {
            margin-bottom: 1rem;
            color: #e0d5c1;
        }

        .content-card p:last-child {
            margin-bottom: 0;
        }

        .content-card a {
            text-decoration: underline;
            text-decoration-color: rgba(232, 150, 90, 0.4);
            text-underline-offset: 3px;
        }

        .content-card a:hover {
            text-decoration-color: var(--accent);
        }

        .custom-list {
            list-style: none;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .custom-list li {
            position: relative;
            padding-left: 1.75rem;
            margin-bottom: 0.75rem;
            color: #e0d5c1;
        }

        .custom-list li::before {
            content: '♦';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-size: 1.2rem;
            line-height: 1.4;
        }

        /* FAQ Section */
        .faq-wrapper {
            margin-top: 3rem;
        }

        .faq-wrapper h2 {
            font-size: 1.75rem;
            color: var(--text);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        details {
            background-color: var(--surface);
            border: 1px solid var(--border);
            border-radius: 4px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        summary {
            padding: 1.25rem 1.5rem;
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 500;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(0,0,0,0.2);
        }

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

        summary::after {
            content: '+';
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 400;
            transition: transform 0.3s ease;
        }

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

        details p {
            padding: 1.25rem 1.5rem;
            border-top: 1px solid var(--border);
            color: var(--muted);
            margin: 0;
        }

        /* Related Links Grid */
        .related-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px dashed var(--border);
        }

        .related-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--muted);
        }

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

        .link-grid a {
            display: block;
            background-color: var(--surface);
            border: 1px solid var(--border);
            padding: 1rem;
            text-align: center;
            border-radius: 4px;
            font-family: var(--font-display);
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .link-grid a:hover {
            border-color: var(--accent);
            background-color: rgba(232, 150, 90, 0.05);
            color: var(--accent);
            transform: translateY(-2px);
        }

        /* CTA Section */
        .cta-block {
            margin-top: 4rem;
            background: linear-gradient(135deg, #241710 0%, #140d08 100%);
            border: 1px solid var(--accent);
            border-radius: 8px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: inset 0 0 40px rgba(232, 150, 90, 0.1);
        }

        .cta-block h2 {
            font-size: 2rem;
            color: var(--accent2);
            margin-bottom: 1rem;
        }

        .cta-block p {
            color: var(--muted);
            margin-bottom: 2rem;
            font-size: 1.125rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-buttons .btn {
            min-height: 48px;
            font-size: 1rem;
            padding: 0 2rem;
        }

        /* Footer Styles */
        footer {
            background-color: #0a0604;
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            text-align: center;
        }

        .footer-brand {
            font-size: 2rem;
            color: var(--accent2);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .footer-tagline {
            color: var(--muted);
            margin-bottom: 2rem;
            font-size: 0.9375rem;
        }

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

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

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

        .copyright {
            color: #555;
            font-size: 0.8125rem;
            border-top: 1px solid #1f150e;
            padding-top: 1.5rem;
        }

        /* Media Queries */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
            .mobile-menu-btn {
                display: none;
            }
            .nav-links {
                display: flex;
            }
        }

        @media (min-width: 1024px) {
            .content-card {
                padding: 2.5rem;
            }
            .cta-block {
                padding: 4rem;
            }
        }


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