
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', 'Arial', sans-serif; }
        body { background-color: #ffffff; color: #333333; line-height: 1.6; overflow-x: hidden; }
        .bg-lines { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; overflow: hidden; }
        .line { position: absolute; background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.08), transparent); width: 1px; height: 100%; animation: lineMove 15s linear infinite; }
        @keyframes lineMove { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
        .particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
        .particle { position: absolute; background: rgba(0, 123, 255, 0.08); border-radius: 50%; animation: particleFloat 20s infinite linear; }
        @keyframes particleFloat { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; } }
        .container { max-width: 1400px; margin: 0 auto; padding: 20px; }
        .config-header { position: relative; padding: 60px 0; text-align: center; background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); border-radius: 20px; margin-bottom: 40px; border: 1px solid #e2e8f0; box-shadow: 0 10px 40px rgba(0, 123, 255, 0.08); }
        .config-header h1 { font-size: 3rem; font-weight: 800; background: linear-gradient(90deg, #007bff, #00c6ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .config-subtitle { font-size: 1.3rem; color: #64748b; margin-top: 15px; }
        .ai-badge { display: inline-block; background: linear-gradient(135deg, #6f42c1, #007bff); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; margin-left: 10px; vertical-align: middle; }
        .npu-badge { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; padding: 2px 8px; border-radius: 12px; font-size: 0.7rem; display: inline-block; margin-left: 8px; }
        .config-steps { display: flex; justify-content: center; margin: 40px 0 60px; flex-wrap: wrap; gap: 15px; }
        .step { display: flex; flex-direction: column; align-items: center; margin: 0 30px; text-align: center; cursor: pointer; }
        .step-circle { width: 50px; height: 50px; border-radius: 50%; background: #f1f5f9; border: 3px solid #e2e8f0; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #94a3b8; margin-bottom: 15px; transition: all 0.3s ease; }
        .step.active .step-circle { background: linear-gradient(135deg, #007bff, #00c6ff); border-color: #007bff; color: white; transform: scale(1.1); box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2); }
        .step-label { font-size: 0.9rem; color: #64748b; }
        .step.active .step-label { color: #007bff; font-weight: 600; }
        .config-section { margin-bottom: 40px; display: none; }
        .config-section.active { display: block; animation: fadeIn 0.5s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .section-header { display: flex; align-items: center; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 2px solid #f1f5f9; position: relative; }
        .section-header::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 80px; height: 2px; background: linear-gradient(90deg, #007bff, #00c6ff); }
        .section-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #f1f5f9, #e2e8f0); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-right: 20px; color: #007bff; font-size: 1.8rem; }
        .section-title { font-size: 1.8rem; font-weight: 700; color: #1e293b; }
        .options-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 25px; }
        .option-card { background: white; border-radius: 16px; padding: 25px; border: 2px solid #e2e8f0; transition: all 0.4s ease; cursor: pointer; position: relative; }
        .option-card:hover { transform: translateY(-5px); border-color: #007bff; box-shadow: 0 15px 30px rgba(0, 123, 255, 0.1); }
        .option-card.selected { border-color: #007bff; background: linear-gradient(135deg, rgba(0, 123, 255, 0.03), rgba(0, 198, 255, 0.03)); }
        .option-card.selected::before { content: '✓'; position: absolute; top: 15px; right: 15px; width: 30px; height: 30px; background: #007bff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; }
        .option-header { display: flex; align-items: center; margin-bottom: 20px; }
        .option-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #f1f5f9, #e2e8f0); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: #007bff; font-size: 1.5rem; }
        .option-title { font-size: 1.3rem; font-weight: 600; color: #1e293b; }
        .option-desc { color: #475569; font-size: 0.95rem; }
        .option-specs { margin-top: 15px; padding-top: 15px; border-top: 1px solid #f1f5f9; }
        .spec-item { display: flex; justify-content: space-between; padding: 5px 0; color: #64748b; font-size: 0.9rem; }
        .spec-value { font-weight: 600; color: #007bff; }
        .wireless-options { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
        .wireless-option { flex: 1 1 160px; background: white; border-radius: 12px; padding: 15px; border: 2px solid #e2e8f0; cursor: pointer; text-align: center; transition: all 0.3s ease; }
        .wireless-option:hover { border-color: #007bff; transform: translateY(-3px); }
        .wireless-option.selected { border-color: #007bff; background: rgba(0, 123, 255, 0.03); }
        .wireless-icon { font-size: 2rem; color: #94a3b8; margin-bottom: 10px; }
        .wireless-option.selected .wireless-icon { color: #007bff; }
        .wireless-title { font-weight: 600; color: #1e293b; font-size: 1rem; }
        .wireless-desc { font-size: 0.8rem; color: #64748b; }
        .config-nav { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 30px; border-top: 1px solid #f1f5f9; }
        .nav-btn { display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #007bff, #00c6ff); color: white; border: none; padding: 12px 28px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .nav-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3); }
        .nav-btn.prev { background: #f1f5f9; color: #64748b; }
        .nav-btn.prev:hover:not(:disabled) { background: #e2e8f0; }
        .nav-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
        .result-section { background: white; border-radius: 20px; padding: 40px; margin-top: 50px; border: 1px solid #e2e8f0; display: none; }
        .result-section.active { display: block; animation: fadeIn 0.5s ease; }
        .result-title { font-size: 2rem; font-weight: 700; text-align: center; color: #1e293b; }
        .final-model { background: linear-gradient(135deg, #f8fafc, #f1f5f9); border-radius: 16px; padding: 30px; text-align: center; margin: 30px 0; border: 2px solid #e2e8f0; }
        .model-value { font-size: 1.8rem; font-weight: 800; color: #007bff; word-break: break-all; }
        .specs-summary { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
        .spec-summary-card { background: white; border-radius: 12px; padding: 20px; border: 1px solid #f1f5f9; }
        .spec-summary-title { font-weight: 600; color: #007bff; margin-bottom: 10px; }
        .n-board-row { display: flex; gap: 10px; align-items: center; margin-bottom: 15px; background: #f8fafc; padding: 15px; border-radius: 12px; border: 1px solid #e2e8f0; }
        .n-board-select { flex: 1; padding: 10px; border: 2px solid #e2e8f0; border-radius: 8px; }
        .remove-board-btn { background: none; border: none; color: #dc3545; font-size: 1.5rem; cursor: pointer; }
        .add-board-btn { background: white; border: 2px dashed #007bff; color: #007bff; padding: 12px 20px; border-radius: 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; }
        .io-recommend-section { margin-top: 40px; padding: 25px; background: #f9fbfd; border-radius: 16px; border: 1px solid #dde7f0; }
        .io-input-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 15px; margin: 20px 0; }
        .io-input-field label { font-weight: 600; color: #1e293b; display: block; margin-bottom: 5px; font-size: 0.85rem; }
        .io-input-field input, .io-input-field select { width: 100%; padding: 8px; border: 2px solid #e2e8f0; border-radius: 8px; }
        .rec-card-small { background: white; border-radius: 12px; padding: 15px; border: 2px solid #e2e8f0; text-align: center; transition: 0.2s; min-width: 200px; max-width: 450px; }
        .rec-card-small:hover { border-color: #007bff; }
        .rec-title { font-size: 1.1rem; font-weight: 700; color: #007bff; }
        .apply-btn { background: #007bff; color: white; border: none; padding: 6px 16px; border-radius: 20px; cursor: pointer; margin-top: 8px; font-size: 0.85rem; }
        .summary-box { background: #e8f4fd; border-radius: 12px; padding: 20px; margin: 20px 0; border-left: 4px solid #007bff; }
        .requirement-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #dde7f0; }
        .requirement-label { font-weight: 600; color: #1e293b; }
        .requirement-value { color: #007bff; font-weight: 600; }
        @media (max-width: 768px) { .config-header h1 { font-size: 2rem; } .options-grid { grid-template-columns: 1fr; } .step { margin: 0 15px; } .config-steps { gap: 8px; } .wireless-option { flex: 1 1 120px; } }
    