* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a3e 50%, #0a0a0a 100%);
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .container {
            position: relative;
            z-index: 2;
            display: flex;
            min-height: 100vh;
        }

        .sidebar {
            width: 300px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
			overflow-x: hidden;
        }

        .sidebar-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }

        .logo {
            margin-bottom: 20px;
            text-align: center;
        }

        .logo img {
            height: 60px;
            max-width: 100%;;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
        }

        .sidebar-content {
            flex: 1;
            padding: 30px 0;
            overflow-y: auto;
			overflow-x: hidden;
        }

        .sidebar-footer {
            padding: 20px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            flex-shrink: 0;
        }

        .version {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .nav-section {
            margin-bottom: 25px;
        }

        .nav-title {
            padding: 0 30px 10px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(0, 212, 255, 0.8);
            font-weight: 600;
        }

        .nav-item {
            display: block;
            padding: 12px 30px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            cursor: pointer;
        }

        .nav-item:hover, .nav-item.active {
            background: rgba(0, 212, 255, 0.1);
            border-left-color: #00d4ff;
            color: #ffffff;
            transform: translateX(5px);
        }

        .main-content {
            flex: 1;
            margin-left: 300px;
            padding: 40px;
            max-width: calc(100% - 300px);
        }

        .content-section {
            display: none;
            animation: fadeInUp 0.6s ease-out;
        }

        .content-section.active {
            display: block;
        }

        .doc-header {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
        }

        .doc-title {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00d4ff, #ffffff, #9d4edd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .doc-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            line-height: 1.5;
        }

        .doc-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .doc-card:hover {
            border-color: rgba(157, 78, 221, 0.3);
            box-shadow: 0 10px 25px rgba(157, 78, 221, 0.2);
            transform: translateY(-2px);
        }

        .card-title {
            font-size: 1.5rem;
            color: #00d4ff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card-content {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .code-block {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 10px;
            padding: 20px;
            font-family: 'Courier New', monospace;
            color: #00d4ff;
            overflow-x: auto;
            margin: 15px 0;
            position: relative;
        }

        .code-block::before {
            content: 'Code';
            position: absolute;
            top: 5px;
            right: 10px;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: rgba(157, 78, 221, 0.3);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2rem;
            color: #9d4edd;
            margin-bottom: 15px;
        }

        .button {
            display: inline-block;
            padding: 12px 25px;
            background: rgba(0, 212, 255, 0.2);
            border: 1px solid #00d4ff;
            border-radius: 10px;
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 10px 10px 10px 0;
        }

        .button:hover {
            background: rgba(0, 212, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }

        .button.secondary {
            background: rgba(157, 78, 221, 0.2);
            border-color: #9d4edd;
        }

        .button.secondary:hover {
            background: rgba(157, 78, 221, 0.3);
            box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
        }

		.menu-toggle {
			display: none;
			position: fixed;
			top: 20px;
			left: 20px;
			z-index: 200;
			background: rgba(0, 212, 255, 0.2);
			backdrop-filter: blur(10px);
			border: 1px solid #00d4ff;
			border-radius: 10px;
			color: white;
			font-size: 1.2rem;
			padding: 10px;
			cursor: pointer;
			transition: left 0.3s ease;  /* Match sidebar transition */
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
		}
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
            to { text-shadow: 0 0 30px rgba(157, 78, 221, 0.8); }
        }

        .search-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 10px;
            padding: 12px 15px;
            color: white;
            width: 100%;
            margin-bottom: 20px;
            font-family: inherit;
        }

        .search-box:focus {
            outline: none;
            border-color: #00d4ff;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        }

        .search-box::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
                width: 280px;
                z-index: 10;
            }

            .sidebar.open {
                transform: translateX(0);
                z-index: 100;
            }

            .main-content {
                margin-left: 0;
                max-width: 100%;
                padding: 80px 20px 20px;
                z-index: 2;
            }

            .menu-toggle {
                display: block;
                z-index: 200;
            }

            .doc-title {
                font-size: 2rem;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }
        }