  /* =========================================
     ARTICLE EDITOR — PREMIUM UI
     ========================================= */
  .da-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;
  }

  .da-panel {
      position: relative;                
      width: 100%;
      max-width: 1100px;
      border-radius: 28px;
      padding: clamp(28px, 5vw, 56px);
  }

  .open-btn { background: linear-gradient(135deg, var(--primary-color), var(--primary-gradient-end)); color: #fff; border: none; border-radius: 12px; padding: 16px 32px; font-size: 16px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 15px var(--primary-shadow); margin-bottom: 16px; }
  .open-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--primary-shadow); }
  
  .hero-hint { font-size: 13px; font-weight: 700; color: var(--text-muted); opacity: 0.7; }
  .kbd { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 4px; padding: 2px 6px; font-family: 'Space Mono', monospace; font-size: 11px; }

  /* ---------- PREVIEW CARD ---------- */
  .preview-card { position: relative; margin-top: 40px; margin-bottom: 50px; perspective: 1000px; }
  .pc-mock { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: rotateX(5deg) scale(0.95); transition: all 0.5s var(--ease-out); opacity: 0.8; filter: blur(1px); }
  
  .pc-chrome { display: flex; align-items: center; background: rgba(0,0,0,0.2); padding: 12px 16px; border-bottom: 1px solid var(--border-color); }
  .pc-dots { display: flex; gap: 6px; }
  .pc-dot { width: 10px; height: 10px; border-radius: 50%; }
  .pc-url { margin-left: 20px; font-family: 'Space Mono', monospace; font-size: 11px; color: var(--text-muted); opacity: 0.6; }
  
  .pc-body { height: 300px; display: flex; flex-direction: column; background: var(--bg-body); pointer-events: none; opacity: 0.5; }
  .pc-tb { height: 40px; background: var(--card-bg); border-bottom: 1px solid var(--border-color); display: flex; align-items: center; padding: 0 16px; gap: 10px; }
  .pc-sb { display: flex; flex: 1; overflow: hidden; }
  .pc-lsb { width: 150px; border-right: 1px solid var(--border-color); padding: 16px; display: flex; flex-direction: column; gap: 10px; }
  .pc-editor { flex: 1; padding: 30px; display: flex; flex-direction: column; gap: 12px; }
  .pc-rsb { width: 150px; border-left: 1px solid var(--border-color); padding: 16px; }
  
  .pc-skeleton { background: var(--border-color); border-radius: 4px; }
  
  .fs-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--card-bg); border: 1px solid var(--primary-color); border-radius: 100px; padding: 12px 24px; font-size: 14px; font-weight: 900; color: var(--primary-color); display: flex; align-items: center; gap: 8px; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: all 0.3s; z-index: 10; opacity: 0; pointer-events: none; }
  
  .preview-card:hover .pc-mock { transform: rotateX(0deg) scale(1); opacity: 1; filter: blur(0); }
  .preview-card:hover .fs-badge { opacity: 1; pointer-events: auto; transform: translate(-50%, -60%); }
  .fs-badge:hover { background: var(--primary-color); color: #fff; transform: translate(-50%, -65%) scale(1.05); }

  /* ---------- OPTIONS & STATS ---------- */
  .options-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; padding: 16px 24px; margin-bottom: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
  .ob-lbl { font-size: 12px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
  .ob-sep { width: 1px; height: 24px; background: var(--border-color); margin: 0 4px; }
  
  /* ---------- CUSTOM DROPDOWN ---------- */
  .custom-dropdown { position: relative; display: inline-block; user-select: none; }
  .cd-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--card-bg); border: 1px solid var(--border-color); padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 800; color: var(--text-main); cursor: pointer; transition: all 0.2s; min-width: 140px; }
  .cd-header:hover, .custom-dropdown.active .cd-header { border-color: var(--primary-color); }
  .cd-value { display: flex; align-items: center; gap: 8px; }
  .cd-body { position: absolute; bottom: calc(100% + 8px); left: 0; width: 220px; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 8px; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s; display: flex; flex-direction: column; gap: 8px; }
  .custom-dropdown.active .cd-body { opacity: 1; visibility: visible; transform: translateY(0); }
  .cd-search input { width: 100%; background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 8px; padding: 8px 12px; font-size: 12px; color: var(--text-main); outline: none; }
  .cd-list { max-height: 200px; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }
  .cd-list::-webkit-scrollbar { width: 4px; }
  .cd-list::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
  .cd-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; color: var(--text-main); cursor: pointer; transition: background 0.2s; }
  .cd-item:hover { background: var(--bg-body); }
  .cd-item.active { background: rgba(var(--primary-color-rgb), 0.05); color: var(--primary-color); }
  
  .ob-badge { font-size: 11px; font-weight: 800; padding: 6px 10px; border-radius: 6px; display: inline-flex; align-items: center; gap: 6px; }
  .ob-badge.green { background: rgba(34,197,94,0.1); color: #22c55e; }
  .ob-badge.blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
  .ob-badge.red { background: rgba(239,68,68,0.1); color: #ef4444; }
  .ob-badge.purple { background: rgba(168,85,247,0.1); color: #a855f7; }

  .stats-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-bottom: 50px; }
  .stats-sc { background: var(--card-bg); border-radius: 16px; padding: 20px; border: 1px solid var(--border-color); display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.2s; }
  .stats-sc:hover { transform: translateY(-2px); }
  .stats-ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
  .stats-ico.red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
  .stats-ico.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
  .stats-ico.green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
  .stats-ico.warn { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
  .stats-val { font-size: 24px; font-weight: 900; color: var(--text-main); line-height: 1; margin-bottom: 4px; transition: transform 0.3s; }
  .stats-lbl { font-size: 12px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

  /* ---------- FULL SCREEN EDITOR MODAL ---------- */
  .eo { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-body); z-index: 9999; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .eo.open { opacity: 1; pointer-events: auto; }
  
  .e-topbar { height: 56px; background: var(--card-bg); border-bottom: 1px solid var(--border-color); display: flex; align-items: center; padding: 0 20px; justify-content: space-between; flex-shrink: 0; }
  .e-logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 900; color: var(--text-main); }
  .e-logo em { font-style: normal; color: var(--primary-color); }
  .e-gem { width: 24px; height: 24px; background: var(--primary-color); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; }
  
  .e-center { flex: 1; display: flex; justify-content: center; max-width: 600px; margin: 0 20px; }
  .e-title-inp { width: 100%; background: transparent; border: none; font-size: 15px; font-weight: 800; color: var(--text-main); text-align: center; outline: none; padding: 6px 12px; border-radius: 8px; transition: background 0.2s; }
  .e-title-inp:hover, .e-title-inp:focus { background: var(--bg-body); }
  
  .e-actions { display: flex; align-items: center; gap: 12px; }
  .ss-status { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; color: var(--text-muted); padding: 4px 10px; border-radius: 100px; background: var(--bg-body); }
  .ss-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); }
  .ss-status.saving .ss-dot { background: #f59e0b; animation: pulse 1s infinite; }
  .ss-status.saved .ss-dot { background: #22c55e; }
  
  .e-btn { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 800; color: var(--text-main); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
  .e-btn.primary { background: rgba(59,130,246,0.1); color: #3b82f6; border-color: rgba(59,130,246,0.2); }
  .e-btn.primary:hover { background: #3b82f6; color: #fff; }
  .e-btn.danger { border-color: rgba(239,68,68,0.3); color: #ef4444; }
  .e-btn.danger:hover { background: #ef4444; color: #fff; }

  .e-fbar { height: 44px; background: var(--bg-body); border-bottom: 1px solid var(--border-color); display: flex; align-items: center; padding: 0 12px; gap: 8px; flex-shrink: 0; overflow-x: auto; }
  .e-fbar::-webkit-scrollbar { height: 0; }
  .fg { display: flex; align-items: center; gap: 2px; }
  .fsep { width: 1px; height: 20px; background: var(--border-color); margin: 0 6px; }
  
  .fsel { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 6px; padding: 4px 8px; font-size: 12px; font-weight: 700; color: var(--text-main); outline: none; cursor: pointer; height: 28px; }
  .fb { width: 28px; height: 28px; background: transparent; border: none; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
  .fb:hover { background: var(--card-bg); color: var(--text-main); }
  .fb.active { background: var(--card-bg); color: var(--primary-color); box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
  
  .fclr { display: flex; align-items: center; gap: 6px; padding: 0 6px; cursor: pointer; }
  .cswatch { width: 16px; height: 16px; border-radius: 4px; border: 1px solid var(--border-color); }
  .cpicker { width: 0; height: 0; opacity: 0; padding: 0; margin: 0; border: none; }

  .fstats { margin-left: auto; display: flex; gap: 10px; font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700; color: var(--text-muted); padding-right: 12px; }

  /* Content Area */
  .e-content { flex: 1; display: flex; overflow: hidden; background: var(--bg-body); }
  
  .e-lsb, .e-rsb { width: 260px; background: var(--card-bg); overflow-y: auto; flex-shrink: 0; padding: 24px; display: flex; flex-direction: column; gap: 24px; transition: transform 0.3s; }
  .e-lsb { border-right: 1px solid var(--border-color); }
  .e-rsb { border-left: 1px solid var(--border-color); }
  .e-sb-title { font-size: 11px; font-weight: 900; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
  .e-sb-sep { height: 1px; background: var(--border-color); }
  
  .e-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .e-stat { background: var(--bg-body); border-radius: 8px; padding: 12px; text-align: center; border: 1px solid var(--border-color); }
  .e-sv { font-size: 18px; font-weight: 900; color: var(--text-main); }
  .e-sl { font-size: 10px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }
  
  .e-readbar { background: var(--bg-body); border-radius: 8px; padding: 12px; border: 1px solid var(--border-color); }
  .e-rb-val { font-size: 16px; font-weight: 900; color: var(--primary-color); margin-bottom: 8px; }
  .e-rb-track { height: 6px; background: var(--card-bg); border-radius: 100px; overflow: hidden; }
  .e-rb-fill { height: 100%; background: var(--primary-color); transition: width 0.3s; }

  .e-hn { display: flex; flex-direction: column; gap: 4px; }
  .e-hn-empty { font-size: 12px; color: var(--text-muted); font-style: italic; }
  .e-hn-item { font-size: 12px; color: var(--text-main); padding: 6px 8px; border-radius: 6px; cursor: pointer; transition: background 0.2s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .e-hn-item:hover { background: var(--bg-body); color: var(--primary-color); }
  .e-hn-item.h1 { font-weight: 800; }
  .e-hn-item.h2 { padding-inline-start: 16px; opacity: 0.9; }
  .e-hn-item.h3 { padding-inline-start: 24px; opacity: 0.8; font-size: 11px; }
  .e-hn-item.h4 { padding-inline-start: 32px; opacity: 0.7; font-size: 11px; }

  /* Editor Pane */
  .e-pane { flex: 1; overflow-y: auto; display: flex; justify-content: center; padding: 40px 20px; }
  .doc-card { width: 100%; max-width: 800px; background: var(--card-bg); border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.03); border: 1px solid var(--border-color); padding: 60px; display: flex; flex-direction: column; min-height: 800px; }
  
  .doc-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .meta-tag { background: rgba(var(--primary-color-rgb), 0.1); color: var(--primary-color); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 100px; cursor: pointer; }
  .meta-date { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--text-muted); }
  
  .cover-area { width: 100%; height: 200px; background: var(--bg-body); border-radius: 12px; border: 2px dashed var(--border-color); display: flex; align-items: center; justify-content: center; margin-bottom: 30px; overflow: hidden; position: relative; cursor: pointer; transition: all 0.2s; }
  .cover-area:hover { border-color: var(--primary-color); background: rgba(var(--primary-color-rgb), 0.02); }
  .cover-ph { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--text-muted); }
  .cover-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
  
  .art-title { background: transparent; border: none; font-size: 44px; font-weight: 900; color: var(--text-main); line-height: 1.2; resize: none; overflow: hidden; outline: none; margin-bottom: 16px; letter-spacing: -1px; }
  .art-title::placeholder { color: var(--text-muted); opacity: 0.3; }
  .art-sub { background: transparent; border: none; font-size: 20px; font-weight: 700; color: var(--text-muted); line-height: 1.5; resize: none; overflow: hidden; outline: none; margin-bottom: 30px; }
  .art-divider { width: 60px; height: 4px; background: var(--primary-color); border-radius: 4px; margin-bottom: 40px; }
  
  .art-editor { flex: 1; outline: none; font-size: 18px; line-height: 1.8; color: var(--text-main); min-height: 300px; }
  .art-editor p { margin-bottom: 1.5em; }
  .art-editor h1 { font-size: 2.2em; font-weight: 900; margin: 1.5em 0 0.5em; letter-spacing: -0.5px; }
  .art-editor h2 { font-size: 1.8em; font-weight: 800; margin: 1.5em 0 0.5em; }
  .art-editor h3 { font-size: 1.4em; font-weight: 800; margin: 1.2em 0 0.5em; }
  .art-editor h4 { font-size: 1.1em; font-weight: 800; margin: 1.2em 0 0.5em; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
  .art-editor blockquote { border-inline-start: 4px solid var(--primary-color); padding-inline-start: 20px; margin: 1.5em 0; font-size: 1.2em; font-style: italic; color: var(--text-muted); background: rgba(var(--primary-color-rgb), 0.03); padding: 20px; border-radius: 0 12px 12px 0; }
  [dir="rtl"] .art-editor blockquote { border-radius: 12px 0 0 12px; }
  .art-editor pre { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 8px; padding: 16px; font-family: 'Space Mono', monospace; font-size: 14px; overflow-x: auto; margin: 1.5em 0; }
  .art-editor img { max-width: 100%; border-radius: 12px; margin: 1.5em 0; border: 1px solid var(--border-color); }
  .art-editor a { color: var(--primary-color); text-decoration: underline; text-underline-offset: 4px; }
  .art-editor ul, .art-editor ol { margin-bottom: 1.5em; padding-inline-start: 24px; }
  .art-editor li { margin-bottom: 0.5em; }
  .art-editor[data-empty="true"]::before { content: attr(data-placeholder); color: var(--text-muted); opacity: 0.4; font-style: italic; pointer-events: none; position: absolute; white-space: pre-wrap; }

  /* Preview Pane */
  .e-preview { flex: 1; background: var(--bg-body); overflow-y: auto; padding: 40px 20px; display: none; justify-content: center; }
  .e-preview.on { display: flex; }
  .prev-doc { width: 100%; max-width: 800px; background: #fff; color: #1a1a1a; padding: 60px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); font-family: Georgia, serif; line-height: 1.8; font-size: 18px; }
  [data-theme="dark"] .prev-doc { background: #111; color: #eee; border: 1px solid #333; }
  .prev-doc h1 { font-family: 'Inter', sans-serif; font-size: 2.5em; line-height: 1.2; margin-bottom: 0.5em; }
  .prev-doc hr { border: none; border-top: 1px solid #ddd; margin: 2em 0; }
  [data-theme="dark"] .prev-doc hr { border-color: #333; }
  .prev-doc p { margin-bottom: 1.5em; }

  /* Right Sidebar Controls */
  .e-fr-input { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 6px; padding: 8px 12px; font-size: 13px; color: var(--text-main); width: 100%; outline: none; margin-bottom: 8px; }
  .e-fr-btn { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 6px; padding: 6px 0; font-size: 11px; font-weight: 800; color: var(--text-main); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .e-fr-btn.primary { background: rgba(var(--primary-color-rgb), 0.1); color: var(--primary-color); border-color: rgba(var(--primary-color-rgb), 0.2); }
  
  .e-exp-btn { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 8px; padding: 8px; display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 800; color: var(--text-main); cursor: pointer; transition: all 0.2s; width: 100%; text-align: left; }
  .e-exp-btn:hover { border-color: var(--primary-color); transform: translateY(-2px); }
  .e-exp-ico { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }

  /* Status Bar */
  .e-statusbar { height: 32px; background: var(--card-bg); border-top: 1px solid var(--border-color); display: flex; align-items: center; padding: 0 20px; font-size: 11px; font-weight: 800; color: var(--text-muted); gap: 20px; flex-shrink: 0; }
  .esb-item { display: flex; align-items: center; gap: 6px; }
  .esb-item.hl { color: var(--primary-color); }

  /* Focus Mode */
  .eo.focus-mode .e-lsb, .eo.focus-mode .e-rsb, .eo.focus-mode .e-fbar, .eo.focus-mode .e-statusbar { display: none; }
  .eo.focus-mode .e-topbar { opacity: 0; position: absolute; width: 100%; transition: opacity 0.3s; z-index: 10; }
  .eo.focus-mode .e-topbar:hover { opacity: 1; }
  .eo.focus-mode .e-pane { padding-top: 80px; }

  /* ── Comparison Panel & Analytics ── */
  .comparison-panel {
      background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 24px;
      padding: 28px; margin-top: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); margin-bottom: 40px;
  }
  .cp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
  .cp-title { font-size: 16px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
  .cp-badge { font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 100px; }
  .badge-high { background: color-mix(in srgb, var(--success, #10b981) 15%, transparent); color: var(--success, #10b981); border: 1px solid color-mix(in srgb, var(--success, #10b981) 30%, transparent); }

  .cp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
  .cp-card { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
  .cpc-header { display: flex; justify-content: space-between; align-items: center; }
  .cpc-title { font-size: 13.5px; font-weight: 800; color: var(--text-main); }
  .cpc-tag { font-size: 11.5px; font-weight: 800; padding: 4px 10px; border-radius: 6px; }
  .cpc-tag.success { background: color-mix(in srgb, var(--success, #10b981) 15%, transparent); color: var(--success, #10b981); }

  .cpc-body { display: flex; flex-direction: column; gap: 10px; }
  .cpc-stat-row { font-size: 13px; color: var(--text-muted); display: flex; justify-content: space-between; }
  .cpc-stat-row strong { color: var(--text-main); font-weight: 700; }
  .cpc-progress-bar { width: 100%; height: 8px; background: var(--border-color); border-radius: 100px; overflow: hidden; margin-top: 4px; }
  .cpc-progress-fill { height: 100%; background: var(--primary-color); border-radius: 100px; transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .cpc-progress-fill.bg-gradient { background: linear-gradient(90deg, var(--primary-color), var(--primary-gradient-end)); }

  /* Zero-Inline Enhancements */
  #bgCv { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
  .rw-hero-badge i { width: 14px; height: 14px; }
  .pc-dot.red { background: #ff5f57; }
  .pc-dot.yellow { background: #febc2e; }
  .pc-dot.green { background: #28c840; }
  .pc-skeleton.w-60-h-14 { width: 60px; height: 14px; }
  .pc-skeleton.sq-14 { width: 14px; height: 14px; border-radius: 2px; }
  .pc-skeleton.w-40-h-14 { width: 40px; height: 14px; margin-inline-start: auto; }
  .pc-skeleton.w-80-h-10 { width: 80%; height: 10px; }
  .pc-skeleton.w-60-h-10 { width: 60%; height: 10px; }
  .pc-skeleton.w-70-h-10 { width: 70%; height: 10px; }
  .pc-skeleton.w-50-h-24 { width: 50%; height: 24px; }
  .pc-skeleton.w-30-h-14 { width: 30%; height: 14px; margin-bottom: 10px; }
  .pc-skeleton.w-100-h-10 { width: 100%; height: 10px; }
  .pc-skeleton.w-100-h-20 { width: 100%; height: 20px; margin-bottom: 8px; }
  .pc-skeleton.w-100-h-20-last { width: 100%; height: 20px; }
  .fs-badge i { width: 16px; height: 16px; }
  .cd-value i, .cd-item i { width: 16px; height: 16px; color: var(--text-muted); }
  .cd-header i.cd-chevron { width: 14px; height: 14px; }
  .ob-badge i { width: 12px; height: 12px; }
  .cp-title i { color: var(--primary-color); }
  .stats-sc.border-red { border-top: 2px solid #ef4444; }
  .stats-sc.border-blue { border-top: 2px solid #3b82f6; }
  .stats-sc.border-green { border-top: 2px solid #22c55e; }
  .stats-sc.border-purple { border-top: 2px solid #a855f7; }
  .stats-ico i { width: 16px; height: 16px; }
  .info-div-t { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: var(--text-main); margin-bottom: 20px; }
  .info-div-t i { width: 16px; height: 16px; color: var(--primary-color); }