        :root {
            --scikiq-blue: #003087;
            --scikiq-green: #00A859;
            --scikiq-light-blue: #00A3E0;
            --dark-bg: #0a0e27;
            --card-bg: rgba(255, 255, 255, 0.05);
            --anthropic-orange: #CC785C;
            --anthropic-purple: #7C3AED;
            --success-green: #10B981;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 50%, #0d2644 100%);
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
            padding-top: 80px;
        }

        .navbar {
            background: var(--card-bg) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            z-index: 1000;
            height: 80px;
        }

        .navbar-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--scikiq-light-blue), var(--scikiq-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .main-container {
            display: grid;
            grid-template-columns: 320px 1fr 380px;
            gap: 0;
            height: calc(100vh - 80px);
            position: relative;
        }

        /* File Browser */
        .file-browser {
            background: linear-gradient(135deg, rgba(0, 48, 135, 0.2), rgba(0, 0, 0, 0.4));
            border-right: 2px solid rgba(0, 163, 224, 0.3);
            overflow-y: auto;
            padding: 0;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        }

        .file-browser-header {
            padding: 1.2rem 1rem;
            border-bottom: 2px solid rgba(0, 163, 224, 0.3);
            background: linear-gradient(135deg, rgba(0, 163, 224, 0.1), rgba(0, 48, 135, 0.15));
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .file-tree-item {
            padding: 0.7rem 1rem;
            cursor: pointer;
            border-radius: 0;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            border-left: 3px solid transparent;
            margin: 0;
        }

        .file-tree-item:hover {
            background: rgba(0, 163, 224, 0.15);
            border-left-color: var(--scikiq-light-blue);
        }

        .file-tree-item.selected {
            background: rgba(0, 163, 224, 0.25);
            border-left: 3px solid var(--scikiq-light-blue);
            font-weight: 600;
        }

        .file-tree-item .icon {
            margin-right: 0.8rem;
            width: 20px;
            text-align: center;
            font-size: 1rem;
        }

        .file-tree-item.directory {
            font-weight: 600;
            background: rgba(0, 48, 135, 0.1);
        }

        .file-tree-item.directory:hover {
            background: rgba(0, 48, 135, 0.2);
        }

        .file-tree-children {
            margin-left: 0;
            padding-left: 1.5rem;
            border-left: 2px solid rgba(0, 163, 224, 0.1);
        }

        .file-browser-scroll-content {
            padding: 0.5rem 0;
        }

        /* Main Content */
        .main-content {
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .tabs-container {
            display: flex;
            background: rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0 1rem;
        }

        .tab {
            padding: 1rem 2rem;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .tab:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .tab.active {
            border-bottom-color: var(--anthropic-orange);
            color: var(--anthropic-orange);
        }

        .tab-content {
            display: none;
            flex: 1;
            overflow-y: auto;
            padding: 2rem;
        }

        .tab-content.active {
            display: block;
        }

        /* Code Editor */
        .code-editor {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            line-height: 1.6;
            height: 100%;
            overflow: auto;
        }

        .code-editor pre {
            margin: 0;
            color: #e0e0e0;
        }

        /* API List */
        .api-card {
            background: var(--card-bg);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .api-card:hover {
            border-color: var(--scikiq-light-blue);
            transform: translateY(-2px);
        }

        .api-route {
            font-family: 'Fira Code', monospace;
            font-size: 1.1rem;
            color: var(--anthropic-orange);
            margin-bottom: 0.5rem;
        }

        .api-methods {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.8rem;
        }

        .method-badge {
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .method-get {
            background: #10B981;
        }

        .method-post {
            background: #3B82F6;
        }

        .method-put {
            background: #F59E0B;
        }

        .method-delete {
            background: #EF4444;
        }

        /* Detection Reasoning Styles */
        .detection-section {
            margin-top: 1rem;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            border-left: 3px solid var(--scikiq-light-blue);
        }

        .detection-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
            cursor: pointer;
            user-select: none;
        }

        .detection-header:hover {
            color: var(--scikiq-light-blue);
        }

        .detection-score {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .score-value {
            padding: 0.2rem 0.6rem;
            background: linear-gradient(135deg, #10B981, #059669);
            border-radius: 6px;
            font-weight: bold;
        }

        .score-threshold {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .signal-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.8rem;
            margin: 0.3rem 0.3rem 0.3rem 0;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .signal-api {
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid #10B981;
            color: #10B981;
        }

        .signal-web {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid #EF4444;
            color: #EF4444;
        }

        .signal-weight {
            padding: 0.1rem 0.4rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            font-size: 0.75rem;
        }

        .detection-body {
            display: none;
        }

        .detection-body.expanded {
            display: block;
        }

        .no-signals {
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            font-size: 0.85rem;
        }

        /* Right Panel */
        .right-panel {
            background: rgba(0, 0, 0, 0.4);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            overflow-y: auto;
            padding: 1.5rem;
        }

        .panel-section {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }

        .panel-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--anthropic-orange);
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            margin-bottom: 0.5rem;
        }

        .stat-value {
            font-weight: 700;
            color: var(--scikiq-light-blue);
        }

        .stat-clickable {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .stat-clickable:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(3px);
        }

        /* Enhanced Domain Tree */
        .domain-group {
            margin-bottom: 0.8rem;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.02);
        }

        .domain-header {
            padding: 1rem;
            background: linear-gradient(135deg, rgba(0, 163, 224, 0.1), rgba(0, 48, 135, 0.1));
            border-bottom: 1px solid rgba(0, 163, 224, 0.2);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .domain-header:hover {
            background: linear-gradient(135deg, rgba(0, 163, 224, 0.15), rgba(0, 48, 135, 0.15));
        }

        .domain-checkbox {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--success-green);
        }

        .domain-icon {
            font-size: 1.2rem;
            width: 32px;
            text-align: center;
        }

        .domain-name {
            flex: 1;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--scikiq-light-blue);
        }

        .domain-badge {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid var(--success-green);
            color: var(--success-green);
        }

        .domain-badge .total {
            color: rgba(255, 255, 255, 0.7);
        }

        .domain-expand {
            font-size: 0.9rem;
            transition: transform 0.2s ease;
            color: rgba(255, 255, 255, 0.5);
        }

        .domain-expanded .domain-expand {
            transform: rotate(90deg);
        }

        .domain-apis {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .domain-expanded .domain-apis {
            max-height: 2000px;
        }

        .api-item {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.2s ease;
            background: rgba(0, 0, 0, 0.1);
        }

        .api-item:hover {
            background: rgba(0, 163, 224, 0.08);
            border-left: 3px solid var(--scikiq-light-blue);
            padding-left: calc(1rem - 3px);
        }

        .api-item:last-child {
            border-bottom: none;
        }

        .api-checkbox {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--scikiq-light-blue);
            margin-left: 0.5rem;
        }

        .api-method {
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            font-family: 'Fira Code', monospace;
        }

        .method-GET {
            background: rgba(16, 185, 129, 0.2);
            color: #10B981;
            border: 1px solid #10B981;
        }

        .method-POST {
            background: rgba(59, 130, 246, 0.2);
            color: #3B82F6;
            border: 1px solid #3B82F6;
        }

        .method-PUT {
            background: rgba(251, 191, 36, 0.2);
            color: #FBBF24;
            border: 1px solid #FBBF24;
        }

        .method-DELETE {
            background: rgba(239, 68, 68, 0.2);
            color: #EF4444;
            border: 1px solid #EF4444;
        }

        .api-route {
            flex: 1;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .api-confidence {
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .confidence-high {
            background: rgba(16, 185, 129, 0.2);
            color: #10B981;
            border: 1px solid #10B981;
        }

        .confidence-medium {
            background: rgba(251, 191, 36, 0.2);
            color: #FBBF24;
            border: 1px solid #FBBF24;
        }

        .confidence-low {
            background: rgba(239, 68, 68, 0.2);
            color: #EF4444;
            border: 1px solid #EF4444;
        }

        .confidence-pending {
            background: rgba(148, 163, 184, 0.2);
            color: #94A3B8;
            border: 1px solid #94A3B8;
        }

        /* Code Modal */
        .code-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .code-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .code-modal-content {
            background: var(--card-bg);
            border: 2px solid var(--scikiq-light-blue);
            border-radius: 12px;
            width: 96%;
            max-width: 1800px;
            max-height: 92vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .code-modal-header {
            padding: 1.5rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .code-modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--scikiq-light-blue);
        }

        .code-modal-close {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid #EF4444;
            color: #EF4444;
            border-radius: 8px;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .code-modal-close:hover {
            background: #EF4444;
            color: white;
        }

        .code-modal-body {
            display: flex;
            flex: 1;
            overflow: hidden;
        }

        .code-tree-panel {
            width: 280px;
            border-right: 2px solid rgba(255, 255, 255, 0.1);
            overflow-y: auto;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.2);
        }

        .code-display-panel {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
            border-right: 2px solid rgba(255, 255, 255, 0.1);
        }

        .code-metadata-panel {
            width: 380px;
            overflow-y: auto;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.1);
        }

        .tree-domain {
            margin-bottom: 0.8rem;
        }

        .tree-domain-header {
            background: linear-gradient(135deg, var(--scikiq-light-blue), #0284c7);
            padding: 0.6rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tree-domain-header:hover {
            transform: translateX(3px);
            background: linear-gradient(135deg, #0ea5e9, var(--scikiq-light-blue));
        }

        .tree-domain-header .domain-count {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .tree-domain-header .domain-count.badge-high {
            background: rgba(34, 197, 94, 0.3);
            color: #22C55E;
            border: 1px solid rgba(34, 197, 94, 0.5);
        }

        .tree-domain-header .domain-count.badge-low {
            background: rgba(239, 68, 68, 0.3);
            color: #EF4444;
            border: 1px solid rgba(239, 68, 68, 0.5);
        }

        .tree-domain-header .domain-count.badge-mixed {
            background: rgba(251, 191, 36, 0.3);
            color: #FBB024;
            border: 1px solid rgba(251, 191, 36, 0.5);
        }

        .tree-endpoint.score-high {
            border-left: 3px solid #22C55E;
        }

        .tree-endpoint.score-low {
            border-left: 3px solid #EF4444;
        }

        .tree-endpoints {
            margin-left: 1rem;
            margin-top: 0.5rem;
            display: none;
        }

        .tree-endpoints.expanded {
            display: block;
        }

        .tree-endpoint {
            padding: 0.5rem 0.8rem;
            margin: 0.3rem 0;
            background: rgba(255, 255, 255, 0.05);
            border-left: 3px solid var(--scikiq-light-blue);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tree-endpoint:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .tree-endpoint.active {
            background: rgba(14, 165, 233, 0.2);
            border-left-color: #10B981;
        }

        .tree-endpoint-method {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-right: 0.5rem;
        }

        .tree-endpoint-method.GET {
            background: #10B981;
        }

        .tree-endpoint-method.POST {
            background: #3B82F6;
        }

        .tree-endpoint-method.PUT {
            background: #F59E0B;
        }

        .tree-endpoint-method.DELETE {
            background: #EF4444;
        }

        .tree-endpoint-route {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            display: block;
            margin-top: 0.2rem;
        }

        .code-display-panel pre {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            overflow-x: auto;
            color: #e5e7eb;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        .code-placeholder {
            text-align: center;
            padding: 3rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .code-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .metadata-section {
            background: rgba(255, 255, 255, 0.05);
            border-left: 3px solid var(--scikiq-light-blue);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .metadata-section-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--scikiq-light-blue);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .metadata-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .metadata-row:last-child {
            border-bottom: none;
        }

        .metadata-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .metadata-value {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .metadata-badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            margin: 0.2rem;
        }

        .badge-high {
            background: #10B981;
            color: white;
        }

        .badge-medium {
            background: #F59E0B;
            color: white;
        }

        .badge-low {
            background: #EF4444;
            color: white;
        }

        .badge-info {
            background: #3B82F6;
            color: white;
        }

        .detection-signal-item {
            padding: 0.6rem;
            margin: 0.4rem 0;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            border-left: 3px solid #10B981;
        }

        .detection-signal-item.negative {
            border-left-color: #EF4444;
        }

        .signal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.3rem;
        }

        .signal-type {
            font-weight: 600;
            color: var(--scikiq-light-blue);
            font-size: 0.9rem;
        }

        .signal-weight {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.2rem 0.6rem;
            border-radius: 10px;
            font-size: 0.75rem;
        }

        .signal-value {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        .param-item {
            padding: 0.5rem;
            margin: 0.3rem 0;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
        }

        .param-name {
            font-weight: 600;
            color: #3B82F6;
            font-family: 'Courier New', monospace;
        }

        .param-type {
            color: #10B981;
            font-size: 0.85rem;
            font-family: 'Courier New', monospace;
        }

        .param-required {
            color: #EF4444;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .plain-english {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(59, 130, 246, 0.1));
            border: 1px solid var(--scikiq-light-blue);
            border-radius: 8px;
            padding: 1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .mcp-suitability {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            margin-top: 0.8rem;
        }

        .mcp-score-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            border: 4px solid;
        }

        .mcp-score-high {
            border-color: #3B82F6;
            background: rgba(59, 130, 246, 0.2);
            color: #3B82F6;
        }

        .mcp-score-low {
            border-color: #EF4444;
            background: rgba(239, 68, 68, 0.2);
            color: #EF4444;
        }

        .mcp-recommendation {
            flex: 1;
        }

        .mcp-recommendation-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .mcp-recommendation-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .doc-action-btn {
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .doc-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        }

        .doc-action-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Welcome Screen Styles */
        .welcome-screen {
            position: relative;
            top: 0px;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 50%, #0d2644 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            padding: 2rem;
            overflow-y: auto;
        }

        .welcome-content {
            max-width: 1200px;
            width: 100%;
        }

        .welcome-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .method-selection {
            margin-top: 2rem;
        }

        .method-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(378px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .method-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .method-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--scikiq-light-blue) 0%, var(--scikiq-green) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .method-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--scikiq-light-blue);
            box-shadow: 0 20px 60px rgba(0, 163, 224, 0.3);
        }

        .method-card:hover::before {
            opacity: 0.1;
        }

        .method-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--scikiq-light-blue), var(--scikiq-green));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 163, 224, 0.3);
        }

        .method-card h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .method-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .method-card-features {
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.6rem 0;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
        }

        .feature-item i {
            color: var(--success-green);
            font-size: 1.1rem;
        }

        .method-card-cta {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--scikiq-light-blue);
            padding: 1rem;
            background: rgba(0, 163, 224, 0.1);
            border-radius: 8px;
            border: 1px solid rgba(0, 163, 224, 0.2);
            transition: all 0.3s ease;
        }

        .method-card:hover .method-card-cta {
            background: rgba(0, 163, 224, 0.2);
            border-color: var(--scikiq-light-blue);
            transform: translateX(5px);
        }

        /* Input Modal Styles */
        .input-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 15000;
            padding: 2rem;
        }

        .input-modal-content {
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(13, 38, 68, 0.95));
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 3rem;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

        .input-modal h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--scikiq-light-blue);
        }

        .input-group {
            margin-bottom: 1.5rem;
        }

        .input-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .input-group input {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--scikiq-light-blue);
            background: rgba(255, 255, 255, 0.08);
        }

        .input-group select {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .input-group select:focus {
            outline: none;
            border-color: var(--scikiq-light-blue);
            background: rgba(255, 255, 255, 0.08);
        }

        .input-group select option {
            background: var(--dark-bg) !important;
            color: white !important;
            padding: 0.5rem;
            border: none;
        }

        .input-group select option:checked {
            background: var(--scikiq-light-blue) !important;
            color: white !important;
        }

        .input-group select option:hover {
            background: rgba(0, 163, 224, 0.2) !important;
            color: white !important;
        }

        /* Global select styling for all select elements */
        select {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            color: white !important;
            border-radius: 8px !important;
            padding: 0.75rem !important;
        }

        select option {
            background: #1a1f3a !important;
            color: white !important;
            padding: 0.5rem !important;
            border: none !important;
        }

        select option:checked {
            background: var(--scikiq-light-blue) !important;
            color: white !important;
        }

        select option:hover {
            background: rgba(0, 163, 224, 0.3) !important;
            color: white !important;
        }

        /* Additional select styling for better visibility */
        .input-group select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            padding-right: 3rem;
        }

        .input-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .input-buttons button {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--scikiq-light-blue), var(--scikiq-green));
            color: white;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 163, 224, 0.4);
        }

        .btn-secondary-custom {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
        }

        .btn-secondary-custom:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .btn-success-custom {
            background: linear-gradient(135deg, var(--success-green), #059669);
            color: white;
            border: 1px solid var(--success-green);
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .btn-success-custom:hover {
            background: linear-gradient(135deg, #059669, var(--success-green));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

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

        /* Action Buttons */
        .action-btn {
            background: linear-gradient(135deg, var(--anthropic-orange), var(--anthropic-purple));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 0.8rem;
        }

        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(204, 120, 92, 0.4);
        }

        .action-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* MCP Tools Tab Action Buttons */
        .mcp-action-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
            width: auto;
            margin: 0;
        }

        .mcp-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

        .mcp-action-btn.copy-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mcp-action-btn.copy-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .mcp-action-btn.download-btn {
            background: linear-gradient(135deg, var(--success-green), #059669);
        }

        .mcp-action-btn.download-btn:hover {
            background: linear-gradient(135deg, #059669, var(--success-green));
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        }

        .mcp-action-btn.deploy-btn {
            background: linear-gradient(135deg, var(--scikiq-light-blue), #0891B2);
        }

        .mcp-action-btn.deploy-btn:hover {
            background: linear-gradient(135deg, #0891B2, var(--scikiq-light-blue));
            box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
        }

        .mcp-action-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Loading Spinner */
        .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

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

        /* Documentation Preview */
        .doc-preview {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            padding: 1rem;
            max-height: 600px;
            overflow-y: auto;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .doc-preview h1 {
            font-size: 1.3rem;
            color: var(--anthropic-orange);
            margin-bottom: 0.8rem;
        }

        .doc-preview h2 {
            font-size: 1.1rem;
            color: var(--scikiq-light-blue);
            margin: 1rem 0 0.5rem;
        }

        .doc-preview h3 {
            font-size: 1rem;
            color: var(--scikiq-green);
            margin: 0.8rem 0 0.4rem;
        }

        .doc-preview code {
            background: rgba(0, 0, 0, 0.5);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }

        /* Scrollbars */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Range Slider Styling */
        input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 5px;
            outline: none;
            cursor: pointer;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            border: 2px solid var(--anthropic-purple);
            transition: all 0.2s ease;
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.6);
        }

        input[type="range"]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            border: 2px solid var(--anthropic-purple);
            transition: all 0.2s ease;
        }

        input[type="range"]::-moz-range-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.6);
        }
