/* Guide Page Styles */

.guide-main {
    min-height: calc(100vh - 80px);
    padding: 100px 20px 60px;
    background: #f8f9fa;
}

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* OS Tabs */
.os-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.os-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.os-tab:hover {
    background: #f0f0f0;
    color: #333;
}

.os-tab.active {
    background: #3b82f6;
    color: white;
}

.os-tab svg {
    width: 20px;
    height: 20px;
}

/* OS Content */
.os-content {
    display: none;
}

.os-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Install Section */
.install-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.install-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
}

.install-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.install-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Steps Box */
.steps-box {
    background: #e0f2fe;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 25px;
}

.steps-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 15px 0;
}

.steps-box ol {
    margin: 0;
    padding-left: 20px;
}

.steps-box li {
    font-size: 15px;
    line-height: 1.8;
    color: #1e3a8a;
    margin-bottom: 8px;
}

kbd {
    display: inline-block;
    padding: 3px 8px;
    font-size: 13px;
    font-family: monospace;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.command-title {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 12px;
}

/* Code Block */
.code-block {
    background: #1e293b;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #0f172a;
    border-bottom: 1px solid #334155;
}

.code-label {
    font-size: 13px;
    color: #94a3b8;
    font-family: monospace;
}

.copy-btn {
    padding: 6px 12px;
    font-size: 13px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #2563eb;
}

.code-block pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.code-block code {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Courier New', Courier, monospace;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 15px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 20px 25px;
    margin-top: 25px;
}

.warning-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.warning-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 12px 0;
}

.warning-content ul {
    margin: 0;
    padding-left: 20px;
}

.warning-content li {
    font-size: 14px;
    line-height: 1.8;
    color: #78350f;
    margin-bottom: 6px;
}

/* Verify Section */
.verify-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.verify-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.verify-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.verify-description {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 15px;
}

.success-message {
    font-size: 15px;
    color: #059669;
    font-weight: 500;
    margin-top: 15px;
}

/* Environment Variable Section */
.env-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.env-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.env-description {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 25px;
}

/* Method Box */
.method-box {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.method-box:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.method-recommended {
    background: #eff6ff;
    border-color: #3b82f6;
    position: relative;
}

.method-recommended::before {
    content: "推荐";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.method-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.method-description {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

.method-steps {
    margin: 15px 0;
    padding-left: 20px;
}

.method-steps li {
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 8px;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 15px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
}

.download-link svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.download-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.download-link a:hover {
    text-decoration: underline;
}

/* Manual Install Section */
.manual-install-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 3px solid #e5e7eb;
}

.manual-install-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Step Box (for step 4 and similar) */
.step-box {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 3px solid #e5e7eb;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-content {
    /* Content wrapper for step box */
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.manual-install-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.manual-description {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 25px;
}

/* Install Methods */
.install-methods {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.install-method-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.install-method-title svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.install-method-title span:first-of-type {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.method-tag {
    margin-left: auto;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

/* Node.js Method */
.nodejs-method {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.nodejs-method:last-of-type {
    margin-bottom: 0;
}

.nodejs-method h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.nodejs-steps {
    margin: 0;
    padding-left: 20px;
}

.nodejs-steps li {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 10px;
}

.nodejs-steps a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.nodejs-steps a:hover {
    text-decoration: underline;
}

.nodejs-steps code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: #dc2626;
    font-family: monospace;
}

.method-intro {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 15px;
    border-radius: 8px;
    padding: 20px 25px;
    margin-top: 20px;
}

.info-blue {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 12px 0;
}

.info-content ul {
    margin: 0;
    padding-left: 20px;
}

.info-content li {
    font-size: 14px;
    line-height: 1.8;
    color: #1e3a8a;
    margin-bottom: 6px;
}

.info-content code {
    background: #bfdbfe;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #1e40af;
    font-family: monospace;
}

/* Verify Node.js */
.verify-nodejs {
    margin-top: 30px;
    padding: 25px;
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    border-radius: 8px;
}

.verify-nodejs h4 {
    font-size: 18px;
    font-weight: 600;
    color: #065f46;
    margin: 0 0 12px 0;
}

.verify-intro {
    font-size: 15px;
    color: #047857;
    margin-bottom: 15px;
}

/* Install Step Box */
.install-step-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.install-step-success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
}

.install-step-icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.install-step-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #065f46;
    margin: 0;
}

.install-step-description {
    font-size: 15px;
    color: #374151;
    margin-bottom: 15px;
}

.install-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 15px;
    margin-bottom: 25px;
}

/* Error Box */
.error-box {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.error-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.error-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #991b1b;
    margin: 0 0 12px 0;
}

.error-description {
    font-size: 14px;
    color: #7f1d1d;
    margin-bottom: 15px;
}

.error-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #991b1b;
    margin: 25px 0 15px 0;
}

/* Solution Steps */
.solution-steps {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: solution-counter;
}

.solution-steps > li {
    counter-increment: solution-counter;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
}

.solution-steps > li::before {
    content: counter(solution-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.solution-steps > li strong {
    display: block;
    font-size: 15px;
    color: #7f1d1d;
    margin-bottom: 8px;
}

.solution-steps ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.solution-steps ul li {
    font-size: 14px;
    color: #991b1b;
    line-height: 1.6;
    margin-bottom: 4px;
}

.step-note {
    font-size: 14px;
    color: #991b1b;
    margin: 8px 0 0 0;
    line-height: 1.6;
}

.step-note code {
    background: #fee2e2;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #dc2626;
    font-family: monospace;
}

/* Success Indicator */
.success-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #d1fae5;
    border-left: 3px solid #10b981;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.success-indicator svg {
    color: #059669;
    flex-shrink: 0;
}

.success-indicator span {
    font-size: 14px;
    font-weight: 500;
    color: #065f46;
}

/* Verify Claude Section */
.verify-claude-section {
    margin-top: 30px;
    padding: 25px;
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    border-radius: 8px;
}

.verify-claude-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #065f46;
    margin: 0 0 12px 0;
}

/* Warning Box Small */
.warning-box {
    display: flex;
    gap: 12px;
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
}

.warning-small {
    padding: 12px 15px;
}

.warning-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.warning-content p {
    font-size: 14px;
    color: #78350f;
    margin: 0;
    line-height: 1.6;
}

.warning-content code {
    background: #fef3c7;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #92400e;
    font-family: monospace;
}

/* 环境变量配置样式 */
.env-config-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-left: 4px solid #0ea5e9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.env-config-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    color: #0ea5e9;
}

.env-config-box h4 {
    margin: 0;
    color: #0c4a6e;
    font-size: 18px;
    font-weight: 600;
}

.env-description {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* 环境变量设置方法 */
.env-method-section {
    margin-bottom: 30px;
}

.env-method-title {
    color: #7c3aed;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 3px solid #7c3aed;
}

/* 环境变量选项框 */
.env-option-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.env-option-recommended {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
}

.env-option-temporary {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
}

.env-option-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.env-option-recommended .env-option-header svg {
    color: #22c55e;
}

.env-option-temporary .env-option-header svg {
    color: #f59e0b;
}

.env-option-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.env-option-recommended .env-option-header h5 {
    color: #166534;
}

.env-option-temporary .env-option-header h5 {
    color: #92400e;
}

.env-option-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 环境变量提示框 */
.env-note-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: #dbeafe;
    border-radius: 6px;
    margin-top: 15px;
}

.env-note-box svg {
    flex-shrink: 0;
    color: #0284c7;
    margin-top: 2px;
}

.env-note-box p {
    margin: 0;
    color: #0c4a6e;
    font-size: 13px;
    line-height: 1.5;
}

/* 环境变量警告框 */
.env-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: #fef3c7;
    border-radius: 6px;
    margin-top: 15px;
}

