
    .ogc-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;
    }

    .ogc-panel {
        position: relative;                
        width: 100%;
        max-width: 1200px;
        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; }
    .ogc-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 30px; 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: 15.5px; 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: 15px; 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: 10px; border-radius: 100px; align-items: center; }
        .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: 170px; }
    }

    /* ---------- HISTORY SECTION ---------- */
    .ogc-history-section { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 20px; padding: 24px; margin-bottom: 30px; }
    .ogc-history-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
    .ogc-history-title { font-size: 15px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 8px; margin: 0; }
    .ogc-history-list { display: flex; flex-direction: column; gap: 10px; }
    .ogc-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; }
    .ogc-history-item:hover { border-color: var(--primary-color); transform: translateY(-1px); }
    .ogc-history-info { display: flex; align-items: center; gap: 10px; overflow: hidden; flex: 1; }
    .ogc-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; }
    .ogc-history-url { font-size: 13.5px; font-weight: 700; color: var(--text-main); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .ogc-history-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .ogc-history-score { font-size: 12px; font-weight: 800; padding: 2px 6px; border-radius: 4px; }
    .ogc-history-time { font-size: 12px; color: var(--text-muted); }
    .ogc-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; }
    .ogc-history-del:hover { color: #ef4444; background: rgba(239, 68, 68, 0.1); }

    /* ---------- LOADING STATE ---------- */
    .ogc-loading { text-align: center; padding: 40px 0; }
    .ogc-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; }
    
    .ogc-thinking-log { list-style: none; margin: 0; padding: 0 10px; display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
    .ogc-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; }
    .ogc-thinking-log li.active { color: var(--text-main); font-weight: 700; }
    .ogc-thinking-log li.done { color: var(--text-muted); opacity: 0.6; }
    .ogc-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); }
    .ogc-thinking-log li.active .ogc-log-dot { border-color: var(--primary-color); color: var(--primary-color); }
    .ogc-thinking-log li.done .ogc-log-dot { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }

    /* ---------- RESULTS DASHBOARD ---------- */
    .ogc-result { animation: fadeIn 0.5s ease; }
    .ogc-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
    .ogc-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; }
    .ogc-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 Panel */
    .ws-panel { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
    .tabs-header-tool { display: flex; border-bottom: 1px solid var(--border-color); background: var(--bg-body); padding: 0 12px; overflow-x: auto; scrollbar-width: none; }
    .tabs-header-tool::-webkit-scrollbar { display: none; }
    .tab-btn-tool { background: transparent; border: none; border-bottom: 2px solid transparent; color: var(--text-muted); font-size: 14px; font-weight: 700; padding: 16px 20px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.2s; white-space: nowrap; }
    .tab-btn-tool:hover { color: var(--text-main); }
    .tab-btn-tool.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }
    
    .tab-content { display: none; padding: 24px; }
    .tab-content.active { display: block; animation: fadeIn 0.4s ease; }

    /* Previews Grid */
    .previews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .preview-col { background: var(--bg-body); border-radius: 16px; border: 1px solid var(--border-color); padding: 16px; }
    .preview-title { font-size: 14px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
    
    .social-card { background: #fff; border-radius: 8px; border: 1px solid rgba(0,0,0,0.1); overflow: hidden; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
    .dark-mode .social-card { background: #242526; border-color: rgba(255,255,255,0.1); color: #e4e6eb; }
    .sc-img-wrap { width: 100%; aspect-ratio: 1.91 / 1; background: #f0f2f5; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(0,0,0,0.1); overflow: hidden; position: relative; }
    .dark-mode .sc-img-wrap { background: #18191a; border-bottom-color: rgba(255,255,255,0.1); }
    .sc-img { width: 100%; height: 100%; object-fit: cover; }
    .sc-img-placeholder { color: #888; font-size: 14px; font-weight: 500; position: absolute; display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; }
    .sc-content { padding: 12px; }

    /* FB Specific */
    .fb-card { border-radius: 0; border: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
    .fb-domain { font-size: 12px; color: #65676b; text-transform: uppercase; margin-bottom: 4px; }
    .dark-mode .fb-domain { color: #b0b3b8; }
    .fb-title { font-size: 16px; font-weight: 600; color: #1c1e21; margin-bottom: 4px; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
    .dark-mode .fb-title { color: #e4e6eb; }
    .fb-desc { font-size: 14px; color: #65676b; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
    .dark-mode .fb-desc { color: #b0b3b8; }

    /* Twitter Specific */
    .tw-card { border-radius: 16px; border: 1px solid rgba(0,0,0,0.1); }
    .dark-mode .tw-card { border-color: rgba(255,255,255,0.2); }
    .tw-title { font-size: 15px; font-weight: 700; color: #0f1419; margin-bottom: 2px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
    .dark-mode .tw-title { color: #e7e9ea; }
    .tw-desc { font-size: 15px; color: #536471; line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .dark-mode .tw-desc { color: #71767b; }
    .tw-domain { font-size: 15px; color: #536471; display: flex; align-items: center; gap: 4px; }
    .dark-mode .tw-domain { color: #71767b; }

    /* LinkedIn Specific */
    .li-card { border-radius: 0; background: #eef3f8; border: none; }
    .dark-mode .li-card { background: #1d2226; }
    .li-title { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.9); margin-bottom: 2px; line-height: 1.3; }
    .dark-mode .li-title { color: rgba(255,255,255,0.9); }
    .li-domain { font-size: 12px; color: rgba(0,0,0,0.6); }
    .dark-mode .li-domain { color: rgba(255,255,255,0.6); }

    /* Audit Grid */
    .audit-grid { display: flex; flex-direction: column; gap: 12px; }
    .audit-item { display: flex; gap: 16px; padding: 16px; background: var(--bg-body); border-radius: 12px; border: 1px solid var(--border-color); }
    .ai-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .ai-icon.pass { background: rgba(16, 185, 129, 0.1); color: var(--success, #10b981); }
    .ai-icon.warn { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
    .ai-icon.fail { background: rgba(239, 68, 68, 0.1); color: var(--danger, #ef4444); }
    .ai-content { flex: 1; }
    .ai-title { font-size: 15px; font-weight: 800; color: var(--text-main); margin-bottom: 4px; font-family: 'Space Mono', monospace; }
    .ai-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.5; }
    .ai-value { font-size: 13px; color: var(--primary-color); background: var(--primary-light); display: inline-block; padding: 4px 8px; border-radius: 6px; word-break: break-all; }

    /* Data Table */
    .data-table-wrap { overflow-x: auto; }
    .data-table { width: 100%; border-collapse: collapse; text-align: left; }
    .data-table th, .data-table td { padding: 12px 16px; 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; background: var(--bg-body); position: sticky; top: 0; }
    .data-table td { font-size: 14px; color: var(--text-main); line-height: 1.6; word-break: break-all; }
    .tag-name { font-family: 'Space Mono', monospace; font-weight: 700; color: var(--primary-color); }
    .act-btn { background: var(--primary-color); color: #fff; border: none; 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; margin: 16px 0 0 auto; }
    .act-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--primary-shadow); }

    /* Raw Code Box */
    .raw-xml-container { background: #1e1e24; color: #a9b7c6; font-family: 'Space Mono', monospace; font-size: 14px; padding: 24px; border-radius: 12px; overflow-x: auto; white-space: pre-wrap; line-height: 1.6; tab-size: 4; }
    .dark-mode .raw-xml-container { background: rgba(0,0,0,0.3); }

    /* ---------- BENTO BOX FEATURES ---------- */
    .console-features { margin-top: 40px; 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-image::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="3" width="18" height="18" rx="2" ry="2"/><circle cx="8.5" cy="8.5" r="1.5"/><polyline points="21 15 16 10 5 21"/></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-brain::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 2a4 4 0 0 0-4 4v1a4 4 0 0 0-4 4 4 4 0 0 0 1 2.6V17a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4v-3.4A4 4 0 0 0 20 11a4 4 0 0 0-4-4V6a4 4 0 0 0-4-4z"/></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-table::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="3" width="18" height="18" rx="2"/><path d="M3 9h18"/><path d="M3 15h18"/><path d="M9 3v18"/><path d="M15 3v18"/></svg>'); }
    .feat-icon-download::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="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></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; }
    }

    /* Floating Scroll-to-Top Button */
    .ogc-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);
    }
    .ogc-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));
    }
    .ogc-scroll-top-btn:active {
        transform: translateY(-1px) scale(0.96);
    }

    /* Smooth Scrolling */
    #page-content, .page-content, .ogc-wrapper, html {
        scroll-behavior: smooth;
    }

    /* Zero-Inline Enhancements */
    .search-input-wrap i { width: 20px; height: 20px; color: var(--primary-color); }
    .search-btn i { width: 18px; height: 18px; }
    .ogc-history-title i { color: var(--primary-color); }
    .ogc-btn-ghost.btn-xs { padding: 4px 10px; font-size: 12px; }
    .ogc-btn-ghost.btn-xs i { width: 12px; height: 12px; }
    .ogc-history-del i { width: 14px; height: 14px; }
    .ogc-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.text-primary { width: 16px; height: 16px; color: var(--primary-color); }
    .sc-lbl i.text-facebook { width: 16px; height: 16px; color: #1877F2; }
    .sc-lbl i.text-twitter { width: 16px; height: 16px; color: #1DA1F2; }
    .sc-lbl i.text-green { width: 16px; height: 16px; color: var(--success, #10b981); }
    .preview-title i.text-facebook { color: #1877F2; }
    .preview-title i.text-twitter { color: #1DA1F2; }
    .preview-title i.text-linkedin { color: #0077b5; }
    .tw-domain i { width: 12px; height: 12px; }
    .tab-content.no-pad { padding: 0; }
    th.th-prop { width: 250px; }
    td.td-empty { text-align: center; padding: 40px; color: var(--text-muted); }
    .table-action-footer { padding: 16px; background: var(--bg-body); border-top: 1px solid var(--border-color); }
    .ogc-scroll-top-btn span, .ogc-scroll-top-btn i { pointer-events: none; width: 22px; height: 22px; }