:root {
            --bg: #0c0c0e;
            --surface: #1a1a20;
            --surface-hover: #23232c;
            --accent: #ffd700;
            --accent-hover: #ffea5c;
            --accent2: #ff4d00;
            --text: #f8f8fa;
            --muted: #9a9aa5;
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Sora', sans-serif;
            --container-w: 1200px;
            --header-h: 70px;
            --speed-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
        }

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

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

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

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

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: normal;
            letter-spacing: 1px;
            line-height: 1.1;
        }

        /* HEADER STYLES */
        header {
            background-color: rgba(12, 12, 14, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }

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

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

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

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

        .nav-links a {
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* HERO BANNER */
        .hero {
            margin-top: var(--header-h);
            padding: 80px 0 60px;
            position: relative;
            background: linear-gradient(to bottom, rgba(26, 26, 32, 0.8), var(--bg)),
                        repeating-linear-gradient(45deg, #0c0c0e 0px, #0c0c0e 4px, #111 4px, #111 8px);
            border-bottom: 2px solid var(--accent2);
            text-align: center;
        }

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

        .breadcrumb {
            font-size: 0.85rem;
            color: var(--muted);
            margin-bottom: 20px;
            display: inline-block;
            background: rgba(0,0,0,0.5);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .hero h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            background: var(--speed-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            padding: 0 10px;
            text-shadow: 0 10px 30px rgba(255, 77, 0, 0.2);
        }

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

        .chip {
            background: var(--surface);
            color: var(--text);
            font-size: 0.8rem;
            padding: 6px 14px;
            border-radius: 4px;
            border-left: 3px solid var(--accent);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

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

        .article-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .intro-block {
            background: var(--surface);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.15);
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .intro-block::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-family: var(--font-display);
            font-size: 5rem;
            color: rgba(255, 215, 0, 0.2);
            line-height: 1;
        }

        .intro-block p {
            font-size: 1.1rem;
            color: var(--text);
            position: relative;
            z-index: 2;
        }

        .section-block h2 {
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 15px;
        }

        .section-block h2::before {
            content: '';
            display: block;
            width: 12px;
            height: 24px;
            background: var(--speed-gradient);
            transform: skewX(-15deg);
        }

        .section-block p {
            margin-bottom: 20px;
            color: #d1d1d6;
            font-size: 1rem;
        }

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

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

        /* VISUAL CHECKLIST (Step by step) */
        .step-list {
            list-style: none;
            margin: 30px 0;
            counter-reset: qris-step;
        }

        .step-list li {
            position: relative;
            padding: 20px 20px 20px 70px;
            background: var(--surface);
            margin-bottom: 15px;
            border-radius: 8px;
            border-left: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .step-list li:hover {
            border-left-color: var(--accent2);
            transform: translateX(5px);
            background: var(--surface-hover);
        }

        .step-list li::before {
            counter-increment: qris-step;
            content: counter(qris-step);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%) skewX(-10deg);
            width: 40px;
            height: 40px;
            background: var(--speed-gradient);
            color: var(--bg);
            font-family: var(--font-display);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
        }

        /* TIPS BOX */
        .tips-box {
            background: rgba(255, 77, 0, 0.05);
            border: 1px solid rgba(255, 77, 0, 0.2);
            padding: 25px;
            border-radius: 8px;
            margin-top: 20px;
        }

        /* FAQ SECTION */
        .faq-wrapper {
            margin-top: 20px;
        }

        details {
            background: var(--surface);
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        details[open] {
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

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

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

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

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

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

        /* RELATED PAGES BLOCK */
        .related-pages {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .related-pages h3 {
            font-size: 2rem;
            color: var(--text);
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

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

        .related-card {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: var(--surface);
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.05);
            text-transform: uppercase;
            font-family: var(--font-display);
            font-size: 1.2rem;
            letter-spacing: 1px;
            color: var(--text);
            border-bottom: none; /* reset specific a styling */
        }

        .related-card:hover {
            background: var(--surface-hover);
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
        }

        /* CTA SECTION */
        .cta-section {
            margin: 60px 0 20px;
            background: linear-gradient(45deg, var(--surface) 0%, #111 100%);
            padding: 50px 30px;
            border-radius: 16px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 77, 0, 0.2);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.03) 10px, rgba(255, 215, 0, 0.03) 20px);
            pointer-events: none;
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h3 {
            font-size: 2.5rem;
            color: var(--text);
            margin-bottom: 15px;
        }

        .cta-section p {
            color: var(--muted);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 35px;
            font-family: var(--font-display);
            font-size: 1.3rem;
            letter-spacing: 1px;
            border-radius: 4px;
            text-transform: uppercase;
            min-width: 180px;
            min-height: 50px;
            transform: skewX(-5deg);
            transition: all 0.3s ease;
            border-bottom: none; /* reset */
        }

        .btn span {
            transform: skewX(5deg);
        }

        .btn-primary {
            background: var(--speed-gradient);
            color: var(--bg) !important;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
            transform: skewX(-5deg) translateY(-2px);
            color: var(--bg) !important;
        }

        .btn-outline {
            background: transparent;
            color: var(--accent2) !important;
            border: 2px solid var(--accent2);
        }

        .btn-outline:hover {
            background: rgba(255, 77, 0, 0.1);
            color: var(--accent2) !important;
            transform: skewX(-5deg) translateY(-2px);
        }

        /* FOOTER STYLES */
        footer {
            background-color: #050505;
            padding: 60px 0 20px;
            border-top: 2px solid #1a1a20;
            margin-top: 40px;
        }

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

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

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }

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

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

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a1a20;
            color: #555;
            font-size: 0.8rem;
        }

        /* MEDIA QUERIES */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3rem; }
            .footer-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: var(--header-h);
                left: 0;
                width: 100%;
                background: var(--surface);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-bottom: 1px solid var(--accent);
            }
            .nav-links.active { display: flex; }
            .menu-toggle { display: block; }

            .hero h1 { font-size: 2.5rem; }
            .hero { padding: 60px 0 40px; }

            .intro-block::before { font-size: 4rem; top: -5px; }
            .section-block h2 { font-size: 1.8rem; }

            .btn-group { flex-direction: column; width: 100%; }
            .btn { width: 100%; }
        }

        @media (max-width: 390px) {
            .hero h1 { font-size: 2rem; }
            .meta-chips { flex-direction: column; align-items: center; }
            .chip { width: 100%; justify-content: center; }
            .intro-block { padding: 20px; }
            .step-list li { padding: 15px 15px 15px 55px; }
            .step-list li::before { width: 30px; height: 30px; font-size: 1.2rem; left: 12px; }
            .related-grid { grid-template-columns: 1fr; }
            .cta-section { padding: 40px 20px; }
            .cta-section h3 { font-size: 2rem; }
        }


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