
        :root {
            --primary: #00FF88;
            --secondary: #0A1628;
            --accent: #FF6B35;
            --bg-main: #0F1419;
            --bg-section: #1A1F2E;
            --bg-card: #252B3A;
            --text: #E8EAED;
            --text-muted: #9AA0A6;
            --border: #3C4043;
            --shadow: rgba(0, 255, 136, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            background-color: var(--bg-main);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
        }

        .es0fw-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 16px 0;
        }

        .es0fw-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 24px;
        }

        .es0fw-logo img {
            height: 40px;
            width: auto;
        }

        .es0fw-nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .es0fw-nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .es0fw-nav-link:hover {
            color: var(--primary);
        }

        .es0fw-nav-link.es0fw-active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
        }

        .es0fw-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 24px;
            cursor: pointer;
        }

        .es0fw-main {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        .es0fw-docs-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            max-width: 1400px;
            margin: 0 auto;
            gap: 48px;
            padding: 48px 24px;
        }

        .es0fw-sidebar {
            background: var(--bg-section);
            border-radius: 16px;
            padding: 32px;
            height: fit-content;
            position: sticky;
            top: 120px;
            border: 1px solid var(--border);
        }

        .es0fw-sidebar-title {
            font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .es0fw-sidebar-nav {
            list-style: none;
        }

        .es0fw-sidebar-section {
            margin-bottom: 24px;
        }

        .es0fw-sidebar-section-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .es0fw-sidebar-item {
            margin-bottom: 8px;
        }

        .es0fw-sidebar-link {
            color: var(--text);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            display: block;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .es0fw-sidebar-link:hover {
            background: var(--bg-card);
            color: var(--primary);
            transform: translateX(4px);
        }

        .es0fw-sidebar-link.es0fw-active {
            background: rgba(0, 255, 136, 0.1);
            color: var(--primary);
            border-left: 3px solid var(--primary);
        }

        .es0fw-content {
            background: var(--bg-section);
            border-radius: 16px;
            padding: 48px;
            border: 1px solid var(--border);
        }

        .es0fw-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 32px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .es0fw-breadcrumb-link {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .es0fw-breadcrumb-link:hover {
            color: var(--primary);
        }

        .es0fw-page-title {
            font-size: clamp(2rem, 4vw + 1rem, 3rem);
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .es0fw-page-subtitle {
            font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
            color: var(--text-muted);
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .es0fw-doc-section {
            margin-bottom: 64px;
        }

        .es0fw-section-title {
            font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
            font-weight: 700;
            color: var(--text);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .es0fw-section-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .es0fw-api-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .es0fw-api-card {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .es0fw-api-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px var(--shadow);
            border-color: var(--primary);
        }

        .es0fw-api-method {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .es0fw-method-get {
            background: rgba(0, 255, 136, 0.2);
            color: var(--primary);
        }

        .es0fw-method-post {
            background: rgba(255, 107, 53, 0.2);
            color: var(--accent);
        }

        .es0fw-api-endpoint {
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: var(--text);
            margin-bottom: 12px;
            background: var(--bg-main);
            padding: 8px 12px;
            border-radius: 6px;
            border-left: 3px solid var(--primary);
        }

        .es0fw-api-description {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        .es0fw-code-block {
            background: var(--bg-main);
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
            border: 1px solid var(--border);
            position: relative;
            overflow-x: auto;
        }

        .es0fw-code-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }

        .es0fw-code-language {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            font-weight: 600;
        }

        .es0fw-copy-btn {
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .es0fw-copy-btn:hover {
            background: var(--primary);
            color: var(--bg-main);
        }

        .es0fw-code {
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.5;
            color: var(--text);
            white-space: pre-wrap;
        }

        .es0fw-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }

        .es0fw-feature-card {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .es0fw-feature-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px var(--shadow);
        }

        .es0fw-feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
        }

        .es0fw-feature-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
        }

        .es0fw-feature-description {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        .es0fw-table-container {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .es0fw-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
        }

        .es0fw-table th {
            background: var(--bg-main);
            color: var(--text);
            padding: 16px;
            text-align: left;
            font-weight: 600;
            border-bottom: 1px solid var(--border);
        }

        .es0fw-table td {
            padding: 16px;
            border-bottom: 1px solid var(--border);
            color: var(--text-muted);
        }

        .es0fw-table tr:hover {
            background: rgba(0, 255, 136, 0.05);
        }

        .es0fw-alert {
            padding: 16px 20px;
            border-radius: 8px;
            margin: 24px 0;
            border-left: 4px solid;
        }

        .es0fw-alert-info {
            background: rgba(0, 255, 136, 0.1);
            border-color: var(--primary);
            color: var(--text);
        }

        .es0fw-alert-warning {
            background: rgba(255, 107, 53, 0.1);
            border-color: var(--accent);
            color: var(--text);
        }

        .es0fw-toc {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 32px;
            border: 1px solid var(--border);
        }

        .es0fw-toc-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 16px;
        }

        .es0fw-toc-list {
            list-style: none;
        }

        .es0fw-toc-item {
            margin-bottom: 8px;
        }

        .es0fw-toc-link {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .es0fw-toc-link:hover {
            color: var(--primary);
        }

        .es0fw-footer {
            background: var(--bg-section);
            border-top: 1px solid var(--border);
            padding: 48px 0 32px;
            margin-top: 64px;
        }

        .es0fw-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
        }

        .es0fw-footer-brand {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

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

        @media (max-width: 1024px) {
            .es0fw-docs-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .es0fw-sidebar {
                position: static;
                order: 2;
            }

            .es0fw-content {
                order: 1;
                padding: 32px;
            }
        }

        @media (max-width: 768px) {
            .es0fw-nav-menu {
                display: none;
            }

            .es0fw-mobile-toggle {
                display: block;
            }

            .es0fw-docs-layout {
                padding: 24px 16px;
            }

            .es0fw-content {
                padding: 24px;
            }

            .es0fw-sidebar {
                padding: 24px;
            }

            .es0fw-api-grid {
                grid-template-columns: 1fr;
            }

            .es0fw-feature-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .es0fw-nav-container {
                padding: 0 16px;
            }

            .es0fw-page-title {
                font-size: 1.8rem;
            }

            .es0fw-docs-layout {
                padding: 16px 12px;
            }

            .es0fw-content {
                padding: 20px;
            }
        }
    