.env-warning-box svg {
    flex-shrink: 0;
    color: #f59e0b;
    margin-top: 2px;
}

.env-warning-box p {
    margin: 0;
    color: #92400e;
    font-size: 13px;
    line-height: 1.5;
}

/* API 密钥提醒 */
.api-key-reminder {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 3px solid #ef4444;
    border-radius: 6px;
    margin-bottom: 25px;
}

.api-key-reminder svg {
    flex-shrink: 0;
    color: #ef4444;
    margin-top: 2px;
}

.api-key-reminder p {
    margin: 0;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.5;
}

.api-key-reminder code {
    background: #fee2e2;
    color: #991b1b;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 13px;
}

/* 验证环境变量 */
.verify-env-section {
    padding: 25px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    margin-top: 20px;
}

.verify-env-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.verify-env-header svg {
    color: #3b82f6;
}

.verify-env-header h4 {
    margin: 0;
    color: #1e40af;
    font-size: 18px;
    font-weight: 600;
}

.verify-env-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.verify-env-methods {
    display: grid;
    gap: 20px;
}

.verify-env-method h5 {
    color: #1e40af;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* 使用说明框 */
.usage-box {
    margin-top: 25px;
    margin-bottom: 25px;
}

.usage-box h4 {
    color: #1e293b;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 信息提示框 - 蓝色 */
.info-box-blue {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-box-blue svg {
    flex-shrink: 0;
    color: #3b82f6;
    margin-top: 2px;
}

.info-box-blue p {
    margin: 0;
    color: #1e40af;
    font-size: 14px;
    line-height: 1.6;
}

/* 警告框 - 红色 */
.warning-box-red {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    margin-bottom: 25px;
}

.warning-box-red svg {
    flex-shrink: 0;
    color: #ef4444;
    margin-top: 2px;
}

.warning-box-red .warning-content h4 {
    color: #991b1b;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.warning-box-red .warning-content p {
    color: #991b1b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

/* 解决方案框 */
.solution-box {
    padding: 20px 25px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    margin-bottom: 25px;
}

.solution-box h4 {
    color: #166534;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.solution-steps {
    margin: 0;
    padding-left: 25px;
    color: #166534;
}

.solution-steps li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.solution-steps strong {
    color: #166534;
    font-weight: 600;
}

.solution-steps ul {
    margin: 8px 0;
    padding-left: 20px;
}

.solution-steps ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.solution-steps p {
    margin: 8px 0;
    color: #166534;
    font-size: 14px;
    line-height: 1.6;
}

.download-link-inline {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.download-link-inline:hover {
    text-decoration: underline;
}

/* 成功提示框 */
.success-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    margin-top: 20px;
}

.success-box svg {
    flex-shrink: 0;
    color: #22c55e;
}

.success-box p {
    margin: 0;
    color: #166534;
    font-size: 14px;
    font-weight: 500;
}

/* 下一步提示框 */
.next-step-box {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.next-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.next-step-header svg {
    color: #f59e0b;
    flex-shrink: 0;
}

.next-step-header h4 {
    margin: 0;
    color: #92400e;
    font-size: 18px;
    font-weight: 700;
}

.next-step-description {
    color: #92400e;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* 配置方法框 */
.config-method-box {
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
}

.config-method-recommended {
    border-left: 4px solid #22c55e;
    background: #f0fdf4;
}

.config-method-header h5 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.config-method-recommended .config-method-header h5 {
    color: #166534;
}

.config-method-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.config-method-recommended .config-method-description {
    color: #166534;
}

.config-method-steps {
    margin: 0 0 15px 0;
    padding-left: 25px;
}

.config-method-steps li {
    color: #475569;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.config-method-recommended .config-method-steps li {
    color: #166534;
}

.config-download-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: #dcfce7;
    border-radius: 6px;
    font-size: 14px;
}

.config-download-link svg {
    color: #22c55e;
    flex-shrink: 0;
}

.config-download-link span {
    color: #166534;
}

.config-download-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.config-download-link a:hover {
    text-decoration: underline;
}

/* 安装方法框 */
.install-method-box {
    margin-top: 20px;
    padding: 25px;
    background: #f8f9ff;
    border: 1px solid #e0e7ff;
    border-left: 4px solid #6366f1;
    border-radius: 8px;
}

.install-method-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.install-method-icon svg {
    color: #6366f1;
    flex-shrink: 0;
}

.install-method-icon h4 {
    margin: 0;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.install-method-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.install-note {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin: 15px 0 10px 0;
}

/* 验证安装框 */
.verify-install-box {
    margin-top: 25px;
    padding: 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
}

.verify-install-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.verify-install-header svg {
    color: #22c55e;
    flex-shrink: 0;
}

.verify-install-header h4 {
    margin: 0;
    color: #166534;
    font-size: 16px;
    font-weight: 600;
}

.verify-install-description {
    color: #166534;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

/* macOS 环境变量配置框 */
.macos-env-config-box {
    margin-top: 20px;
    padding: 25px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
}

.macos-env-config-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.macos-env-config-header svg {
    color: #f59e0b;
    flex-shrink: 0;
}

.macos-env-config-header h4 {
    margin: 0;
    color: #92400e;
    font-size: 18px;
    font-weight: 600;
}

.macos-env-config-description {
    color: #92400e;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* macOS 环境变量方法框 */
.macos-env-method-box {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.macos-env-method-box:last-child {
    margin-bottom: 0;
}

.macos-env-method-box h5 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.macos-env-method-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.macos-env-method-box .code-block {
    margin-bottom: 15px;
}

.macos-env-method-box .code-block:last-child {
    margin-bottom: 0;
}

/* 环境变量配置框 */
.env-config-box {
    margin-top: 20px;
    padding: 25px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.env-config-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.env-config-icon svg {
    color: #f59e0b;
    flex-shrink: 0;
}

.env-config-icon h4 {
    margin: 0;
    color: #92400e;
    font-size: 18px;
    font-weight: 600;
}

.env-config-description {
    color: #92400e;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* 环境变量方法框 */
.env-method-box {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.env-method-recommended {
    border-left: 4px solid #22c55e;
    background: #f0fdf4;
}

.env-method-box h5 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.env-method-recommended h5 {
    color: #166534;
}

.env-method-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.env-method-recommended .env-method-description {
    color: #166534;
}

/* Shell 配置区域 */
.shell-config-section {
    margin-bottom: 20px;
}

.shell-config-section:last-child {
    margin-bottom: 0;
}

.shell-config-section h6 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
}

.env-method-recommended .shell-config-section h6 {
    color: #166534;
}

/* 验证环境变量框 */
.verify-env-box {
    margin-top: 20px;
    padding: 15px;
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 6px;
}

.verify-env-header h5 {
    margin: 0 0 10px 0;
    color: #1e40af;
    font-size: 15px;
    font-weight: 600;
}

.verify-env-description {
    color: #1e40af;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

/* ==================== Linux 样式 ==================== */

/* Linux 一键安装区域 */
.linux-install-section {
    margin-bottom: 40px;
    padding: 40px;
    background: #ecfdf5;
    border-radius: 12px;
    border: 1px solid #d1fae5;
}

.linux-install-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.linux-install-header .check-icon {
    color: #10b981;
    flex-shrink: 0;
}

.linux-install-header h2 {
    margin: 0;
    color: #1e293b;
    font-size: 24px;
    font-weight: 600;
}

.linux-install-description {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.linux-command-title {
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 12px 0;
}

/* Linux 警告框 */
.linux-warning-box {
    margin-top: 25px;
    padding: 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.linux-warning-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.linux-warning-content h4 {
    margin: 0 0 12px 0;
    color: #92400e;
    font-size: 16px;
    font-weight: 600;
}

.linux-warning-content ul {
    margin: 0;
    padding-left: 20px;
    color: #92400e;
    font-size: 14px;
    line-height: 1.8;
}

.linux-warning-content li {
    margin-bottom: 8px;
}

/* Linux 验证安装框 */
.linux-verify-box {
    margin-top: 25px;
    padding: 20px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
}

.linux-verify-box h4 {
    margin: 0 0 12px 0;
    color: #065f46;
    font-size: 16px;
    font-weight: 600;
}

.linux-verify-box p {
    margin: 0 0 12px 0;
    color: #047857;
    font-size: 14px;
    line-height: 1.6;
}

.linux-verify-box .code-block {
    margin-bottom: 12px;
}

.linux-success-message {
    margin: 0;
    color: #065f46;
    font-size: 14px;
    font-weight: 500;
}

/* Linux 下一步配置框 */
.linux-next-step-box {
    margin-top: 25px;
    padding: 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
}

.linux-next-step-box h4 {
    margin: 0 0 12px 0;
    color: #991b1b;
    font-size: 16px;
    font-weight: 600;
}

.linux-next-step-box > p {
    margin: 0 0 20px 0;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.6;
}

/* Linux 方法项 */
.linux-method-item {
    margin-bottom: 20px;
}

.linux-method-item:last-child {
    margin-bottom: 0;
}

.linux-method-item h5 {
    margin: 0 0 10px 0;
    color: #991b1b;
    font-size: 15px;
    font-weight: 600;
}

.linux-method-description {
    margin: 0 0 12px 0;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.6;
}

.linux-method-steps {
    margin: 0 0 12px 0;
    padding-left: 20px;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.8;
}

.linux-method-steps li {
    margin-bottom: 6px;
}

.linux-download-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #991b1b;
    font-size: 14px;
}

.linux-download-link svg {
    flex-shrink: 0;
    color: #991b1b;
}

.linux-download-link a {
    color: #2563eb;
    text-decoration: none;
}

.linux-download-link a:hover {
    text-decoration: underline;
}

/* Linux 手动安装区域 */
.linux-manual-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.linux-manual-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.linux-manual-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 24px;
    font-weight: 700;
}

.linux-manual-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Linux Node.js 安装框 */
.linux-nodejs-install-box {
    margin-bottom: 25px;
    padding: 25px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
}

.linux-nodejs-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.linux-nodejs-header svg {
    color: #0284c7;
    flex-shrink: 0;
}

.linux-nodejs-header h4 {
    margin: 0;
    color: #0c4a6e;
    font-size: 18px;
    font-weight: 600;
}

/* Linux 发行版区域 */
.linux-distro-section {
    margin-bottom: 25px;
}

.linux-distro-section:last-child {
    margin-bottom: 0;
}

.linux-distro-section h5 {
    margin: 0 0 12px 0;
    color: #0c4a6e;
    font-size: 16px;
    font-weight: 600;
}

.linux-distro-section .code-block {
    margin-bottom: 12px;
}

.linux-distro-section .code-block:last-child {
    margin-bottom: 0;
}

/* Linux 验证 Node.js 安装框 */
.linux-verify-nodejs-box {
    padding: 20px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
}

.linux-verify-nodejs-box h4 {
    margin: 0 0 12px 0;
    color: #065f46;
    font-size: 16px;
    font-weight: 600;
}

.linux-verify-nodejs-box p {
    margin: 0 0 12px 0;
    color: #047857;
    font-size: 14px;
    line-height: 1.6;
}

.linux-verify-nodejs-box .code-block {
    margin-bottom: 0;
}

/* Linux 安装 Claude Code 框 */
.linux-install-claude-box {
    margin-bottom: 25px;
    padding: 25px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
}

.linux-install-claude-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.linux-install-claude-header svg {
    color: #059669;
    flex-shrink: 0;
}

.linux-install-claude-header h4 {
    margin: 0;
    color: #065f46;
    font-size: 18px;
    font-weight: 600;
}

.linux-install-claude-description {
    margin: 0 0 15px 0;
    color: #047857;
    font-size: 14px;
    line-height: 1.6;
}

.linux-install-note {
    margin: 15px 0 12px 0;
    color: #047857;
    font-size: 14px;
    line-height: 1.6;
}

/* Linux 验证 Claude Code 安装框 */
.linux-verify-claude-box {
    padding: 20px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
}

.linux-verify-claude-box h4 {
    margin: 0 0 12px 0;
    color: #065f46;
    font-size: 16px;
    font-weight: 600;
}

.linux-verify-claude-box .code-block {
    margin-bottom: 0;
}

/* Linux 验证安装 */
.linux-verify-description {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.linux-success-message {
    margin-top: 15px;
    padding: 12px 16px;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 6px;
    color: #065f46;
    font-size: 14px;
    font-weight: 500;
}

/* Linux 环境变量配置框 */
.linux-env-config-box {
    padding: 25px;
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    border-radius: 8px;
}

.linux-env-config-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.linux-env-config-header svg {
    color: #9333ea;
    flex-shrink: 0;
}

.linux-env-config-header h4 {
    margin: 0;
    color: #581c87;
    font-size: 18px;
    font-weight: 600;
}

/* Linux 环境变量方法项 */
.linux-env-method-item {
    margin-bottom: 20px;
}

.linux-env-method-item:last-child {
    margin-bottom: 0;
}

.linux-env-method-item h5 {
    margin: 0 0 12px 0;
    color: #581c87;
    font-size: 16px;
    font-weight: 600;
}

.linux-env-method-description {
    margin: 0 0 12px 0;
    color: #6b21a8;
    font-size: 14px;
    line-height: 1.6;
}

/* Linux 启动描述 */
.linux-start-description {
    margin: 0 0 20px 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* Linux 使用项 */
.linux-usage-item {
    margin-bottom: 25px;
}

.linux-usage-item:last-child {
    margin-bottom: 0;
}

.linux-usage-item h4 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.linux-usage-item .code-block {
    margin-bottom: 0;
}

/* Linux 环境变量方法框 */
.linux-env-method-box {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.linux-env-method-box:last-child {
    margin-bottom: 0;
}

.linux-env-method-box h5 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.linux-env-method-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.linux-env-method-box .code-block {
    margin-bottom: 15px;
}

.linux-env-method-box .code-block:last-child {
    margin-bottom: 0;
}

/* Linux 启动 Claude Code */
.linux-start-description {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

/* Linux 首次启动配置框 */
.linux-first-run-box {
    margin-top: 25px;
    padding: 20px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
}

.linux-first-run-box h4 {
    margin: 0 0 12px 0;
    color: #0c4a6e;
    font-size: 16px;
    font-weight: 600;
}

.linux-first-run-description {
    color: #0c4a6e;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

/* Linux 配置提示 */
.linux-config-tips {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border: 1px solid #bae6fd;
    border-radius: 6px;
}

.linux-config-tips h5 {
    margin: 0 0 10px 0;
    color: #0c4a6e;
    font-size: 14px;
    font-weight: 600;
}

.linux-config-tips ul {
    margin: 0;
    padding-left: 20px;
    color: #0c4a6e;
    font-size: 13px;
    line-height: 1.8;
}

.linux-config-tips li {
    margin-bottom: 6px;
}

/* Linux 成功框 */
.linux-success-box {
    margin-top: 25px;
    padding: 20px;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.linux-success-icon {
    flex-shrink: 0;
}

.linux-success-icon svg {
    color: #059669;
}

.linux-success-content h4 {
    margin: 0 0 8px 0;
    color: #065f46;
    font-size: 16px;
    font-weight: 600;
}

.linux-success-content p {
    margin: 0;
    color: #065f46;
    font-size: 14px;
    line-height: 1.6;
}

/* 步骤介绍 */
.step-intro {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* 启动使用框 */
.start-usage-box {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9ff;
    border: 1px solid #e0e7ff;
    border-radius: 8px;
}

.start-usage-box h4 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

/* 项目使用框 */
.project-usage-box {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9ff;
    border: 1px solid #e0e7ff;
    border-radius: 8px;
}

.project-usage-box h4 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

/* 使用说明框 */
.usage-box {
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #7dd3fc;
    border-left: 4px solid #0ea5e9;
    border-radius: 8px;
}

.usage-description {
    color: #0c4a6e;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

/* 常见问题解法 */
.troubleshooting-section {
    margin-top: 40px;
    padding: 30px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.troubleshooting-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.troubleshooting-header svg {
    color: #ef4444;
}

.troubleshooting-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 22px;
    font-weight: 700;
}

/* 问题项 */
.troubleshooting-item {
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    margin-bottom: 20px;
}

.troubleshooting-question {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.troubleshooting-question svg {
    flex-shrink: 0;
    color: #f59e0b;
}

.troubleshooting-question h4 {
    margin: 0;
    color: #1e293b;
    font-size: 17px;
    font-weight: 600;
}

.troubleshooting-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.troubleshooting-solutions {
    margin: 0;
    padding-left: 25px;
}

.troubleshooting-solutions li {
    color: #475569;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.troubleshooting-solutions code {
    background: #f1f5f9;
    color: #1e293b;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .guide-main {
        padding: 80px 15px 40px;
    }

    .os-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .os-tab {
        padding: 12px 16px;
        font-size: 14px;
    }

    .install-section {
        padding: 25px 20px;
    }

    .install-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .install-header h2 {
        font-size: 22px;
    }

    .install-description {
        font-size: 14px;
    }

    .steps-box {
        padding: 15px 20px;
    }

    .steps-box h3 {
        font-size: 14px;
    }

    .steps-box li {
        font-size: 13px;
    }

    .code-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .code-block pre {
        padding: 15px;
    }

    .code-block code {
        font-size: 12px;
    }

    .warning-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .warning-content h4 {
        font-size: 14px;
    }

    .warning-content li {
        font-size: 13px;
    }

    .verify-section,
    .env-section {
        margin-top: 30px;
        padding-top: 30px;
    }

    .verify-header h3,
    .env-header h3 {
        font-size: 18px;
    }

    .method-box {
        padding: 20px 15px;
    }

    .method-header h4 {
        font-size: 16px;
    }

    .method-description,
    .verify-description,
    .env-description {
        font-size: 14px;
    }

    .method-steps li {
        font-size: 13px;
    }

    .download-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
    }

    .manual-install-section {
        margin-top: 35px;
        padding-top: 35px;
    }

    .manual-install-header {
        flex-direction: row;
        gap: 12px;
    }

    .step-box {
        margin-top: 35px;
        padding-top: 35px;
    }

    .step-header {
        flex-direction: row;
        gap: 12px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .manual-install-header h3 {
        font-size: 20px;
    }

    .manual-description {
        font-size: 14px;
    }

    .install-methods {
        padding: 20px 15px;
    }

    .install-method-title {
        flex-wrap: wrap;
        gap: 8px;
    }

    .install-method-title span:first-of-type {
        font-size: 16px;
    }

    .method-tag {
        margin-left: 0;
        font-size: 12px;
    }

    .nodejs-method {
        padding: 15px;
    }

    .nodejs-method h4 {
        font-size: 16px;
    }

    .nodejs-steps li {
        font-size: 14px;
    }

    .info-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .info-content h4 {
        font-size: 15px;
    }

    .info-content li {
        font-size: 13px;
    }

    .verify-nodejs {
        padding: 20px 15px;
    }

    .verify-nodejs h4 {
        font-size: 16px;
    }

    .verify-intro {
        font-size: 14px;
    }

    .install-step-box {
        flex-direction: row;
        padding: 12px 15px;
    }

    .install-step-icon {
        width: 35px;
        height: 35px;
    }

    .install-step-box h4 {
        font-size: 16px;
    }

    .install-step-description {
        font-size: 14px;
    }

    .install-note {
        font-size: 13px;
    }

    .error-box {
        padding: 20px 15px;
    }

    .error-icon {
        font-size: 24px;
    }

    .error-content h4 {
        font-size: 16px;
    }

    .error-description {
        font-size: 13px;
    }

    .error-content h5 {
        font-size: 15px;
    }

    .solution-steps > li {
        padding-left: 30px;
    }

    .solution-steps > li::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .solution-steps > li strong {
        font-size: 14px;
    }

    .solution-steps ul li {
        font-size: 13px;
    }

    .step-note {
        font-size: 13px;
    }

    .success-indicator {
        flex-direction: row;
        gap: 8px;
        padding: 10px 12px;
    }

    .success-indicator span {
        font-size: 13px;
    }

    .verify-claude-section {
        padding: 20px 15px;
    }

    .verify-claude-section h4 {
        font-size: 16px;
    }

    .warning-box {
        flex-direction: column;
        gap: 8px;
        padding: 12px 15px;
    }

    .warning-icon {
        font-size: 18px;
    }

    .warning-content p {
        font-size: 13px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .guide-main {
        background: #111827;
    }

    .os-tabs {
        background: #1f2937;
    }

    .os-tab {
        color: #9ca3af;
    }

    .os-tab:hover {
        background: #374151;
        color: #e5e7eb;
    }

    .os-tab.active {
        background: #3b82f6;
        color: white;
    }

    .install-section {
        background: #1f2937;
    }

    .install-header h2 {
        color: #f9fafb;
    }

    .install-description {
        color: #9ca3af;
    }

    .steps-box {
        background: #1e3a5f;
        border-left-color: #3b82f6;
    }

    .steps-box h3 {
        color: #93c5fd;
    }

    .steps-box li {
        color: #bfdbfe;
    }

    kbd {
        background: #374151;
        border-color: #4b5563;
        color: #e5e7eb;
    }

    .command-title {
        color: #d1d5db;
    }

    .code-header {
        background: #0f172a;
        border-bottom-color: #1e293b;
    }

    .warning-box {
        background: #451a03;
        border-left-color: #f59e0b;
    }

    .warning-content h4 {
        color: #fbbf24;
    }

    .warning-content li {
        color: #fde68a;
    }

    .verify-section,
    .env-section {
        border-top-color: #374151;
    }

    .verify-header h3,
    .env-header h3 {
        color: #f9fafb;
    }

    .verify-description,
    .env-description {
        color: #9ca3af;
    }

    .success-message {
        color: #34d399;
    }

    .method-box {
        background: #111827;
        border-color: #374151;
    }

    .method-box:hover {
        border-color: #3b82f6;
    }

    .method-recommended {
        background: #1e3a5f;
        border-color: #3b82f6;
    }

    .method-header h4 {
        color: #f9fafb;
    }

    .method-description {
        color: #9ca3af;
    }

    .method-steps li {
        color: #d1d5db;
    }

    .download-link {
        background: #1f2937;
        color: #d1d5db;
    }

    .download-link a {
        color: #60a5fa;
    }

    .manual-install-section {
        border-top-color: #374151;
    }

    .manual-install-header h3 {
        color: #f9fafb;
    }

    .manual-description {
        color: #9ca3af;
    }

    .step-box {
        border-top-color: #374151;
    }

    .step-header h3 {
        color: #f9fafb;
    }

    .install-methods {
        background: #111827;
        border-color: #374151;
    }

    .install-method-title {
        border-bottom-color: #374151;
    }

    .install-method-title span:first-of-type {
        color: #f9fafb;
    }

    .method-tag {
        background: #451a03;
        color: #fbbf24;
    }

    .nodejs-method {
        background: #1f2937;
    }

    .nodejs-method h4 {
        color: #f9fafb;
    }

    .nodejs-steps li {
        color: #d1d5db;
    }

    .nodejs-steps a {
        color: #60a5fa;
    }

    .nodejs-steps code {
        background: #374151;
        color: #fca5a5;
    }

    .method-intro {
        color: #9ca3af;
    }

    .info-box.info-blue {
        background: #1e3a5f;
        border-left-color: #3b82f6;
    }

    .info-content h4 {
        color: #93c5fd;
    }

    .info-content li {
        color: #bfdbfe;
    }

    .info-content code {
        background: #1e40af;
        color: #dbeafe;
    }

    .verify-nodejs {
        background: #064e3b;
        border-left-color: #10b981;
    }

    .verify-nodejs h4 {
        color: #6ee7b7;
    }

    .verify-intro {
        color: #a7f3d0;
    }

    .install-step-success {
        background: #064e3b;
        border-left-color: #10b981;
    }

    .install-step-box h4 {
        color: #6ee7b7;
    }

    .install-step-description {
        color: #d1d5db;
    }

    .install-note {
        color: #9ca3af;
    }

    .error-box {
        background: #450a0a;
        border-color: #7f1d1d;
        border-left-color: #ef4444;
    }

    .error-content h4 {
        color: #fca5a5;
    }

    .error-description {
        color: #fecaca;
    }

    .error-content h5 {
        color: #fca5a5;
    }

    .solution-steps > li strong {
        color: #fecaca;
    }

    .solution-steps ul li {
        color: #fca5a5;
    }

    .step-note {
        color: #fca5a5;
    }

    .step-note code {
        background: #7f1d1d;
        color: #fecaca;
    }

    .success-indicator {
        background: #064e3b;
        border-left-color: #10b981;
    }

    .success-indicator svg {
        color: #6ee7b7;
    }

    .success-indicator span {
        color: #a7f3d0;
    }

    .verify-claude-section {
        background: #064e3b;
        border-left-color: #10b981;
    }

    .verify-claude-section h4 {
        color: #6ee7b7;
    }

    .warning-box {
        background: #451a03;
        border-left-color: #f59e0b;
    }

    .warning-content p {
        color: #fbbf24;
    }

    .warning-content code {
        background: #78350f;
        color: #fde68a;
    }

    .env-config-box {
        flex-direction: row;
        padding: 12px 15px;
    }

    .env-config-icon {
        width: 35px;
        height: 35px;
    }

    .env-config-box h4 {
        font-size: 16px;
    }

    .env-description {
        font-size: 14px;
    }

    .env-method-title {
        font-size: 16px;
    }

    .env-option-box {
        padding: 15px;
    }

    .env-option-header h5 {
        font-size: 15px;
    }

    .env-option-description {
        font-size: 13px;
    }

    .env-note-box {
        padding: 10px 12px;
    }

    .env-note-box p {
        font-size: 12px;
    }

    .env-warning-box {
        padding: 10px 12px;
    }

    .env-warning-box p {
        font-size: 12px;
    }

    .api-key-reminder {
        padding: 10px 12px;
    }

    .api-key-reminder p {
        font-size: 13px;
    }

    .verify-env-section {
        padding: 20px 15px;
    }

    .verify-env-header h4 {
        font-size: 16px;
    }

    .verify-env-description {
        font-size: 13px;
    }

    .verify-env-method h5 {
        font-size: 14px;
    }

    .usage-box h4 {
        font-size: 16px;
    }

    .info-box-blue {
        padding: 12px 15px;
    }

    .info-box-blue p {
        font-size: 13px;
    }

    .warning-box-red {
        flex-direction: column;
        padding: 12px 15px;
    }

    .warning-box-red .warning-content h4 {
        font-size: 15px;
    }

    .warning-box-red .warning-content p {
        font-size: 13px;
    }

    .solution-box {
        padding: 15px 20px;
    }

    .solution-box h4 {
        font-size: 16px;
    }

    .solution-steps li {
        font-size: 13px;
    }

    .success-box {
        padding: 12px 15px;
    }

    .success-box p {
        font-size: 13px;
    }

    .troubleshooting-section {
        padding: 20px 15px;
    }

    .troubleshooting-header {
        flex-direction: row;
        gap: 10px;
    }

    .troubleshooting-header h3 {
        font-size: 18px;
    }

    .troubleshooting-item {
        padding: 15px;
    }

    .troubleshooting-question h4 {
        font-size: 15px;
    }

    .troubleshooting-description {
        font-size: 13px;
    }

    /* Linux 响应式 */
    .linux-install-section {
        padding: 20px 15px;
    }

    .linux-install-header h2 {
        font-size: 24px;
    }

    .linux-install-description {
        font-size: 14px;
    }

    .linux-command-title {
        font-size: 15px;
    }

    .linux-warning-box {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .linux-warning-content h4 {
        font-size: 15px;
    }

    .linux-warning-content ul {
        font-size: 13px;
    }

    .linux-verify-box {
        padding: 15px;
    }

    .linux-verify-box h4 {
        font-size: 15px;
    }

    .linux-verify-box p {
        font-size: 13px;
    }

    .linux-success-message {
        font-size: 13px;
    }

    .linux-next-step-box {
        padding: 15px;
    }

    .linux-next-step-box h4 {
        font-size: 15px;
    }

    .linux-next-step-box > p {
        font-size: 13px;
    }

    .linux-method-item h5 {
        font-size: 14px;
    }

    .linux-method-description {
        font-size: 13px;
    }

    .linux-method-steps {
        font-size: 13px;
    }

    .linux-download-link {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .linux-manual-section {
        padding: 20px 15px;
    }

    .linux-manual-header h3 {
        font-size: 20px;
    }

    .linux-manual-description {
        font-size: 14px;
    }

    .linux-nodejs-install-box {
        padding: 20px 15px;
    }

    .linux-nodejs-header h4 {
        font-size: 16px;
    }

    .linux-distro-section h5 {
        font-size: 15px;
    }

    .linux-verify-nodejs-box {
        padding: 15px;
    }

    .linux-verify-nodejs-box h4 {
        font-size: 15px;
    }

    .linux-verify-nodejs-box p {
        font-size: 13px;
    }

    .linux-install-claude-box {
        padding: 20px 15px;
    }

    .linux-install-claude-header h4 {
        font-size: 16px;
    }

    .linux-install-claude-description {
        font-size: 13px;
    }

    .linux-install-note {
        font-size: 13px;
    }

    .linux-verify-claude-box {
        padding: 15px;
    }

    .linux-verify-claude-box h4 {
        font-size: 15px;
    }

    .linux-env-config-box {
        padding: 20px 15px;
    }

    .linux-env-config-header h4 {
        font-size: 16px;
    }

    .linux-env-method-item h5 {
        font-size: 15px;
    }

    .linux-env-method-description {
        font-size: 13px;
    }

    .linux-start-description {
        font-size: 14px;
    }

    .linux-usage-item h4 {
        font-size: 15px;
    }

    .linux-first-run-box {
        padding: 15px;
    }

    .linux-first-run-box h4 {
        font-size: 15px;
    }

    .linux-first-run-description {
        font-size: 13px;
    }

    .linux-config-tips {
        padding: 12px;
    }

    .linux-config-tips h5 {
        font-size: 13px;
    }

    .linux-config-tips ul {
        font-size: 12px;
    }

    .linux-success-box {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .linux-success-content h4 {
        font-size: 15px;
    }

    .linux-success-content p {
        font-size: 13px;
    }

    .troubleshooting-solutions li {
        font-size: 13px;
    }

    .next-step-box {
        padding: 20px 15px;
    }

    .next-step-header h4 {
        font-size: 16px;
    }

    .next-step-description {
        font-size: 13px;
    }

    .config-method-box {
        padding: 15px;
    }

    .config-method-header h5 {
        font-size: 15px;
    }

    .config-method-description {
        font-size: 13px;
    }

    .config-method-steps li {
        font-size: 13px;
    }

    .config-download-link {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 12px;
        font-size: 13px;
    }

    .install-method-box {
        padding: 20px 15px;
    }

    .install-method-icon h4 {
        font-size: 16px;
    }

    .install-method-description {
        font-size: 13px;
    }

    .install-note {
        font-size: 12px;
    }

    .verify-install-box {
        padding: 15px;
    }

    .verify-install-header h4 {
        font-size: 15px;
    }

    .verify-install-description {
        font-size: 13px;
    }

    .macos-env-config-box {
        padding: 20px 15px;
    }

    .macos-env-config-header h4 {
        font-size: 16px;
    }

    .macos-env-config-description {
        font-size: 13px;
    }

    .macos-env-method-box {
        padding: 15px;
    }

    .macos-env-method-box h5 {
        font-size: 15px;
    }

    .macos-env-method-description {
        font-size: 13px;
    }

    .env-config-box {
        padding: 20px 15px;
    }

    .env-config-icon h4 {
        font-size: 16px;
    }

    .env-config-description {
        font-size: 13px;
    }

    .env-method-box {
        padding: 15px;
    }

    .env-method-box h5 {
        font-size: 15px;
    }

    .env-method-description {
        font-size: 13px;
    }

    .shell-config-section h6 {
        font-size: 13px;
    }

    .verify-env-box {
        padding: 12px;
    }

    .verify-env-header h5 {
        font-size: 14px;
    }

    .verify-env-description {
        font-size: 12px;
    }

    .step-intro {
        font-size: 14px;
    }

    .start-usage-box {
        padding: 15px;
    }

    .start-usage-box h4 {
        font-size: 15px;
    }

    .project-usage-box {
        padding: 15px;
    }

    .project-usage-box h4 {
        font-size: 15px;
    }

    .usage-box {
        padding: 20px 15px;
    }

    .usage-description {
        font-size: 13px;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .env-config-box {
        background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
        border-color: #0369a1;
        border-left-color: #0ea5e9;
    }

    .env-config-icon {
        background: #1e293b;
        color: #38bdf8;
    }

    .env-config-box h4 {
        color: #7dd3fc;
    }

    .env-description {
        color: #d1d5db;
    }

    .env-method-title {
        color: #c084fc;
        border-left-color: #c084fc;
    }

    .env-option-recommended {
        background: #064e3b;
        border-color: #065f46;
        border-left-color: #22c55e;
    }

    .env-option-recommended .env-option-header h5 {
        color: #6ee7b7;
    }

    .env-option-temporary {
        background: #451a03;
        border-color: #78350f;
        border-left-color: #f59e0b;
    }

    .env-option-temporary .env-option-header h5 {
        color: #fbbf24;
    }

    .env-option-description {
        color: #d1d5db;
    }

    .env-note-box {
        background: #0c4a6e;
    }

    .env-note-box svg {
        color: #38bdf8;
    }

    .env-note-box p {
        color: #bae6fd;
    }

    .env-warning-box {
        background: #451a03;
    }

    .env-warning-box svg {
        color: #fbbf24;
    }

    .env-warning-box p {
        color: #fde68a;
    }

    .api-key-reminder {
        background: #450a0a;
        border-color: #7f1d1d;
        border-left-color: #ef4444;
    }

    .api-key-reminder svg {
        color: #fca5a5;
    }

    .api-key-reminder p {
        color: #fecaca;
    }

    .api-key-reminder code {
        background: #7f1d1d;
        color: #fecaca;
    }

    .verify-env-section {
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        border-color: #1d4ed8;
        border-left-color: #3b82f6;
    }

    .verify-env-header svg {
        color: #60a5fa;
    }

    .verify-env-header h4 {
        color: #93c5fd;
    }

    .verify-env-description {
        color: #d1d5db;
    }

    .verify-env-method h5 {
        color: #93c5fd;
    }

    .usage-box h4 {
        color: #e2e8f0;
    }

    .info-box-blue {
        background: #0c4a6e;
        border-color: #0369a1;
        border-left-color: #3b82f6;
    }

    .info-box-blue svg {
        color: #60a5fa;
    }

    .info-box-blue p {
        color: #bae6fd;
    }

    .warning-box-red {
        background: #450a0a;
        border-color: #7f1d1d;
        border-left-color: #ef4444;
    }

    .warning-box-red svg {
        color: #fca5a5;
    }

    .warning-box-red .warning-content h4 {
        color: #fecaca;
    }

    .warning-box-red .warning-content p {
        color: #fecaca;
    }

    .solution-box {
        background: #064e3b;
        border-color: #065f46;
        border-left-color: #22c55e;
    }

    .solution-box h4 {
        color: #6ee7b7;
    }

    .solution-steps {
        color: #d1fae5;
    }

    .solution-steps li {
        color: #d1fae5;
    }

    .solution-steps strong {
        color: #6ee7b7;
    }

    .solution-steps p {
        color: #d1fae5;
    }

    .download-link-inline {
        color: #60a5fa;
    }

    .success-box {
        background: #064e3b;
        border-color: #065f46;
        border-left-color: #22c55e;
    }

    .success-box svg {
        color: #6ee7b7;
    }

    .success-box p {
        color: #d1fae5;
    }

    .troubleshooting-section {
        background: #1e293b;
        border-color: #334155;
    }

    .troubleshooting-header {
        border-bottom-color: #334155;
    }

    .troubleshooting-header svg {
        color: #fca5a5;
    }

    .troubleshooting-header h3 {
        color: #e2e8f0;
    }

    .troubleshooting-item {
        background: #0f172a;
        border-color: #334155;
        border-left-color: #f59e0b;
    }

    .troubleshooting-question svg {
        color: #fbbf24;
    }

    .troubleshooting-question h4 {
        color: #e2e8f0;
    }

    .troubleshooting-description {
        color: #cbd5e1;
    }

    .troubleshooting-solutions li {
        color: #cbd5e1;
    }

    .troubleshooting-solutions code {
        background: #1e293b;
        color: #e2e8f0;
    }

    .next-step-box {
        background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
        border-color: #f59e0b;
        border-left-color: #f59e0b;
    }

    .next-step-header svg {
        color: #fbbf24;
    }

    .next-step-header h4 {
        color: #fde68a;
    }

    .next-step-description {
        color: #fde68a;
    }

    .config-method-box {
        background: #0f172a;
        border-color: #334155;
    }

    .config-method-recommended {
        background: #064e3b;
        border-left-color: #22c55e;
    }

    .config-method-header h5 {
        color: #e2e8f0;
    }

    .config-method-recommended .config-method-header h5 {
        color: #6ee7b7;
    }

    .config-method-description {
        color: #cbd5e1;
    }

    .config-method-recommended .config-method-description {
        color: #d1fae5;
    }

    .config-method-steps li {
        color: #cbd5e1;
    }

    .config-method-recommended .config-method-steps li {
        color: #d1fae5;
    }

    .config-download-link {
        background: #065f46;
    }

    .config-download-link svg {
        color: #6ee7b7;
    }

    .config-download-link span {
        color: #d1fae5;
    }

    .config-download-link a {
        color: #60a5fa;
    }

    .install-method-box {
        background: #1e1b4b;
        border-color: #4c1d95;
        border-left-color: #6366f1;
    }

    .install-method-icon svg {
        color: #818cf8;
    }

    .install-method-icon h4 {
        color: #e2e8f0;
    }

    .install-method-description {
        color: #cbd5e1;
    }

    .install-note {
        color: #94a3b8;
    }

    .verify-install-box {
        background: #064e3b;
        border-color: #065f46;
        border-left-color: #22c55e;
    }

    .verify-install-header svg {
        color: #6ee7b7;
    }

    .verify-install-header h4 {
        color: #d1fae5;
    }

    .verify-install-description {
        color: #d1fae5;
    }

    .macos-env-config-box {
        background: #451a03;
        border-color: #78350f;
    }

    .macos-env-config-header svg {
        color: #fbbf24;
    }

    .macos-env-config-header h4 {
        color: #fde68a;
    }

    .macos-env-config-description {
        color: #fde68a;
    }

    .macos-env-method-box {
        background: #0f172a;
        border-color: #334155;
    }

    .macos-env-method-box h5 {
        color: #e2e8f0;
    }

    .macos-env-method-description {
        color: #cbd5e1;
    }

    .env-config-box {
        background: #451a03;
        border-color: #78350f;
        border-left-color: #f59e0b;
    }

    .env-config-icon svg {
        color: #fbbf24;
    }

    .env-config-icon h4 {
        color: #fde68a;
    }

    .env-config-description {
        color: #fde68a;
    }

    .env-method-box {
        background: #0f172a;
        border-color: #334155;
    }

    .env-method-recommended {
        background: #064e3b;
        border-left-color: #22c55e;
    }

    .env-method-box h5 {
        color: #e2e8f0;
    }

    .env-method-recommended h5 {
        color: #6ee7b7;
    }

    .env-method-description {
        color: #cbd5e1;
    }

    .env-method-recommended .env-method-description {
        color: #d1fae5;
    }

    .shell-config-section h6 {
        color: #e2e8f0;
    }

    .env-method-recommended .shell-config-section h6 {
        color: #d1fae5;
    }

    .verify-env-box {
        background: #1e3a8a;
        border-color: #1e40af;
    }

    .verify-env-header h5 {
        color: #bfdbfe;
    }

    .verify-env-description {
        color: #bfdbfe;
    }

    .step-intro {
        color: #cbd5e1;
    }

    .start-usage-box {
        background: #1e1b4b;
        border-color: #4c1d95;
    }

    .start-usage-box h4 {
        color: #e2e8f0;
    }

    .project-usage-box {
        background: #1e1b4b;
        border-color: #4c1d95;
    }

    .project-usage-box h4 {
        color: #e2e8f0;
    }

    .usage-box {
        background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
        border-color: #0284c7;
        border-left-color: #0ea5e9;
    }

    .usage-description {
        color: #e0f2fe;
    }

    /* Linux 暗色模式 */
    .linux-install-section {
        background: #064e3b;
        border-color: #065f46;
    }

    .linux-install-header .check-icon {
        color: #6ee7b7;
    }

    .linux-install-header h2 {
        color: #e2e8f0;
    }

    .linux-install-description {
        color: #cbd5e1;
    }

    .linux-command-title {
        color: #e2e8f0;
    }

    .linux-warning-box {
        background: #451a03;
        border-color: #78350f;
    }

    .linux-warning-content h4 {
        color: #fde68a;
    }

    .linux-warning-content ul {
        color: #fde68a;
    }

    .linux-verify-box {
        background: #064e3b;
        border-color: #065f46;
    }

    .linux-verify-box h4 {
        color: #d1fae5;
    }

    .linux-verify-box p {
        color: #a7f3d0;
    }

    .linux-success-message {
        color: #d1fae5;
    }

    .linux-next-step-box {
        background: #7f1d1d;
        border-color: #991b1b;
    }

    .linux-next-step-box h4 {
        color: #fecaca;
    }

    .linux-next-step-box > p {
        color: #fecaca;
    }

    .linux-method-item h5 {
        color: #fecaca;
    }

    .linux-method-description {
        color: #fecaca;
    }

    .linux-method-steps {
        color: #fecaca;
    }

    .linux-download-link {
        color: #fecaca;
    }

    .linux-download-link svg {
        color: #fecaca;
    }

    .linux-download-link a {
        color: #93c5fd;
    }

    .linux-method-recommended h4 {
        color: #6ee7b7;
    }

    .linux-method-description {
        color: #cbd5e1;
    }

    .linux-method-recommended .linux-method-description {
        color: #d1fae5;
    }

    .linux-method-steps {
        color: #cbd5e1;
    }

    .linux-method-recommended .linux-method-steps {
        color: #d1fae5;
    }

    .linux-download-link {
        background: #0f172a;
        border-color: #065f46;
        color: #d1fae5;
    }

    .linux-download-link svg {
        color: #6ee7b7;
    }

    .linux-manual-section {
        background: #1f2937;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .linux-manual-header h3 {
        color: #e2e8f0;
    }

    .linux-manual-description {
        color: #cbd5e1;
    }

    .linux-nodejs-install-box {
        background: #0c4a6e;
        border-color: #075985;
    }

    .linux-nodejs-header svg {
        color: #7dd3fc;
    }

    .linux-nodejs-header h4 {
        color: #e0f2fe;
    }

    .linux-distro-section h5 {
        color: #e0f2fe;
    }

    .linux-verify-nodejs-box {
        background: #064e3b;
        border-color: #065f46;
    }

    .linux-verify-nodejs-box h4 {
        color: #d1fae5;
    }

    .linux-verify-nodejs-box p {
        color: #a7f3d0;
    }

    .linux-install-claude-box {
        background: #064e3b;
        border-color: #065f46;
    }

    .linux-install-claude-header svg {
        color: #6ee7b7;
    }

    .linux-install-claude-header h4 {
        color: #d1fae5;
    }

    .linux-install-claude-description {
        color: #a7f3d0;
    }

    .linux-install-note {
        color: #a7f3d0;
    }

    .linux-verify-claude-box {
        background: #064e3b;
        border-color: #065f46;
    }

    .linux-verify-claude-box h4 {
        color: #d1fae5;
    }

    .linux-env-config-box {
        background: #581c87;
        border-color: #7e22ce;
    }

    .linux-env-config-header svg {
        color: #e9d5ff;
    }

    .linux-env-config-header h4 {
        color: #f3e8ff;
    }

    .linux-env-method-item h5 {
        color: #f3e8ff;
    }

    .linux-env-method-description {
        color: #e9d5ff;
    }

    .linux-start-description {
        color: #cbd5e1;
    }

    .linux-usage-item h4 {
        color: #e2e8f0;
    }

    .linux-env-config-header svg {
        color: #fbbf24;
    }

    .linux-env-config-header h4 {
        color: #fde68a;
    }

    .linux-env-config-description {
        color: #fde68a;
    }

    .linux-env-method-box {
        background: #0f172a;
        border-color: #334155;
    }

    .linux-env-method-box h5 {
        color: #e2e8f0;
    }

    .linux-env-method-description {
        color: #cbd5e1;
    }

    .linux-start-description {
        color: #cbd5e1;
    }

    .linux-first-run-box {
        background: #1e3a8a;
        border-color: #1e40af;
    }

    .linux-first-run-box h4 {
        color: #bfdbfe;
    }

    .linux-first-run-description {
        color: #bfdbfe;
    }

    .linux-config-tips {
        background: #0f172a;
        border-color: #1e40af;
    }

    .linux-config-tips h5 {
        color: #bfdbfe;
    }

    .linux-config-tips ul {
        color: #bfdbfe;
    }

    .linux-success-box {
        background: #064e3b;
        border-color: #065f46;
    }

    .linux-success-icon svg {
        color: #6ee7b7;
    }

    .linux-success-content h4 {
        color: #d1fae5;
    }

    .linux-success-content p {
        color: #d1fae5;
    }
}
