        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
        }

        /* Main Content */
        .doc-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: flex;
            gap: 2rem;
        }

        /* Sidebar */
        .sidebar {
    flex: 0 0 280px;
    background: var(--dark-light);
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 120px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--card-shadow);
    max-height: calc(100vh - 140px);
overflow-y: auto;
padding-bottom: 20px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}
.sidebar-nav:last-child ul {
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--dark-light);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #747bff, #9d69f7);
}

        .sidebar h2 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-nav ul {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 0.5rem;
        }

        .sidebar-nav a {
            color: var(--light);
            text-decoration: none;
            display: block;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .sidebar-nav a:hover {
            background: rgba(100, 108, 255, 0.1);
            color: var(--primary);
        }

        .sidebar-nav a.active {
            background: rgba(100, 108, 255, 0.2);
            color: var(--primary);
            font-weight: 500;
        }

        .sidebar-section {
            margin-bottom: 2rem;
        }

        .sidebar-section-title {
            font-size: 0.9rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            padding-left: 1rem;
        }

        /* Content */
        .content {
            flex: 1;
            background: var(--dark-light);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--card-shadow);
        }

        .content-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .content-header h1 {
            font-size: 2.25rem;
            margin-bottom: 0.75rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .content-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 800px;
        }

        .doc-section {
            margin-bottom: 3rem;
            scroll-margin-top: 100px;
        }

        .doc-section h2 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--success);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .doc-section h2 i {
            font-size: 1.5rem;
        }

        .doc-section h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: var(--primary);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .doc-section p {
            margin-bottom: 1.25rem;
            color: var(--light);
            line-height: 1.7;
        }

        .doc-section ul, .doc-section ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .doc-section li {
            margin-bottom: 0.75rem;
            color: var(--light);
        }

        .doc-section li strong {
            color: var(--primary);
        }

        /* Cards */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .info-card {
            background: rgba(30, 30, 46, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            text-align: center;
            cursor: pointer;
        }

        .info-card:hover {
            transform: translateY(-5px);
            background: rgba(40, 40, 56, 0.5);
            border-color: rgba(100, 108, 255, 0.5);
        }

        .info-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            display: block;
        }

        .info-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--light);
        }

        .info-card p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Code Blocks */
        .code-block {
            background: var(--dark);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow-x: auto;
        }

        .code-block pre {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--light);
            white-space: pre-wrap;
        }

        .code-block code {
            color: var(--success);
        }

        /* Tables */
        .doc-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: var(--dark);
            border-radius: 8px;
            overflow: hidden;
        }

        .doc-table th, .doc-table td {
            padding: 1rem 1.25rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .doc-table th {
            background: rgba(100, 108, 255, 0.1);
            color: var(--primary);
            font-weight: 600;
        }

        .doc-table tr:last-child td {
            border-bottom: none;
        }

        .doc-table tr:hover {
            background: rgba(100, 108, 255, 0.05);
        }

        /* Callouts */
        .callout {
            background: rgba(100, 108, 255, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }

        .callout.warning {
            background: rgba(255, 180, 100, 0.1);
            border-left-color: var(--warning);
            color: var(--warning);
        }

        .callout.success {
            background: rgba(100, 255, 163, 0.1);
            border-left-color: var(--success);
            color: var(--success);
        }

        .callout h4 {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .callout p {
            margin-bottom: 0;
        }

        /* Footer */
        .doc-footer {
            background: var(--dark);
            padding: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 0 0 12px 12px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .dropdown-btn i.fa-cube {
    margin-right: 8px;
}
.dropdown-btn {
    background-color: #2d2d3f;
    color: #e2e2e2;
    border: 1px solid #3a3a4a;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
#import-asset {
    color: #e2e2e2;
    background: #2d2d3f;
    border: 1px solid #3a3a4a;
    padding: 12px 16px;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    transition: background-color 0.2s;
}
.dropdown-btn:hover, #import-asset:hover {
    background-color: #36364a;
}
.inline-code {
    background: #2c2c2c;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}