        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
            background: #0d0d0d;
            color: #e0e0e0;
            min-height: 100vh;
        }
        
        .main-wrapper {
            display: flex;
            min-height: 100vh;
        }
        
        .sidebar {
            width: 230px;
            background: #1e1e1e;
            padding: 10px 20px;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            border-right: 2px solid #FF8C00;
        }
        
        .sidebar-title {
            font-size: 14px;
            font-weight: 600;
            color: #FF8C00;
            text-transform: uppercase;
            margin-top: 10px;
            margin-bottom: 5px;
        }
        
        .sidebar-links {
            list-style: none;
        }
        
        .sidebar-links li {
            margin-bottom: 5px;
        }
        
        .sidebar-links a {
            display: block;
            padding: 2px 12px;
            color: #aaa;
            text-decoration: none;
            border-left: 3px solid transparent;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 13px;
        }
        
        .sidebar-links a:hover {
            background: #2a2a2a;
            color: #FF8C00;
            border-left-color: #FF8C00;
        }
        
        .sidebar-links a.active {
            background: #2a2a2a;
            color: #FF8C00;
            border-left-color: #FF8C00;
            font-weight: 600;
        }
        
        .content {
            margin-left: 240px;
            margin-right: 10px;
            flex: 1;
            padding: 10px;
        }
        
        .header {
            background: #1e1e1e;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
            text-align: center;
            border-top: 3px solid #FF8C00;
        }
        
        .header h1 {
            color: #FF8C00;
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .header p {
            color: #aaa;
            font-size: 16px;
        }
        
        .header a {
            color: #FF8C00;
            text-decoration: none;
            font-weight: bold;
        }
        
        .header a:hover {
            text-decoration: underline;
        }
        
        .section {
            background: #1e1e1e;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
            border-top: 3px solid #FF8C00;
        }
        
        .section h2 {
            color: #FF8C00;
            font-size: 2em;
            margin-bottom: 20px;
            border-bottom: 3px solid #FF8C00;
            padding-bottom: 10px;
        }
        
        .api-item {
            background: #262626;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #FF8C00;
        }
        
        .api-item h3 {
            color: #FF8C00;
            font-size: 1.3em;
            margin-bottom: 10px;
        }
        
        .api-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .method-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .method-get {
            background: #dbeafe;
            color: #1e40af;
        }
        
        .method-post {
            background: #dcfce7;
            color: #166534;
        }
        
        .endpoint-path {
            font-family: 'Courier New', monospace;
            background: #2a2a2a;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 13px;
            color: #FF8C00;
            border: 1px solid #FF8C00;
        }
        
        .description {
            color: #c0c0c0;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .code-tabs {
            margin-top: 15px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
        }
        
        .tabs {
            display: flex;
            background: #2a2a2a;
            border-bottom: 1px solid #3a3a3a;
        }
        
        .tab-button {
            flex: 1;
            padding: 12px;
            background: #2a2a2a;
            border: none;
            cursor: pointer;
            font-weight: 600;
            color: #888;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        
        .tab-button.active {
            background: #1e1e1e;
            color: #FF8C00;
            border-bottom-color: #FF8C00;
        }
        
        .tab-button:hover {
            background: #1e1e1e;
            color: #FF8C00;
        }
        
        .tab-content {
            display: none;
            padding: 0;
            position: relative;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .code-block {
            background: #1e1e1e;
            color: #d4d4d4;
            padding: 15px 50px 15px 15px;
            font-family: 'Courier New', monospace;
            font-size: 13px;
            overflow-x: auto;
            position: relative;
            white-space: pre-wrap;
            word-wrap: break-word;
            line-height: 1.5;
        }
        
        .copy-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 6px 12px;
            background: #FF8C00;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background: #E07B00;
        }
        
        .params-list {
            margin-top: 15px;
            padding: 15px;
            background: #262626;
            border-radius: 8px;
            border: 1px solid #3a3a3a;
        }
        
        .params-list h4 {
            color: #FF8C00;
            margin-bottom: 10px;
        }
        
        .params-list ul {
            list-style: none;
            padding-left: 0;
        }
        
        .params-list li {
            padding: 5px 0;
            color: #aaa;
            font-size: 13px;
        }
        
        .param-name {
            font-family: 'Courier New', monospace;
            color: #FF8C00;
            font-weight: 600;
        }
        
        .return-to-home {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: #1e1e1e;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border-top: 3px solid #FF8C00;
        }
        
        .return-to-home a {
            color: #FF8C00;
            font-size: 16px;
            text-decoration: none;
            font-weight: bold;
        }
        
        .return-to-home a:hover {
            text-decoration: underline;
        }

        /* Hamburger Menu Styles */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: #1a1a1a;
            border: 2px solid #FF8C00;
            padding: 10px;
            border-radius: 30px;
            width: auto;
            height: auto;
            justify-content: center;
            align-items: center;
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 101;
            box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
            visibility: hidden;
            gap: 5px;
        }

        .hamburger-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger-menu span {
            width: 30px;
            height: 2px;
            background-color: #FF8C00;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger-text {
            color: #FF8C00;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }



        .sidebar-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #FF8C00;
            font-size: 28px;
            cursor: pointer;
            padding: 5px 10px;
            z-index: 102;
            display: none;
        }

        .sidebar-close:hover {
            opacity: 0.8;
        }

        /* Sidebar Overlay for Mobile */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        .sidebar-overlay.active {
            display: block;
        }

        /* Desktop - hide hamburger menu */
        @media (min-width: 769px) {
            .hamburger-menu {
                display: none !important;
                visibility: hidden !important;
            }

            .sidebar-close {
                display: none !important;
            }

            .sidebar-overlay {
                display: none !important;
            }
        }

        /* Mobile Media Queries */
        @media (max-width: 768px) {
            .hamburger-menu {
                visibility: visible;
                display: flex;
            }

            .sidebar-close {
                display: block;
            }

            .main-wrapper {
                display: block;
                position: relative;
            }

            .sidebar {
                position: fixed;
                left: -100%;
                top: 0;
                width: 100%;
                height: 100vh;
                background-color: #1e1e1e;
                transition: left 0.3s ease;
                z-index: 100;
                text-align: center;
                overflow-y: auto;
                padding: 50px 20px 20px 20px;
                border-right: 2px solid #FF8C00;
                border-bottom: none;
            }

            .sidebar.active {
                left: 0;
            }

            .content {
                margin-left: 0;
                margin-right: 0;
                padding: 15px;
                position: relative;
                z-index: 1;
            }

            .header {
                padding: 20px 15px;
                margin-bottom: 20px;
            }

            .header h1 {
                font-size: 1.8em;
            }

            .section {
                padding: 20px 15px;
                margin-bottom: 20px;
            }

            .section h2 {
                font-size: 1.4em;
            }

            .api-item {
                padding: 15px;
                margin-bottom: 15px;
            }

            .api-item h3 {
                font-size: 1.1em;
            }

            .api-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .endpoint-path {
                font-size: 0.8em;
                padding: 8px;
                word-break: break-all;
            }

            .tabs {
                flex-wrap: wrap;
            }

            .tab-button {
                padding: 10px;
                font-size: 12px;
            }

            .code-block {
                padding: 12px 40px 12px 12px;
                font-size: 0.85em;
                overflow-x: auto;
            }

            .copy-btn {
                padding: 5px 10px;
                font-size: 11px;
                top: 8px;
                right: 8px;
            }

            .params-list {
                padding: 12px;
                margin-top: 10px;
            }

            .params-list li {
                font-size: 12px;
            }

            .method-badge {
                padding: 3px 8px;
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.5em;
            }

            .section h2 {
                font-size: 1.2em;
            }

            .header p {
                font-size: 14px;
            }

            .api-item h3 {
                font-size: 1em;
            }

            .sidebar-title {
                font-size: 1em;
            }

            .sidebar-links a {
                font-size: 0.85em;
                padding: 5px 12px;
            }

            .description {
                font-size: 13px;
            }

            .endpoint-path {
                font-size: 0.75em;
                padding: 8px;
                word-break: break-all;
            }

            .code-block {
                font-size: 0.75em;
            }

            .hamburger-menu {
                bottom: 30px;
                right: 20px;
            }

            .sidebar {
                padding: 40px 15px 20px 15px;
            }

            .sidebar-close {
                top: 10px;
                right: 10px;
                font-size: 24px;
            }
        }

		::-webkit-scrollbar {
			width: 12px;
		}

		::-webkit-scrollbar-thumb {
			background-color: #ff9900;
			border-radius: 10px;
		}

		::-webkit-scrollbar-track {
			background-color: #f1f1f1;
			border-radius: 10px;
		}

		::-webkit-scrollbar-thumb:hover {
			background-color: #ff9200;
		}


