  .blc-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;
  }

  .blc-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; }
  .blc-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; }
  
  @media(min-width: 768px) {
      .search-box-start { flex-direction: row; padding: 12px; border-radius: 100px; align-items: center; max-width: 800px; }
      .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; }
  }

  /* ---------- LOADING STATE ---------- */
  .blc-loading { text-align: center; padding: 40px 0; }
  .blc-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; }
  
  .blc-thinking-log { list-style: none; margin: 0; padding: 0 10px; display: flex; flex-direction: column; gap: 14px; max-width: 400px; margin: 0 auto; }
  .blc-thinking-log li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-muted); animation: slideInUp 0.4s ease forwards; }
  .blc-thinking-log li.active { color: var(--text-main); font-weight: 700; }
  .blc-thinking-log li.done { color: var(--text-muted); opacity: 0.7; }
  .blc-log-dot { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; }
  .blc-log-dot span { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
  .blc-thinking-log li.active .blc-log-dot { border-color: var(--primary-color); color: var(--primary-color); background: rgba(99, 102, 241, 0.08); }
  .blc-thinking-log li.done .blc-log-dot { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }

  /* ---------- RESULTS DASHBOARD ---------- */
  .blc-result { animation: fadeIn 0.5s ease; }
  .blc-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
  .blc-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; }
  .blc-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; position: relative; overflow: hidden; }
  .sc::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent); pointer-events: none; }
  .sc-lbl { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--text-muted); position: relative; z-index: 1; }
  .sc-val { font-size: 28px; font-weight: 900; color: var(--text-main); font-family: 'Space Mono', monospace; line-height: 1; position: relative; z-index: 1; }
  
  .text-emerald-400 { color: #34d399 !important; }
  .text-rose-400 { color: #fb7185 !important; }

  /* 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; height: 100%; }
  .panel-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
  .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; }

  /* Details Rows */
  .detail-row { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-radius: 12px; background: var(--bg-body); border: 1px solid var(--border-color); margin-bottom: 12px; transition: 0.2s; }
  .detail-row:hover { border-color: var(--primary-color); }
  .detail-label { font-size: 13.5px; font-weight: 700; color: var(--text-muted); }
  .detail-val { font-size: 14.5px; font-weight: 700; color: var(--text-main); font-family: 'Space Mono', monospace; }

  /* Timeline Chain */
  .timeline { position: relative; padding-left: 24px; margin-bottom: 24px; }
  .timeline::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--border-color); border-radius: 2px; }
  
  .timeline-item { position: relative; margin-bottom: 24px; padding: 16px 20px; border-radius: 12px; background: var(--bg-body); border: 1px solid var(--border-color); transition: 0.3s; }
  .timeline-item:last-child { margin-bottom: 0; }
  .timeline-item:hover { transform: translateX(4px); border-color: var(--primary-color); }
  
  .timeline-indicator { position: absolute; left: -25px; top: 20px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg-body); border: 3px solid var(--border-color); z-index: 1; transition: 0.3s; }
  .timeline-item:hover .timeline-indicator { border-color: var(--primary-color); background: var(--primary-color); box-shadow: 0 0 0 4px var(--primary-light); }
  
  .status-badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 800; font-family: 'Space Mono', monospace; }
  .status-200 { background: rgba(16, 185, 129, 0.1); color: #10b981; }
  .status-300 { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
  .status-400 { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

  .timeline-item.success .timeline-indicator { border-color: #10b981; }
  .timeline-item.redirect .timeline-indicator { border-color: #3b82f6; }
  .timeline-item.error .timeline-indicator { border-color: #ef4444; }

  /* Chart Container */
  .chart-container { position: relative; height: 200px; width: 100%; display: flex; align-items: center; justify-content: center; }

  /* ---------- HISTORY SECTION ---------- */
  .blc-history-section { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 20px; padding: 24px; margin-top: 30px; }
  .blc-history-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
  .blc-history-title { font-size: 15px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 8px; margin: 0; }
  .blc-history-list { display: flex; flex-direction: column; gap: 10px; }
  .blc-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; }
  .blc-history-item:hover { border-color: var(--primary-color); transform: translateY(-1px); }
  .blc-history-info { display: flex; align-items: center; gap: 10px; overflow: hidden; flex: 1; }
  .blc-history-badge { font-size: 12px; font-weight: 800; padding: 4px 8px; border-radius: 6px; font-family: 'Space Mono', monospace; white-space: nowrap; }
  .blc-history-url { font-size: 13.5px; font-weight: 700; color: var(--text-main); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .blc-history-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .blc-history-time { font-size: 12px; color: var(--text-muted); }
  .blc-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; }
  .blc-history-del:hover { color: #ef4444; background: rgba(239, 68, 68, 0.1); }



  /* Zero-Inline Enhancements */
  .search-input-wrap i { width: 20px; height: 20px; color: var(--primary-color); }
  .search-btn i { width: 18px; height: 18px; }
  .blc-log-dot i { width: 13px; height: 13px; }
  .blc-log-dot i.dot-circle { width: 8px; height: 8px; }
  .blc-thinking-log li span.step-title { line-height: 24px; }
  .blc-result { margin-top: 24px; margin-bottom: 24px; }
  .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.border-primary { border-top: 3px solid var(--primary-color); }
  .sc-lbl i { width: 16px; height: 16px; }
  .sc-val.text-sm-ip { font-size: 22px; }
  .panel-header .blc-btn-ghost { margin: 0; }
  .panel-body.redirect-scroll { overflow-y: auto; max-height: 600px; }
  .timeline-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
  .timeline-time { font-size: 12px; font-weight: 800; color: var(--text-muted); }
  .timeline-url { font-size: 13.5px; font-family: 'Space Mono', monospace; color: var(--text-main); word-break: break-all; line-height: 1.6; margin: 0 0 12px 0; }
  .timeline-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
  .timeline-meta-item { display: flex; align-items: center; gap: 4px; }
  .timeline-meta-item.dest { color: var(--primary-color); }
  .timeline-meta i { width: 12px; height: 12px; }
  .ws-side-col { display: flex; flex-direction: column; gap: 24px; height: 100%; }
  .ws-panel.flex-none { flex: none; }
  .ws-panel.flex-1 { flex: 1; }
  .detail-val.primary { color: var(--primary-color); }
  .panel-body.chart-body { display: flex; align-items: center; justify-content: center; }
  .blc-btn-ghost.btn-sm { padding: 4px 10px; font-size: 12px; }
  .blc-btn-ghost i { width: 12px; height: 12px; }
  .blc-history-del i { width: 14px; height: 14px; }