:root {
            --bg: #150e04;
            --surface: #281c08;
            --accent: #f5c542;
            --accent2: #fb923c;
            --text: #fff8e7;
            --muted: #c2a878;
            --font-display: 'Chakra Petch', sans-serif;
            --font-body: 'Manrope', sans-serif;
            --glow: 0 0 20px rgba(245, 197, 66, 0.2);
            --glow-strong: 0 0 30px rgba(251, 146, 60, 0.4);
            --border-subtle: 1px solid rgba(194, 168, 120, 0.2);
        }

        * {
            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;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        a:hover {
            color: var(--accent2);
            text-shadow: 0 0 8px rgba(251, 146, 60, 0.5);
        }

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

        h1, h2, h3, .logo, .footer-logo {
            font-family: var(--font-display);
            font-weight: 700;
        }

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

        .btn-primary {
            background: linear-gradient(135deg, var(--accent2), var(--accent));
            color: var(--bg);
            border: none;
            box-shadow: var(--glow);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            box-shadow: var(--glow-strong);
            color: var(--bg);
            transform: translateY(-2px);
        }

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

        .btn-secondary:hover {
            background: rgba(245, 197, 66, 0.1);
            color: var(--accent);
            box-shadow: var(--glow);
            transform: translateY(-2px);
        }

        /* --- HEADER (Matches Homepage Identity) --- */
        header {
            background-color: rgba(21, 14, 4, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(245, 197, 66, 0.1);
        }

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

        .logo {
            font-size: 28px;
            color: var(--accent);
            text-transform: lowercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(245, 197, 66, 0.4);
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
        }

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

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

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 28px;
            cursor: pointer;
            padding: 5px;
        }

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

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

        .mobile-nav a {
            padding: 12px 0;
            color: var(--text);
            font-size: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .header-ctas-mobile {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px;
        }

        /* --- HERO BANNER --- */
        .hero-banner {
            position: relative;
            padding: 80px 20px 60px;
            text-align: center;
            background: radial-gradient(ellipse at top, var(--surface) 0%, var(--bg) 80%);
            border-bottom: var(--border-subtle);
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(251, 146, 60, 0.1) 0%, rgba(21, 14, 4, 0) 70%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .breadcrumb {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 20px;
            font-family: var(--font-display);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

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

        h1 {
            font-size: clamp(32px, 5vw, 48px);
            color: var(--text);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

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

        .chip {
            background: rgba(40, 28, 8, 0.8);
            border: 1px solid rgba(245, 197, 66, 0.3);
            color: var(--muted);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-family: var(--font-display);
            letter-spacing: 0.5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        /* --- ARTICLE CONTENT --- */
        .content-wrapper {
            max-width: 840px;
            padding: 60px 20px;
        }

        .intro-block {
            background: linear-gradient(180deg, rgba(40, 28, 8, 0.6) 0%, transparent 100%);
            border-left: 4px solid var(--accent);
            padding: 30px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 50px;
            font-size: 18px;
            color: var(--text);
            line-height: 1.8;
            box-shadow: -4px 0 15px rgba(245, 197, 66, 0.1);
        }

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

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

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

        .content-section p {
            margin-bottom: 20px;
            color: rgba(255, 248, 231, 0.85);
            font-size: 16px;
        }

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

        /* Lists Styling */
        .custom-list {
            list-style: none;
            margin: 24px 0;
            padding: 0;
            background: var(--surface);
            border: var(--border-subtle);
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .custom-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 16px;
            color: rgba(255, 248, 231, 0.9);
        }

        .custom-list li:last-child {
            margin-bottom: 0;
        }

        .custom-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent2);
            font-size: 18px;
            text-shadow: 0 0 8px var(--accent2);
        }

        /* --- FAQ SECTION --- */
        .faq-section {
            max-width: 840px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 32px;
            color: var(--text);
            margin-bottom: 40px;
            font-family: var(--font-display);
        }

        .faq-section h2 span {
            color: var(--accent);
        }

        details {
            background: var(--surface);
            border: var(--border-subtle);
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        details[open] {
            border-color: rgba(245, 197, 66, 0.5);
            box-shadow: var(--glow);
        }

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

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

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

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

        details p {
            padding: 0 24px 24px;
            color: rgba(255, 248, 231, 0.8);
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 10px;
            padding-top: 20px;
        }

        /* --- RELATED PAGES --- */
        .related-pages {
            max-width: 840px;
            margin: 0 auto 80px;
            padding: 40px;
            background: rgba(40, 28, 8, 0.4);
            border-radius: 12px;
            border: 1px dashed rgba(194, 168, 120, 0.3);
            text-align: center;
        }

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

        .related-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .related-grid a {
            background: var(--bg);
            border: 1px solid rgba(245, 197, 66, 0.2);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            color: var(--text);
            font-family: var(--font-display);
        }

        .related-grid a:hover {
            border-color: var(--accent);
            background: rgba(245, 197, 66, 0.1);
            color: var(--accent);
        }

        /* --- CTA SECTION --- */
        .cta-section {
            margin-bottom: 80px;
        }

        .cta-box {
            background: linear-gradient(45deg, var(--surface), #3a2608);
            border: 1px solid rgba(245, 197, 66, 0.3);
            border-radius: 16px;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at center, rgba(251, 146, 60, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

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

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

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        /* --- FOOTER (Matches Homepage Identity) --- */
        footer {
            background-color: #0d0903;
            border-top: 1px solid rgba(245, 197, 66, 0.1);
            padding: 60px 0 30px;
        }

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

        .footer-logo {
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(245, 197, 66, 0.2);
        }

        .footer-tagline {
            color: var(--muted);
            font-size: 14px;
            max-width: 400px;
            margin: 0 auto;
        }

        .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: rgba(255, 248, 231, 0.7);
            font-size: 14px;
        }

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

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

        /* --- MEDIA QUERIES --- */
        @media (max-width: 1024px) {
            .desktop-nav { display: none; }
            .header-ctas { display: none; }
            .mobile-menu-btn { display: block; }
        }

        @media (max-width: 768px) {
            h1 { font-size: 28px; }
            .intro-block { font-size: 16px; padding: 20px; }
            .content-section h2 { font-size: 24px; }
            .cta-box h2 { font-size: 28px; }
            .cta-buttons { flex-direction: column; }
            .cta-buttons .btn { width: 100%; }
            .footer-links { flex-direction: column; text-align: center; gap: 12px; }
        }

        @media (max-width: 390px) {
            .container { padding: 0 15px; }
            .hero-banner { padding: 60px 15px 40px; }
            .content-wrapper { padding: 40px 15px; }
            .meta-chips { flex-direction: column; align-items: center; }
            .chip { width: 100%; text-align: center; }
            summary { font-size: 16px; padding: 15px; }
            details p { padding: 0 15px 15px; }
            .related-pages { padding: 20px 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; }
