        :root {
            --bg-main: #0b0f19;
            --bg-card: #131a26;
            --primary: #10b981;
            --primary-glow: rgba(16, 185, 129, 0.15);
            --error: #ef4444;
            --text-pure: #ffffff;
            --text-muted: #9ca3af;
            --text-dark: #6b7280;
            --border: #1f2937;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-pure);
            line-height: 1.7;
            letter-spacing: -0.01em;
            -webkit-font-smoothing: antialiased;
        }
        header {
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            background: rgba(11, 15, 25, 0.8);
            backdrop-filter: blur(12px);
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 0.75rem;
        }
        .logo-img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }
        .logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: var(--text-pure);
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            margin-left: 2rem;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }
        .github-icon-link {
            color: var(--text-muted);
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }
        .github-icon-link:hover {
            color: var(--text-pure);
        }

        .faq-hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem 3rem;
            text-align: center;
        }
        .faq-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            background: linear-gradient(to bottom right, #ffffff 40%, #9ca3af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .faq-hero p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Pure CSS Accordion Layout */
        .faq-accordion-wrapper {
            max-width: 860px;
            margin: 0 auto;
            padding: 1rem 2rem 8rem;
        }
        details {
            background-color: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color 0.2s;
        }
        details[open] {
            border-color: rgba(16, 185, 129, 0.4);
        }
        summary {
            padding: 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-pure);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }
        summary::-webkit-details-marker {
            display: none;
        }
        /* Chevron Arrow Indicator */
        summary::after {
            content: "";
            width: 8px;
            height: 8px;
            border-right: 2px solid var(--text-muted);
            border-bottom: 2px solid var(--text-muted);
            transform: rotate(45deg);
            transition: transform 0.2s, border-color 0.2s;
            margin-right: 0.25rem;
        }
        details[open] summary::after {
            transform: rotate(-135deg);
            border-color: var(--primary);
        }
        summary:hover {
            background-color: rgba(255, 255, 255, 0.01);
        }
        
        .faq-answer-panel {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #d1d5db;
            font-size: 0.98rem;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            padding-top: 1.25rem;
        }
        .faq-answer-panel p {
            margin-bottom: 1rem;
        }
        .faq-answer-panel p:last-child {
            margin-bottom: 0;
        }
        
        /* Monospace Code Configuration */
        code, pre {
            font-family: "Fira Code", Consolas, Monaco, monospace;
            font-size: 0.88rem;
            background-color: #070a10;
            border: 1px solid var(--border);
            border-radius: 6px;
        }
        code {
            padding: 0.15rem 0.4rem;
            color: #34d399;
        }
        pre {
            padding: 1.25rem;
            margin: 1rem 0;
            overflow-x: auto;
            color: #a7f3d0;
            line-height: 1.5;
        }

        footer {
            border-top: 1px solid var(--border);
            background-color: #070a10;
            color: var(--text-dark);
            padding: 5rem 2rem 3rem;
            font-size: 0.9rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 4rem;
            padding-bottom: 4rem;
        }
        .footer-brand h4 {
            color: var(--text-pure);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .footer-brand p {
            max-width: 260px;
            line-height: 1.6;
        }
        .footer-links h5 {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--text-pure);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.02);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem;
            }
            .nav-links {
                display: none;
            }
            .faq-hero h1 {
                font-size: 2.1rem;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
