

        .cta-button {
            background: #1a1a1a;
            color: #fbbf24;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
        }

        /* Page Header */
        .docs-header {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            padding: 5rem 5% 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .docs-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .docs-header::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
        }

        .docs-header-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .docs-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .docs-header p {
            font-size: 1.3rem;
            color: #2d2d2d;
        }

        /* Search */
        .docs-search {
            max-width: 1400px;
            margin: -2rem auto 3rem;
            padding: 0 5%;
            position: relative;
            z-index: 10;
        }

        .docs-search input {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border-radius: 50px;
            border: 2px solid #fef3c7;
            font-size: 1.05rem;
            background: white;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.15);
            transition: all 0.3s;
        }

        .docs-search input:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
        }

        .docs-search input::placeholder {
            color: #999;
        }
           /* Filter Section */
        .filter-section {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 5%;
        }

        .filter-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            background: white;
            color: #1a1a1a;
            border: 2px solid #fef3c7;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            border-color: #fbbf24;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        /* Main Container */
        .docs-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0rem 5% 3rem;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 3rem;
        }

        /* Sidebar */
        .docs-sidebar {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(251, 191, 36, 0.1);
            position: sticky;
            top: 100px;
            height: fit-content;
            border: 2px solid #fef3c7;
        }

        .sidebar-toggle {
            display: none;
            width: 100%;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            font-weight: 600;
            border-radius: 50px;
            padding: 0.75rem;
            margin-bottom: 2rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .sidebar-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        .docs-sidebar h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #fef3c7;
        }

        .docs-category {
            display: block;
            padding: 0.75rem 1rem;
            margin-bottom: 0.5rem;
            border-radius: 8px;
            color: #1a1a1a;
            font-weight: 600;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all 0.2s;
            background: #ffffff;
        }

        .docs-step {
            display: block;
            padding: 0.5rem 1rem 0.5rem 2.5rem;
            font-size: 0.95rem;
            color: #666;
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 0.25rem;
            transition: all 0.2s;
        }

        .docs-category:hover,
        .docs-step:hover {
            background: #fffbeb;
            border-left-color: #fbbf24;
            transform: translateX(5px);
            color: #1a1a1a;
        }

        .docs-category.active {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            font-weight: 700;
            border-left-color: #f59e0b;
            box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
        }

        .docs-step.active {
            background: #fffbeb;
            color: #1a1a1a;
            font-weight: 600;
            border-left-color: #fbbf24;
        }

        /* Content */
        .docs-content {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 2px 8px rgba(251, 191, 36, 0.1);
            border: 2px solid #fef3c7;
        }

        .docs-content h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a1a1a;
            border-bottom: 3px solid #fbbf24;
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .docs-content h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: #f59e0b;
        }

        .docs-text {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }

        .docs-text p {
            margin-bottom: 1.2rem;
        }

        .docs-text strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        .docs-text ul,
        .docs-text ol {
            margin-left: 1.5rem;
            margin-bottom: 1.2rem;
        }

        .docs-text li {
            margin-bottom: 0.5rem;
        }

        .docs-text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        /* Image */
        .docs-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
            border: 2px solid #fef3c7;
            margin: 2rem 0;
        }

        .docs-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Info Boxes */
        .info-box {
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            border-left: 4px solid #fbbf24;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .info-box h4 {
            color: #f59e0b;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .warning-box {
            background: #fff5f5;
            border-left: 4px solid #dc2626;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .warning-box h4 {
            color: #dc2626;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        /* Navigation */
        .docs-nav {
            display: flex;
            gap: 1rem;
            margin-top: 3rem;
        }

        .docs-nav a {
            flex: 1;
            padding: 1.2rem;
            border-radius: 50px;
            text-align: center;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .docs-nav-prev {
            background: white;
            border: 2px solid #fef3c7;
            color: #1a1a1a;
        }

        .docs-nav-next {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            border: 2px solid #fbbf24;
        }

        .docs-nav a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }

        .docs-nav-prev:hover {
            background: #fffbeb;
        }


        /* Responsive */
        @media (max-width: 968px) {
            .docs-container {
                grid-template-columns: 1fr;
            }

            .sidebar-toggle {
                display: block;
            }

            .docs-sidebar {
                position: static;
            }

            .sidebar-menu {
                display: none;
            }

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

            .docs-header h1 {
                font-size: 2rem;
            }

            .docs-content {
                padding: 2rem;
            }

            .docs-nav {
                flex-direction: column;
            }

            .nav-links {
                display: none;
            }

            .docs-header::after {
                background: linear-gradient(to bottom, transparent 49%, #ffffff 50%);
            }
        }