        :root {
            --green: #5a9a2f;
            --green-dim: #4a8526;
            --green-light: #8BC34A;
            --green-glow: rgba(90, 154, 47, 0.08);
            --bg-deep: #f4f7f2;
            --bg: #f9faf8;
            --bg-card: #ffffff;
            --bg-code: #f0f3ed;
            --border-subtle: rgba(0, 0, 0, 0.06);
            --border: rgba(90, 154, 47, 0.15);
            --text: #3a4a3a;
            --text-dim: #6b7e6b;
            --text-bright: #1a2e1a;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-deep);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3, h4 {
            font-family: 'Bricolage Grotesque', sans-serif;
            color: var(--text-bright);
            letter-spacing: -0.02em;
        }
        a { color: var(--green); text-decoration: none; }
        a:hover { text-decoration: underline; }

        /* NAV */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 1rem 2rem;
            display: flex; justify-content: space-between; align-items: center;
            background: rgba(249, 250, 248, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
        }
        nav .logo-area { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
        nav .logo-area img { width: 36px; height: 36px; border-radius: 8px; }
        nav .logo-area span { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text-bright); }
        nav ul { list-style: none; display: flex; gap: 2rem; }
        nav a { color: var(--text-dim); font-size: 0.9rem; font-weight: 500; transition: color 0.3s; text-decoration: none; }
        nav a:hover { color: var(--green); text-decoration: none; }

        /* LAYOUT */
        .docs-layout {
            display: grid;
            grid-template-columns: 260px 1fr;
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 5rem;
            min-height: 100vh;
        }

        /* SIDEBAR */
        .sidebar {
            position: sticky;
            top: 5rem;
            height: calc(100vh - 5rem);
            overflow-y: auto;
            padding: 2rem 1.5rem 2rem 2rem;
            border-right: 1px solid var(--border-subtle);
            scrollbar-width: thin;
            scrollbar-color: var(--green-light) transparent;
        }
        .sidebar h4 {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-dim);
            margin-bottom: 0.6rem;
            margin-top: 1.5rem;
            font-weight: 600;
        }
        .sidebar h4:first-child { margin-top: 0; }
        .sidebar a {
            display: block;
            padding: 0.3rem 0.75rem;
            margin: 0.1rem 0;
            border-radius: 6px;
            font-size: 0.85rem;
            color: var(--text-dim);
            transition: all 0.2s;
        }
        .sidebar a:hover {
            background: var(--green-glow);
            color: var(--green);
            text-decoration: none;
        }
        .sidebar a.active {
            background: var(--green-glow);
            color: var(--green);
            font-weight: 600;
        }

        /* CONTENT */
        .docs-content {
            padding: 2.5rem 3rem 4rem;
            max-width: 820px;
        }
        .docs-content h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .docs-content .subtitle {
            color: var(--text-dim);
            font-size: 1.05rem;
            margin-bottom: 3rem;
            font-weight: 300;
        }
        .docs-content h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-top: 3.5rem;
            margin-bottom: 1rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-subtle);
        }
        .docs-content h2:first-of-type { border-top: none; padding-top: 0; }
        .docs-content h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        .docs-content p {
            margin-bottom: 1rem;
        }
        .docs-content ul, .docs-content ol {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }
        .docs-content li {
            margin-bottom: 0.4rem;
        }

        /* CODE */
        code {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.82em;
            background: var(--bg-code);
            padding: 0.15em 0.4em;
            border-radius: 4px;
            color: var(--green-dim);
        }
        pre {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            overflow-x: auto;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
        }
        pre code {
            background: none;
            padding: 0;
            font-size: 0.82rem;
            color: var(--text);
            line-height: 1.6;
			white-space: pre-line;
        }

        /* INFO BOXES */
        .info-box {
            border-radius: 10px;
            padding: 0.75rem 1.1rem;
            margin-bottom: 1.5rem;
            font-size: 0.88rem;
            line-height: 1.55;
        }
        .info-box.tip {
            background: rgba(90, 154, 47, 0.06);
            border-left: 3px solid var(--green);
        }
        .info-box.warn {
            background: rgba(220, 160, 40, 0.08);
            border-left: 3px solid #d4a020;
        }
        .info-box.note {
            background: rgba(60, 130, 200, 0.06);
            border-left: 3px solid #3c82c8;
        }
        .info-box strong { margin-right: 0.4rem; }

        /* SCREENSHOT PLACEHOLDER */
        .screenshot-placeholder {
            background: var(--bg-card);
            border: 2px dashed rgba(90, 154, 47, 0.25);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--text-dim);
            font-size: 0.85rem;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;			
        }
        .screenshot-placeholder .ph-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 0.5rem;
            opacity: 0.5;
        }
        .screenshot-placeholder img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            cursor: zoom-in;
        }

        /* LIGHTBOX */
        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
            cursor: zoom-out;
        }
        .lightbox.active {
            opacity: 1;
            pointer-events: auto;
        }
        .lightbox img {
            max-width: 92vw;
            max-height: 90vh;
            border-radius: 12px;
            box-shadow: 0 30px 100px rgba(0,0,0,0.5);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .lightbox.active img {
            transform: scale(1);
        }
        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            border: none;
            background: rgba(255,255,255,0.12);
            color: #fff;
            font-size: 1.5rem;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .lightbox-close:hover {
            background: rgba(255,255,255,0.25);
        }

        /* TABLE */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            line-height: 1.4;
        }
        th, td {
            padding: 0.35rem 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }
        th {
            font-weight: 600;
            color: var(--text-bright);
            background: var(--bg-code);
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.4rem 0.75rem;
        }
        td code { font-size: 0.78rem; }

        /* FOOTER */
        footer {
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
            color: var(--text-dim);
            font-size: 0.85rem;
        }
        footer .footer-logo { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 1rem; opacity: 0.6; }
        footer .heart { color: var(--green); }

        /* MOBILE */
        @media (max-width: 900px) {
            nav ul { display: none; }
            .docs-layout { grid-template-columns: 1fr; }
            .sidebar {
                position: relative;
                top: 0;
                height: auto;
                border-right: none;
                border-bottom: 1px solid var(--border-subtle);
                padding: 1.5rem;
            }
            .docs-content { padding: 2rem 1.5rem 3rem; }
        }

pre + .copy-btn {
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}