
    .llms-wrapper {
        --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
        --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        justify-content: center;
        padding: clamp(0px, 5vw, 0px) 20px;
    }

    .llms-panel {
        position: relative;                
        width: 100%;
        max-width: 1400px;
        border-radius: 28px;
        padding: clamp(28px, 5vw, 56px);
    }
    
    #bgCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.5; z-index: 0; }
    .llms-content { position: relative; z-index: 1; }

    /* ---------- INPUT AREA ---------- */
    .search-box-start { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 20px; padding: 12px; display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; position: relative; z-index: 10; box-shadow: 0 12px 30px rgba(0,0,0,0.03); transition: all 0.3s; }
    .search-box-start:focus-within { border-color: var(--primary-color); box-shadow: 0 12px 40px var(--primary-shadow); }
    
    .search-input-wrap { display: flex; align-items: center; gap: 12px; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 14px; padding: 0 20px; height: 60px; transition: 0.2s; }
    .search-input-wrap:focus-within { border-color: var(--primary-color); background: var(--bg-body); }
    .search-input { flex: 1; height: 100%; border: none; background: transparent; font-size: 16px; color: var(--text-main); font-weight: 500; font-family: 'Space Mono', monospace; outline: none; }
    .search-input::placeholder { color: var(--text-muted); opacity: 0.6; }
    
    .search-btn { height: 60px; border-radius: 14px; border: none; color: #fff; background: linear-gradient(135deg, var(--primary-color), var(--primary-gradient-end)); font-size: 16px; font-weight: 800; cursor: pointer; transition: all 0.25s var(--ease-out); display: flex; align-items: center; justify-content: center; gap: 8px; position: relative; overflow: hidden; }
    .search-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 22px var(--primary-shadow); }
    .search-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    
    .scratch-btn { background: transparent; border: 1px solid var(--border-color); color: var(--text-main); height: 60px; border-radius: 14px; padding: 0 24px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.2s; white-space: nowrap; }
    .scratch-btn:hover { background: var(--bg-body); border-color: var(--primary-color); color: var(--primary-color); }
    
    @media(min-width: 768px) {
        .search-box-start { flex-direction: row; padding: 12px; border-radius: 100px; align-items: center; max-width: 1000px; }
        .search-input-wrap { flex: 1; border: none; background: transparent; height: 50px; padding: 0 16px; }
        .search-input-wrap:focus-within { border: none; background: transparent; }
        .search-btn { height: 50px; padding: 0 32px; border-radius: 100px; min-width: 160px; }
        .scratch-btn { height: 50px; border-radius: 100px; }
    }

    /* ---------- LOADING STATE ---------- */
    .llms-loading { text-align: center; padding: 40px 0; }
    .llms-orb { width: 80px; height: 80px; border-radius: 50%; background: var(--bg-body); border: 2px solid var(--primary-light); margin: 0 auto 24px auto; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 32px; box-shadow: 0 0 0 16px var(--primary-light); transition: all 0.3s; animation: pulse 2s infinite ease-in-out; }
    @keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--primary-light); } 70% { box-shadow: 0 0 0 20px rgba(0,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } }
    
    .llms-thinking-log { list-style: none; margin: 0; padding: 0 10px; display: flex; flex-direction: column; gap: 12px; max-width: 400px; margin: 0 auto; }
    .llms-thinking-log li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-muted); animation: slideInUp 0.4s ease forwards; }
    .llms-thinking-log li.active { color: var(--text-main); font-weight: 700; }
    .llms-thinking-log li.done { color: var(--text-muted); opacity: 0.6; }
    .llms-log-dot { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
    .llms-thinking-log li.active .llms-log-dot { border-color: var(--primary-color); color: var(--primary-color); }
    .llms-thinking-log li.done .llms-log-dot { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }

    /* ---------- RESULTS DASHBOARD ---------- */
    .llms-result { animation: fadeIn 0.5s ease; }
    .llms-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
    .llms-btn-ghost { background: transparent; border: 1px solid var(--border-color); border-radius: 10px; padding: 8px 16px; font-size: 13.5px; font-weight: 700; color: var(--text-muted); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
    .llms-btn-ghost:hover { border-color: var(--primary-color); color: var(--primary-color); }

    /* Stats Strip */
    .stats-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 30px; }
    .sc { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 12px; }
    .sc-lbl { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--text-muted); }
    .sc-val { font-size: 28px; font-weight: 900; color: var(--text-main); font-family: 'Space Mono', monospace; line-height: 1; }

    /* Workspace Grid */
    .workspace-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
    @media (min-width: 1000px) { .workspace-grid { grid-template-columns: 1fr 1fr; } }
    
    /* Workspace Panel */
    .ws-panel { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
    .panel-body { padding: 24px; }
    .panel-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border-color); background: var(--bg-body); }
    .panel-title { font-size: 16px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 8px; margin: 0; }

    /* Form Controls */
    .input-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
    .input-label { font-size: 13.5px; font-weight: 700; color: var(--text-muted); }
    .c-input { width: 100%; background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 10px; padding: 12px 14px; font-size: 14px; color: var(--text-main); transition: 0.2s; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
    .c-input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 4px var(--primary-light); }
    textarea.c-input { resize: vertical; min-height: 100px; }
    
    .act-btn { background: var(--bg-body); color: var(--text-main); border: 1px solid var(--border-color); border-radius: 8px; padding: 8px 16px; font-size: 13.5px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: 0.2s; }
    .act-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
    .act-btn.primary { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
    .act-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--primary-shadow); }
    .btn-icon { background: rgba(239, 68, 68, 0.1); color: var(--danger, #ef4444); border: none; border-radius: 8px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.2s; }
    .btn-icon:hover { background: var(--danger, #ef4444); color: #fff; }

    /* Data Table */
    .data-table-wrap { overflow-x: auto; margin-bottom: 24px; }
    .data-table { width: 100%; border-collapse: collapse; text-align: left; }
    .data-table th, .data-table td { padding: 10px 4px; border-bottom: 1px solid var(--border-color); }
    .data-table th { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

    /* Code Output */
    .code-box-wrapper { flex: 1; min-height: 400px; background: #1e1e24; margin: -1px; }
    .code-box { color: #a9b7c6; font-family: 'Space Mono', monospace; font-size: 14.5px; padding: 24px; overflow-x: auto; white-space: pre-wrap; line-height: 1.7; tab-size: 4; height: 100%; }
    .dark-mode .code-box-wrapper { background: rgba(0,0,0,0.3); }
    
    /* Templates Grid */
    .section-divider { display: flex; align-items: center; margin: 32px 0 24px; color: var(--text-muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
    .section-divider::before, .section-divider::after { content: ''; flex: 1; border-bottom: 1px solid var(--border-color); }
    .section-divider::before { margin-right: 16px; }
    .section-divider::after { margin-left: 16px; }
    .section-divider-text { display: flex; align-items: center; gap: 8px; }

    .template-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
    .template-card { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; cursor: pointer; transition: 0.2s; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 8px; }
    .template-card:hover { border-color: var(--primary-color); box-shadow: 0 8px 24px rgba(0,0,0,0.04); transform: translateY(-2px); }
    .t-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--primary-light); color: var(--primary-color); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
    .t-name { font-size: 14px; font-weight: 800; color: var(--text-main); margin: 0; }
    .t-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }
    .t-badge { position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; background: rgba(0,0,0,0.05); padding: 4px 8px; border-radius: 100px; color: var(--text-muted); }
    .dark-mode .t-badge { background: rgba(255,255,255,0.1); }

    /* ---------- HISTORY SECTION ---------- */
    .llms-history-section { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 20px; padding: 24px; margin-top: 30px; }
    .llms-history-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
    .llms-history-title { font-size: 15px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 8px; margin: 0; }
    .llms-history-list { display: flex; flex-direction: column; gap: 10px; }
    .llms-history-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; cursor: pointer; transition: 0.2s; gap: 12px; }
    .llms-history-item:hover { border-color: var(--primary-color); transform: translateY(-1px); }
    .llms-history-info { display: flex; align-items: center; gap: 10px; overflow: hidden; flex: 1; }
    .llms-history-badge { font-size: 12px; font-weight: 800; padding: 4px 8px; border-radius: 6px; font-family: 'Space Mono', monospace; background: var(--primary-light); color: var(--primary-color); white-space: nowrap; }
    .llms-history-url { font-size: 13.5px; font-weight: 700; color: var(--text-main); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .llms-history-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .llms-history-time { font-size: 12px; color: var(--text-muted); }
    .llms-history-del { background: transparent; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; border-radius: 6px; transition: 0.2s; display: flex; align-items: center; }
    .llms-history-del:hover { color: #ef4444; background: rgba(239, 68, 68, 0.1); }

    /* ---------- BENTO BOX FEATURES ---------- */
    .console-features { margin-top: 50px; width: 100%; }
    .bento-features-cluster { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(130px, auto); gap: 20px; width: 100%; position: relative; z-index: 2; }
    .bento-card { background: rgba(255, 255, 255, 0.015); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-color); border-radius: 24px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
    
    .bento-card::before {
        content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 150px; height: 150px; background-size: contain; background-repeat: no-repeat; background-position: center;
        opacity: 0.03; transition: all 0.5s ease; pointer-events: none; z-index: 0;
    }
    .bento-card:hover::before { opacity: 0.08; transform: translate(-50%, -50%) scale(1.1); }
    .dark-mode .bento-card::before { filter: invert(1); opacity: 0.05; }
    
    .feat-icon-cpu::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="4" y="4" width="16" height="16" rx="2"/><rect x="9" y="9" width="6" height="6"/><line x1="9" y1="1" x2="9" y2="4"/><line x1="15" y1="1" x2="15" y2="4"/><line x1="9" y1="20" x2="9" y2="23"/><line x1="15" y1="20" x2="15" y2="23"/><line x1="20" y1="9" x2="23" y2="9"/><line x1="20" y1="14" x2="23" y2="14"/><line x1="1" y1="9" x2="4" y2="9"/><line x1="1" y1="14" x2="4" y2="14"/></svg>'); }
    .feat-icon-zap::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>'); }
    .feat-icon-shield::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><path d="m9 12 2 2 4-4"/></svg>'); }
    .feat-icon-code::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="16 18 22 12 16 6"/><polyline points="8 6 2 12 8 18"/></svg>'); }
    .feat-icon-link::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"/><line x1="8" y1="12" x2="16" y2="12"/></svg>'); }
    .feat-icon-lock::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>'); }

    .bento-card::after { content: ''; position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%); pointer-events: none; }
    .bento-card:hover { transform: translateY(-4px) scale(1.01); border-color: var(--primary-color); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
    .bento-card-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; gap: 12px; }
    
    .dashed-ring-wrapper { position: relative; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; width: 44px; height: 44px; }
    .dashed-ring-wrapper::after { content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; border: 1px dashed var(--border-color); border-radius: 16px; opacity: 0.5; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0; transform-origin: center center; }
    .bento-card:hover .dashed-ring-wrapper::after { opacity: 1; transform: scale(1.1) rotate(180deg); border-color: var(--primary-color); }
    .bc-icon-wrapper { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-body); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.4s ease; margin-bottom: 0; position: relative; z-index: 1; }
    .bento-card:hover .bc-icon-wrapper { background: linear-gradient(135deg, var(--primary-color), var(--border-color)); color: white; border-color: transparent; transform: scale(1.1) rotate(4deg); }
    .bc-title { font-size: 16px; font-weight: 800; color: var(--text-main); margin: 0; }
    .bc-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; font-weight: 500; }
    
    @media (max-width: 900px) {
        .bento-features-cluster { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        .bento-features-cluster { grid-template-columns: 1fr; }
        .workspace-grid { grid-template-columns: 1fr; }
    }

    /* Duplicate Warning Badge */
    .dup-warn-badge {
        position: absolute;
        right: 10px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        color: #d97706;
        background: rgba(245, 158, 11, 0.15);
        padding: 2px 6px;
        border-radius: 4px;
        pointer-events: none;
    }

    /* Floating Scroll-to-Top Button */
    .llms-scroll-top-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--card-bg);
        border: 1.5px solid var(--border-color);
        color: var(--text-main);
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
        outline: none;
        animation: slideInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .llms-scroll-top-btn:hover {
        background: var(--primary-color);
        color: #ffffff;
        border-color: var(--primary-color);
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 16px 32px var(--primary-shadow, rgba(239, 68, 68, 0.35));
    }
    .llms-scroll-top-btn:active {
        transform: translateY(-1px) scale(0.96);
    }

    /* Specification Mode Tabs */
    .spec-mode-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        background: var(--bg-body, #0f172a);
        padding: 5px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }
    .spec-mode-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 9px 12px;
        border-radius: 8px;
        border: none;
        background: transparent;
        color: var(--text-muted);
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .spec-mode-btn:hover {
        color: var(--text-main);
        background: rgba(255, 255, 255, 0.04);
    }
    .spec-mode-btn.active {
        background: var(--card-bg, #1e293b);
        color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border: 1px solid var(--border-color);
    }

    /* Custom Designed Select Component */
    .custom-select-wrapper {
        position: relative;
        user-select: none;
        width: 100%;
    }
    .custom-select-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 8px 12px;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        background: var(--bg-body, #0f172a);
        color: var(--text-main);
        font-size: 12.5px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .custom-select-trigger:hover {
        border-color: var(--primary-color);
    }
    .custom-select-wrapper.open .custom-select-trigger {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    }
    .custom-select-trigger i {
        transition: transform 0.25s ease;
        color: var(--text-muted);
    }
    .custom-select-wrapper.open .custom-select-trigger i {
        transform: rotate(180deg);
    }
    .custom-select-dropdown {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        min-width: 160px;
        background: var(--card-bg, #1e293b);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        z-index: 9999;
        overflow: hidden;
    }
    .custom-option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        font-size: 12.5px;
        font-weight: 700;
        color: var(--text-main);
        cursor: pointer;
        transition: all 0.15s ease;
    }
    .custom-option:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--primary-color);
    }
    .custom-option.selected {
        background: rgba(239, 68, 68, 0.1);
        color: var(--primary-color);
    }
    .type-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-weight: 800;
        font-size: 12px;
    }
    .type-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
        flex-shrink: 0;
    }
    .type-dot.doc { background: #3b82f6; box-shadow: 0 0 6px rgba(59, 130, 246, 0.5); }
    .type-dot.allow { background: #10b981; box-shadow: 0 0 6px rgba(16, 185, 129, 0.5); }
    .type-dot.disallow { background: #ef4444; box-shadow: 0 0 6px rgba(239, 68, 68, 0.5); }
    .type-pill.doc { color: #3b82f6; }
    .type-pill.allow { color: #10b981; }
    .type-pill.disallow { color: #ef4444; }

    .data-table-wrap {
        overflow: visible !important;
    }

    /* Smooth Scrolling */
    #page-content, .page-content, .llms-wrapper, html {
        scroll-behavior: smooth;
    }

    @media (max-width: 768px) {
        .spec-mode-tabs {
            grid-template-columns: 1fr;
        }
    }

    /* Zero-Inline Enhancements */
    .search-input-wrap i { width: 20px; height: 20px; color: var(--primary-color); }
    .search-btn i, .scratch-btn i { width: 18px; height: 18px; }
    .llms-history-title i { color: var(--primary-color); }
    .llms-btn-ghost.btn-xs { padding: 4px 10px; font-size: 12px; }
    .llms-btn-ghost.btn-xs i { width: 12px; height: 12px; }
    .llms-history-del i { width: 14px; height: 14px; }
    .llms-log-dot i.spinner { animation: spin 2s linear infinite; }
    .api-err { text-align: center; }
    .api-err .ae-icon-wrap { width: 64px; height: 64px; border-radius: 16px; background: rgba(239, 68, 68, 0.1); color: #ef4444; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
    .api-err .ae-icon-wrap i { width: 30px; height: 30px; }
    .api-err h3 { font-size: 24px; font-weight: 900; text-align: center; color: var(--text-main); margin-bottom: 12px; }
    .api-err p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 500px; margin: 0 auto 24px; text-align: center; }
    .sc-lbl i { width: 16px; height: 16px; }
    .sc-lbl i.text-primary { color: var(--primary-color); }
    .sc-lbl i.text-blue { color: #3b82f6; }
    .sc-lbl i.text-green { color: var(--success, #10b981); }
    .sc-val.val-status { font-size: 24px; color: var(--success, #10b981); }
    .panel-title i.text-primary { color: var(--primary-color); }
    .panel-title i.text-blue { color: #3b82f6; }
    .panel-actions { display: flex; gap: 10px; }
    .input-group.mb-md { margin-bottom: 18px; }
    .spec-mode-btn i { width: 14px; height: 14px; }
    .llms-toggles-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 18px; }
    .llms-checkbox-lbl { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text-main); }
    .llms-checkbox-lbl input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--primary-color); }
    th.th-type { width: 160px; }
    th.th-act { width: 40px; text-align: center; }
    .custom-select-trigger i { width: 14px; height: 14px; }
    .url-input-rel { position: relative; display: flex; align-items: center; }
    td.td-act { text-align: center; }
    .btn-icon i { width: 16px; height: 16px; }
    .section-divider-text i { width: 14px; height: 14px; }
    .llms-scroll-top-btn span, .llms-scroll-top-btn i { pointer-events: none; width: 22px; height: 22px; }