:root {
    --igp-pri: #4338ca;
    --igp-sec: #1e293b;
    --igp-body: #64748b;
    --igp-bg: #f8fafc;
    --igp-card: #ffffff;
    --igp-border: #e2e8f0;
}

.igp-docs-wrap {
    display: flex;
    margin: 20px 20px 20px 0;
    background: var(--igp-bg);
    border-radius: 12px;
    border: 1px solid var(--igp-border);
    height: calc(100vh - 100px);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Sidebar Navigation */
.igp-docs-sidebar {
    width: 250px;
    background: var(--igp-sec);
    padding: 30px 0;
    flex-shrink: 0;
}
.igp-sidebar-logo {
    padding: 0 25px;
    margin-bottom: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
}
.igp-sidebar-logo .dashicons { color: #818cf8; }
.igp-toc { margin: 0; padding: 0; list-style: none; }
.igp-toc a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
    border-left: 3px solid transparent;
}
.igp-toc a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.igp-toc a .dashicons { font-size: 18px; width: 18px; height: 18px; opacity: 0.5; }

/* Content */
.igp-docs-content {
    flex-grow: 1;
    padding: 50px 80px;
    background: #fff;
    overflow-y: auto;
}
.igp-main-header { margin-bottom: 50px; border-bottom: 2px solid #f1f5f9; padding-bottom: 30px; }
.igp-main-header h1 { font-size: 32px; font-weight: 800; color: var(--igp-sec); margin: 0; letter-spacing: -0.025em; display: flex; align-items: center; gap: 15px; }
.igp-version-badge { background: var(--igp-pri); color: #fff; font-size: 14px; padding: 4px 10px; border-radius: 20px; font-weight: 600; letter-spacing: 0; }
.igp-main-header p { font-size: 16px; color: var(--igp-body); margin: 10px 0 0 0; }

.igp-info-section { margin-bottom: 80px; scroll-margin-top: 30px; }
.igp-info-section h2 { font-size: 24px; color: var(--igp-sec); margin-bottom: 30px; display: flex; align-items: center; gap: 15px; font-weight: 700; }
.igp-info-section h2 .dashicons { color: var(--igp-pri); font-size: 28px; width: 28px; height: 28px; }

.igp-tutorial-card { background: #fdfdfd; border: 1px solid var(--igp-border); padding: 35px; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.igp-tutorial-card h3 { margin-top: 0; font-size: 18px; color: var(--igp-sec); font-weight: 600; }

.igp-settings-table { width: 100%; border-collapse: collapse; margin-top: 20px; border: 1px solid var(--igp-border); }
.igp-settings-table th, .igp-settings-table td { padding: 15px 20px; border-bottom: 1px solid var(--igp-border); text-align: left; font-size: 13px; line-height: 1.6; }
.igp-settings-table th { background: #f1f5f9; color: var(--igp-sec); font-weight: 700; width: 30%; }
.igp-settings-table td { color: var(--igp-body); }

.igp-bullet-list { padding-left: 20px; margin-top: 15px; }
.igp-bullet-list li { margin-bottom: 15px; font-size: 14px; color: var(--igp-body); line-height: 1.6; }
.igp-bullet-list li strong { color: var(--igp-sec); }

.igp-split-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 25px; }
.igp-list-col h4 { font-size: 14px; color: var(--igp-sec); border-bottom: 2px solid var(--igp-pri); padding-bottom: 10px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.05em; }
.igp-list-col ul { list-style: none; padding: 0; margin: 0; }
.igp-list-col li { font-size: 13px; padding: 8px 0; color: var(--igp-body); border-bottom: 1px dashed #e2e8f0; }

.igp-engine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.igp-engine-item { background: #fff; border: 1px solid var(--igp-border); padding: 15px; border-radius: 8px; }
.igp-engine-item strong { display: block; font-size: 13px; color: var(--igp-sec); margin-bottom: 5px; }
.igp-engine-item span { font-size: 12px; color: var(--igp-body); display: block; line-height: 1.4; }

.igp-code-sample { background: #1e293b; padding: 25px; border-radius: 8px; margin-top: 20px; }
.igp-code-sample code { color: #818cf8; font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; font-size: 14px; }

.igp-content-footer { margin-top: 100px; padding-top: 30px; border-top: 1px solid #f1f5f9; text-align: center; color: #94a3b8; font-size: 12px; }
