 .ogg-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;
 }

 .ogg-panel {
     position: relative;                
     width: 100%;
     max-width: 1300px;
     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; }
 .ogg-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; }
 
 .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: 10px; border-radius: 100px; align-items: center; max-width: 900px; }
     .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 28px; border-radius: 100px; min-width: 150px; }
     .scratch-btn { height: 50px; border-radius: 100px; }
 }

 /* ---------- HISTORY SECTION ---------- */
 .ogg-history-section { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 20px; padding: 24px; margin-bottom: 30px; }
 .ogg-history-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
 .ogg-history-title { font-size: 15px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 8px; margin: 0; }
 .ogg-history-list { display: flex; flex-direction: column; gap: 10px; }
 .ogg-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; }
 .ogg-history-item:hover { border-color: var(--primary-color); transform: translateY(-1px); }
 .ogg-history-info { display: flex; align-items: center; gap: 10px; overflow: hidden; flex: 1; }
 .ogg-history-url { font-size: 13.5px; font-weight: 700; color: var(--text-main); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
 .ogg-history-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
 .ogg-history-time { font-size: 12px; color: var(--text-muted); }
 .ogg-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; }
 .ogg-history-del:hover { color: #ef4444; background: rgba(239, 68, 68, 0.1); }

 /* ---------- LOADING STATE ---------- */
 .ogg-loading { text-align: center; padding: 40px 0; }
 .ogg-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; }
 
 .ogg-thinking-log { list-style: none; margin: 0; padding: 0 10px; display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
 .ogg-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; }
 .ogg-thinking-log li.active { color: var(--text-main); font-weight: 700; }
 .ogg-thinking-log li.done { color: var(--text-muted); opacity: 0.6; }
 .ogg-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); }
 .ogg-thinking-log li.active .ogg-log-dot { border-color: var(--primary-color); color: var(--primary-color); }
 .ogg-thinking-log li.done .ogg-log-dot { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }

 /* ---------- RESULTS DASHBOARD ---------- */
 .ogg-result { animation: fadeIn 0.5s ease; }
 .ogg-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
 .ogg-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; }
 .ogg-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; }
 .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); }
 
 .panel-body { padding: 24px; }
 .tab-content { display: none; }
 .tab-content.active { display: block; animation: fadeIn 0.4s ease; }

 /* Form Controls */
 .input-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
 .ig-header { display: flex; justify-content: space-between; align-items: center; }
 .ig-label { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
 .ig-counter { font-size: 12px; font-weight: 700; font-family: 'Space Mono', monospace; 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: 80px; }
 
 .prog-wrap { width: 100%; height: 4px; background: var(--border-color); border-radius: 4px; overflow: hidden; margin-top: 4px; }
 .prog-fill { height: 100%; background: var(--success, #10b981); transition: width 0.3s ease, background 0.3s ease; }
 .prog-fill.warn { background: #f59e0b; }
 .prog-fill.danger { background: var(--danger, #ef4444); }
 
 .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); }

 /* Previews */
 .preview-wrapper { display: flex; align-items: center; justify-content: center; background: var(--bg-body); padding: 30px 20px; border-radius: 16px; border: 1px solid var(--border-color); }
 
 .social-card { width: 100%; max-width: 500px; 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; flex-direction: column; gap: 8px; 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); }

 /* Code Output */
 .code-box-wrapper { background: #1e1e24; border-radius: 12px; overflow: hidden; }
 .code-box { color: #a9b7c6; font-family: 'Space Mono', monospace; font-size: 14px; padding: 24px; overflow-x: auto; white-space: pre-wrap; line-height: 1.6; tab-size: 4; }
 .dark-mode .code-box-wrapper { background: rgba(0,0,0,0.3); }

 /* Syntax Highlighting */
 :deep(.h-tag) { color: #e06c75; font-weight: 700; }
 :deep(.h-attr) { color: #d19a66; }
 :deep(.h-val) { color: #98c379; }
 :deep(.h-comment) { color: #5c6370; font-style: italic; }

 /* ---------- 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-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-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-activity::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="22 12 18 12 15 21 9 3 6 12 2 12"/></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-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>'); }
 .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>'); }

 .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 */
    .ogg-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);
    }
    .ogg-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));
    }
    .ogg-scroll-top-btn:active {
        transform: translateY(-1px) scale(0.96);
    }

    /* Smooth Scrolling */
    #page-content, .page-content, .ogg-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; }
    .scratch-btn i { width: 18px; height: 18px; }
    .ogg-history-title i { color: var(--primary-color); }
    .ogg-btn-ghost.btn-xs { padding: 4px 10px; font-size: 12px; }
    .ogg-btn-ghost.btn-xs i { width: 12px; height: 12px; }
    .ogg-history-del i { width: 14px; height: 14px; }
    .ogg-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-purple { width: 16px; height: 16px; color: #8b5cf6; }
    .sc-lbl i.text-fuchsia { width: 16px; height: 16px; color: #a855f7; }
    .sc-lbl i.text-green { width: 16px; height: 16px; color: var(--success, #10b981); }
    .sc-val.val-status { font-size: 24px; }
    .tab-btn-tool i.text-facebook { color: #1877F2; }
    .tab-btn-tool i.text-twitter { color: #1DA1F2; }
    .tab-btn-tool i.text-linkedin { color: #0077b5; }
    .tab-btn-tool i.text-primary { color: var(--primary-color); }
    .act-btn.btn-reset { margin-left: auto; margin-top: 8px; margin-bottom: 8px; padding: 6px 12px; }
    .act-btn.btn-reset i { width: 14px; height: 14px; }
    .form-hint { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; font-weight: 500; }
    .input-sub-hint { font-size: 11px; color: var(--text-muted); }
    .input-flex-row { display: flex; gap: 16px; width: 100%; flex-wrap: wrap; }
    .input-group.flex-col { flex: 1; min-width: 200px; }
    .input-group.mt-16 { margin-top: 16px; }
    .cd-header i { width: 14px; height: 14px; }
    hr.dashed-divider { border: 0; border-bottom: 1px dashed var(--border-color); margin: 24px 0; }
    .tw-optional-note { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
    .tw-optional-note i { width: 14px; height: 14px; vertical-align: middle; }
    .sc-img-placeholder i { width: 32px; height: 32px; }
    .tw-domain i { width: 12px; height: 12px; }
    .code-header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
    .code-copy-text { font-size: 14px; color: var(--text-muted); font-weight: bold; margin: 0; }
    .code-actions-wrap { display: flex; gap: 8px; }
    .act-btn.btn-sm { padding: 6px 12px; font-size: 12px; }
    .act-btn.btn-sm i { width: 14px; height: 14px; }
    .ogg-scroll-top-btn span, .ogg-scroll-top-btn i { pointer-events: none; width: 22px; height: 22px; }