:root {
            --bg: #060f0a;
            --surface: #0d2015;
            --surface-light: #163322;
            --surface-lighter: #1e452f;
            --accent: #fbbf24;
            --accent-hover: #f59e0b;
            --accent2: #34d399;
            --text: #f0fdf4;
            --muted: #8fa898;
            --font-display: 'Oswald', sans-serif;
            --font-body: 'Fira Sans', sans-serif;
            --container-w: 1024px;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 16px;
        }

        * {
            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;
            -webkit-font-smoothing: antialiased;
            background-image: radial-gradient(circle at 50% 0%, rgba(13, 32, 21, 0.8) 0%, rgba(6, 15, 10, 1) 100%);
            background-attachment: fixed;
        }

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

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        /* HEADER STYLES (Copied verbatim structure, styled to match family) */
        header {
            background-color: var(--surface);
            border-bottom: 1px solid var(--surface-light);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header .container {
            height: 70px;
        }

        .flex { display: flex; }
        .justify-between { justify-content: space-between; }
        .items-center { align-items: center; }

        .logo {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .nav-links a {
            color: var(--text);
            font-family: var(--font-display);
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

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

        .mobile-menu {
            display: none;
            background-color: var(--surface-light);
            padding: 10px 20px;
            flex-direction: column;
            gap: 15px;
            border-bottom: 1px solid var(--accent2);
        }

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

        .mobile-menu a {
            color: var(--text);
            font-family: var(--font-display);
            font-size: 16px;
            text-transform: uppercase;
            padding: 10px 0;
            border-bottom: 1px solid rgba(143, 168, 152, 0.2);
        }

        /* PAGE HERO */
        .page-hero {
            padding: 60px 0 40px;
            text-align: center;
            background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, rgba(6, 15, 10, 0) 100%);
            position: relative;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%; left: 50%;
            transform: translateX(-50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .breadcrumb {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 20px;
            display: inline-block;
            background: var(--surface);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--surface-light);
        }

        .page-hero h1 {
            font-size: 32px;
            color: var(--text);
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

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

        .chip {
            font-size: 12px;
            font-weight: 500;
            color: var(--bg);
            background-color: var(--accent2);
            padding: 4px 12px;
            border-radius: var(--radius-sm);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* MAIN CONTENT */
        main {
            padding: 20px 0 80px;
        }

        .content-wrapper {
            background: var(--surface);
            border: 1px solid var(--surface-light);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
        }

        /* Tiger-eye decorative strip */
        .content-wrapper::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
        }

        .intro-quote {
            font-size: 16px;
            color: var(--text);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            background: var(--surface-light);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin-bottom: 40px;
            font-style: italic;
        }

        .guide-section {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px dashed var(--surface-light);
        }

        .guide-section:last-of-type {
            border-bottom: none;
            padding-bottom: 20px;
        }

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

        .guide-section h2::before {
            content: '❖';
            color: var(--accent2);
            font-size: 18px;
        }

        .guide-section p {
            color: var(--muted);
            margin-bottom: 16px;
            font-size: 15px;
        }

        .guide-section p a {
            color: var(--accent2);
            font-weight: 500;
            border-bottom: 1px solid transparent;
        }

        .guide-section p a:hover {
            border-bottom-color: var(--accent2);
        }

        .guide-list {
            list-style: none;
            margin: 20px 0;
            padding: 0;
            background: rgba(22, 51, 34, 0.4);
            border-radius: var(--radius-md);
            padding: 16px;
        }

        .guide-list li {
            color: var(--text);
            margin-bottom: 12px;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
        }

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

        .guide-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--bg);
            background: var(--accent2);
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
        }

        /* FAQ ACCORDION */
        .faq-wrapper {
            margin-top: 60px;
        }

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

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

        details {
            background: var(--surface-light);
            border: 1px solid var(--surface-lighter);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        details:hover {
            border-color: var(--muted);
        }

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

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

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

        details[open] {
            background: var(--surface);
            border-color: var(--accent2);
        }

        details[open] summary {
            color: var(--accent);
            border-bottom: 1px solid var(--surface-light);
        }

        details[open] summary::after {
            content: '−';
            transform: rotate(180deg);
        }

        details p {
            padding: 20px;
            color: var(--muted);
            margin: 0;
            font-size: 15px;
            line-height: 1.7;
        }

        /* RELATED PAGES */
        .related-pages {
            margin-top: 60px;
            background: var(--surface-light);
            padding: 30px;
            border-radius: var(--radius-lg);
            text-align: center;
        }

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

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

        .related-grid a {
            background: var(--surface);
            border: 1px solid var(--surface-lighter);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            color: var(--muted);
            transition: all 0.3s ease;
        }

        .related-grid a:hover {
            background: var(--accent);
            color: var(--bg);
            border-color: var(--accent);
        }

        /* CTA BLOCK */
        .cta-block {
            margin-top: 60px;
            background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface) 100%);
            border: 1px solid var(--accent);
            border-radius: var(--radius-lg);
            padding: 40px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-block::after {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 150px; height: 150px;
            background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-block h3 {
            font-size: 26px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .cta-block p {
            color: var(--text);
            margin-bottom: 24px;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: var(--radius-sm);
            min-height: 44px;
            transition: all 0.3s ease;
        }

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

        .btn-primary:hover {
            background-color: transparent;
            color: var(--accent);
        }

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

        .btn-secondary:hover {
            border-color: var(--accent2);
            color: var(--accent2);
        }

        /* FOOTER STYLES (Copied verbatim structure) */
        footer {
            background-color: #040a07;
            padding: 60px 0 20px;
            border-top: 2px solid var(--surface-light);
        }

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

        .footer-brand .logo {
            font-size: 28px;
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-tagline {
            color: var(--muted);
            font-size: 14px;
        }

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

        .footer-links h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--accent2);
        }

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

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

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

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

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--surface-light);
            color: var(--muted);
            font-size: 13px;
        }

        /* MEDIA QUERIES */
        @media (min-width: 768px) {
            .page-hero h1 { font-size: 42px; }
            .content-wrapper { padding: 40px; }
            .intro-quote { font-size: 18px; padding: 24px 30px; }
            .guide-section h2 { font-size: 26px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            summary { font-size: 18px; }
        }

        @media (min-width: 1024px) {
            .nav-links { display: flex; }
            .menu-toggle { display: none; }
            .mobile-menu { display: none !important; }
            .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
            .page-hero { padding: 80px 0 60px; }
            .page-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; }
