@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
:root{--bg:#0f1117;--bg-card:#1a1d27;--bg-sidebar:#141720;--bg-hover:#1f2230;--text:#e4e5e9;--text-secondary:#8b8d97;--text-muted:#555660;--accent:#6c5ce7;--accent-light:#a29bfe;--green:#00b894;--red:#ff6b6b;--gold:#feca57;--blue:#54a0ff;--border:#ffffff0f;--radius:10px;--transition:.2s ease}*{box-sizing:border-box;margin:0;padding:0}body{background:var(--bg);color:var(--text);-webkit-font-smoothing:antialiased;font-family:Inter,sans-serif}a{color:inherit;text-decoration:none}.admin-layout{min-height:100vh;display:flex}.sidebar{background:var(--bg-sidebar);border-right:1px solid var(--border);width:240px;padding:20px 0;position:fixed;top:0;bottom:0;left:0;overflow-y:auto}.sidebar-logo{background:linear-gradient(135deg,var(--accent),var(--accent-light));-webkit-text-fill-color:transparent;-webkit-background-clip:text;padding:0 20px 24px;font-size:1.3rem;font-weight:700}.sidebar-nav{flex-direction:column;gap:2px;display:flex}.sidebar-link{color:var(--text-secondary);transition:var(--transition);border-left:3px solid #0000;align-items:center;gap:10px;padding:10px 20px;font-size:.875rem;display:flex}.sidebar-link:hover,.sidebar-link.active{color:var(--text);background:var(--bg-hover);border-left-color:var(--accent)}.main-content{flex:1;margin-left:240px;padding:28px 32px}.stats-grid{grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:16px;margin-bottom:28px;display:grid}.stat-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:20px}.stat-label{color:var(--text-muted);margin-bottom:6px;font-size:.8rem}.stat-value{font-size:1.6rem;font-weight:700}.stat-change{margin-top:4px;font-size:.75rem}.stat-change.up{color:var(--green)}.stat-change.down{color:var(--red)}.admin-section{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);margin-bottom:20px}.admin-section-header{border-bottom:1px solid var(--border);justify-content:space-between;align-items:center;padding:16px 20px;display:flex}.admin-section-title{font-size:.95rem;font-weight:600}.admin-section-body{padding:16px 20px}.admin-table{border-collapse:collapse;width:100%}.admin-table th{text-align:left;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;border-bottom:1px solid var(--border);padding:10px 12px;font-size:.75rem;font-weight:600}.admin-table td{border-bottom:1px solid var(--border);padding:12px;font-size:.85rem}.admin-table tr:hover{background:var(--bg-hover)}.admin-btn{cursor:pointer;transition:var(--transition);border:none;border-radius:6px;align-items:center;gap:6px;padding:8px 16px;font-family:inherit;font-size:.8rem;font-weight:500;display:inline-flex}.admin-btn-primary{background:var(--accent);color:#fff}.admin-btn-primary:hover{background:#5a4bd6}.admin-btn-success{background:var(--green);color:#fff}.admin-btn-danger{background:var(--red);color:#fff}.admin-btn-outline{color:var(--text-secondary);border:1px solid var(--border);background:0 0}.admin-btn-outline:hover{border-color:var(--accent);color:var(--accent-light)}.admin-badge{border-radius:4px;padding:2px 8px;font-size:.7rem;font-weight:600;display:inline-block}.admin-badge-active{color:var(--green);background:#00b89426}.admin-badge-inactive{color:var(--red);background:#ff6b6b26}.sync-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);margin-bottom:16px;padding:20px}.sync-source{margin-bottom:8px;font-size:1rem;font-weight:600}.sync-stats{color:var(--text-secondary);gap:20px;font-size:.85rem;display:flex}.sync-stats span{align-items:center;gap:4px;display:flex}.page-header{justify-content:space-between;align-items:center;margin-bottom:24px;display:flex}.page-title{font-size:1.3rem;font-weight:700}.login-wrapper{background:var(--bg);background-image:radial-gradient(at 20%,#6c5ce714 0%,#0000 60%),radial-gradient(at 80% 20%,#a29bfe0f 0%,#0000 50%);justify-content:center;align-items:center;min-height:100vh;padding:20px;display:flex}.login-card{background:var(--bg-card);border:1px solid var(--border);border-radius:16px;width:100%;max-width:400px;padding:40px 32px;box-shadow:0 4px 24px #0000004d,0 0 0 1px #6c5ce70d}.login-header{text-align:center;margin-bottom:32px}.login-logo{margin-bottom:12px;font-size:3rem;animation:3s ease-in-out infinite loginFloat;display:block}@keyframes loginFloat{0%,to{transform:translateY(0)}50%{transform:translateY(-6px)}}.login-title{background:linear-gradient(135deg,var(--accent),var(--accent-light));-webkit-text-fill-color:transparent;-webkit-background-clip:text;margin-bottom:6px;font-size:1.5rem;font-weight:700}.login-subtitle{color:var(--text-secondary);font-size:.85rem}.login-error{color:var(--red);background:#ff6b6b1a;border:1px solid #ff6b6b40;border-radius:8px;align-items:center;gap:8px;margin-bottom:20px;padding:10px 14px;font-size:.85rem;animation:.4s loginShake;display:flex}@keyframes loginShake{0%,to{transform:translate(0)}25%{transform:translate(-6px)}75%{transform:translate(6px)}}.login-form{flex-direction:column;gap:18px;display:flex}.login-field label{color:var(--text-secondary);margin-bottom:6px;font-size:.8rem;font-weight:500;display:block}.login-field input{background:var(--bg);border:1px solid var(--border);width:100%;color:var(--text);transition:var(--transition);border-radius:8px;outline:none;padding:10px 14px;font-family:inherit;font-size:.9rem}.login-field input:focus{border-color:var(--accent);box-shadow:0 0 0 3px #6c5ce726}.login-field input::placeholder{color:var(--text-muted)}.login-btn{background:linear-gradient(135deg,var(--accent),#5a4bd6);color:#fff;cursor:pointer;border:none;border-radius:8px;justify-content:center;align-items:center;gap:8px;width:100%;margin-top:4px;padding:12px;font-family:inherit;font-size:.9rem;font-weight:600;transition:all .25s;display:flex}.login-btn:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 4px 16px #6c5ce766}.login-btn:active:not(:disabled){transform:translateY(0)}.login-btn:disabled{opacity:.6;cursor:not-allowed}.login-spinner{border:2px solid #ffffff4d;border-top-color:#fff;border-radius:50%;width:16px;height:16px;animation:.6s linear infinite loginSpin;display:inline-block}@keyframes loginSpin{to{transform:rotate(360deg)}}.login-footer{text-align:center;color:var(--text-muted);margin-top:24px;font-size:.7rem}.login-loading{text-align:center;color:var(--text-secondary);padding:40px 0;font-size:.9rem}.login-info{color:var(--blue);background:#54a0ff1a;border:1px solid #54a0ff40;border-radius:8px;align-items:center;gap:8px;margin-bottom:20px;padding:10px 14px;font-size:.85rem;line-height:1.5;display:flex}.login-google-wrapper{justify-content:center;margin-bottom:20px;display:flex}.login-google-btn{justify-content:center;min-height:44px;display:flex}.login-divider{text-align:center;margin-bottom:20px;position:relative}.login-divider:before{content:"";background:var(--border);height:1px;position:absolute;top:50%;left:0;right:0}.login-divider span{background:var(--bg-card);color:var(--text-muted);text-transform:uppercase;letter-spacing:.3px;padding:0 14px;font-size:.75rem;position:relative}.login-turnstile{justify-content:center;min-height:65px;margin-top:4px;display:flex}.sidebar-user{border-top:1px solid var(--border);background:var(--bg-sidebar);justify-content:space-between;align-items:center;padding:14px 16px;display:flex;position:absolute;bottom:0;left:0;right:0}.sidebar-user-info{align-items:center;gap:10px;display:flex;overflow:hidden}.sidebar-user-avatar{background:linear-gradient(135deg,var(--accent),var(--accent-light));color:#fff;border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;width:32px;height:32px;font-size:.85rem;font-weight:700;display:flex}.sidebar-user-details{overflow:hidden}.sidebar-user-name{white-space:nowrap;text-overflow:ellipsis;font-size:.8rem;font-weight:600;overflow:hidden}.sidebar-user-role{color:var(--accent-light);text-transform:uppercase;letter-spacing:.5px;font-size:.65rem;font-weight:600}.sidebar-logout{border:1px solid var(--border);cursor:pointer;transition:var(--transition);background:0 0;border-radius:6px;flex-shrink:0;padding:6px 8px;font-size:1rem;line-height:1}.sidebar-logout:hover{border-color:var(--red);background:#ff6b6b26}.edit-article-page{max-width:960px}.edit-loading,.edit-error-full{text-align:center;color:var(--text-secondary);padding:60px 20px;font-size:1.1rem}.edit-error-full{color:var(--red)}.edit-header{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:16px;margin-bottom:20px;display:flex}.edit-header-left{align-items:center;display:flex}.edit-subtitle{color:var(--text-muted);margin-top:2px;font-size:.75rem;display:block}.edit-msg{border-radius:8px;align-items:center;gap:8px;margin-bottom:16px;padding:10px 14px;font-size:.85rem;line-height:1.5;display:flex}.edit-msg-error{color:var(--red);background:#ff6b6b1f;border:1px solid #ff6b6b40}.edit-msg-success{color:var(--green);background:#00b8941f;border:1px solid #00b89440}.edit-crawl-section{border-color:#6c5ce733;margin-bottom:20px}.crawl-buttons{flex-wrap:wrap;gap:10px;margin-bottom:12px;display:flex}.crawl-btn{border:1px solid var(--border);cursor:pointer;color:#fff;background:var(--bg-hover);border-radius:8px;align-items:center;gap:6px;padding:10px 18px;font-family:inherit;font-size:.85rem;font-weight:600;transition:all .2s;display:inline-flex}.crawl-btn:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 4px 12px #0000004d}.crawl-btn:disabled{opacity:.5;cursor:not-allowed;transform:none}.crawl-btn-ophim{background:linear-gradient(135deg,#6c5ce7,#a29bfe);border-color:#0000}.crawl-btn-nguonc{color:#1a1d27;background:linear-gradient(135deg,#00b894,#55efc4);border-color:#0000}.crawl-btn-kkphim{background:linear-gradient(135deg,#e84393,#fd79a8);border-color:#0000}.crawl-btn-all{background:linear-gradient(135deg,#e17055,#fab1a0);border-color:#0000}.crawl-result{background:var(--bg);border:1px solid var(--border);border-radius:8px;margin-top:12px;padding:14px}.crawl-result-grid{grid-template-columns:repeat(5,1fr);gap:12px;display:grid}.crawl-stat{text-align:center}.crawl-stat-label{color:var(--text-muted);text-transform:uppercase;letter-spacing:.3px;font-size:.7rem;display:block}.crawl-stat-value{margin-top:2px;font-size:1.1rem;font-weight:700}.crawl-errors{color:var(--red);background:#ff6b6b14;border-radius:6px;margin-top:10px;padding:8px 12px;font-size:.8rem}.crawl-meta{color:var(--text-secondary);flex-wrap:wrap;gap:16px;margin-top:12px;font-size:.78rem;display:flex}.crawl-meta strong{color:var(--text)}.edit-preview-strip{gap:16px;margin-bottom:20px;display:flex}.edit-preview-item{border:1px solid var(--border);background:var(--bg-card);border-radius:10px;position:relative;overflow:hidden}.edit-preview-item img{object-fit:cover;width:auto;height:140px;display:block}.edit-preview-poster img{aspect-ratio:2/3;object-fit:cover;width:auto;height:140px}.edit-preview-label{color:#fff;background:#000000b3;border-radius:4px;padding:2px 8px;font-size:.65rem;font-weight:600;position:absolute;top:6px;left:6px}.edit-input-preview{border:1px solid var(--border);border-radius:6px;max-height:80px;margin-top:8px}.edit-tabs{border-bottom:1px solid var(--border);gap:4px;margin-bottom:16px;padding-bottom:0;display:flex}.edit-tab{color:var(--text-secondary);cursor:pointer;white-space:nowrap;background:0 0;border:none;border-bottom:2px solid #0000;padding:10px 16px;font-family:inherit;font-size:.8rem;font-weight:500;transition:all .2s}.edit-tab:hover{color:var(--text)}.edit-tab.active{color:var(--accent-light);border-bottom-color:var(--accent)}.episodes-table-wrapper{max-height:400px;overflow-y:auto}.edit-bottom-actions{border-top:1px solid var(--border);gap:12px;margin-top:20px;padding-top:20px;display:flex}.articles-toolbar{flex-wrap:wrap;align-items:center;gap:12px;margin-bottom:16px;display:flex}.articles-search{flex:1;min-width:200px;position:relative}.articles-search-icon{pointer-events:none;font-size:.85rem;position:absolute;top:50%;left:12px;transform:translateY(-50%)}.articles-search-input{background:var(--bg-card);border:1px solid var(--border);width:100%;color:var(--text);border-radius:8px;outline:none;padding:9px 34px;font-family:inherit;font-size:.85rem;transition:all .2s}.articles-search-input:focus{border-color:var(--accent);box-shadow:0 0 0 3px #6c5ce71f}.articles-search-input::placeholder{color:var(--text-muted)}.articles-search-clear{background:var(--bg-hover);color:var(--text-secondary);cursor:pointer;border:none;border-radius:50%;justify-content:center;align-items:center;width:22px;height:22px;font-size:.7rem;transition:all .15s;display:flex;position:absolute;top:50%;right:8px;transform:translateY(-50%)}.articles-search-clear:hover{background:var(--red);color:#fff}.articles-filters{flex-wrap:wrap;gap:6px;display:flex}.articles-filter-select{background:var(--bg);border:1px solid var(--border);color:var(--text);cursor:pointer;border-radius:8px;outline:none;min-width:130px;padding:7px 12px;font-family:inherit;font-size:.8rem;transition:border-color .2s}.articles-filter-select:hover,.articles-filter-select:focus{border-color:var(--accent-light)}.articles-table .articles-col-thumb{width:44px;padding:6px 4px}.articles-thumb{object-fit:cover;border:1px solid var(--border);border-radius:4px;width:36px;height:50px}.articles-thumb-placeholder{background:var(--bg-hover);border-radius:4px;justify-content:center;align-items:center;width:36px;height:50px;font-size:1rem;display:flex}.articles-title-link{color:var(--text);font-size:.85rem;font-weight:600;transition:color .15s;display:block}.articles-title-link:hover{color:var(--accent-light)}.articles-slug{color:var(--text-muted);white-space:nowrap;text-overflow:ellipsis;max-width:220px;margin-top:2px;font-size:.72rem;overflow:hidden}.articles-actions{justify-content:flex-end;gap:6px;display:flex}.articles-action-btn{justify-content:center;min-width:30px;padding:5px 8px!important;font-size:.78rem!important}.articles-action-delete:hover{border-color:var(--red)!important;background:#ff6b6b26!important}.articles-checkbox{width:16px;height:16px;accent-color:var(--accent);cursor:pointer}.articles-table tr.row-selected{background:#6c5ce714}.articles-table tr.row-selected:hover{background:#6c5ce71f}.articles-bulk-bar{background:#6c5ce71a;border:1px solid #6c5ce740;border-radius:8px;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px;margin-bottom:12px;padding:10px 16px;font-size:.85rem;animation:.2s modalFadeIn;display:flex}.articles-pagination{flex-wrap:wrap;justify-content:center;align-items:center;gap:6px;margin-top:20px;display:flex}.articles-pagination-pages{gap:4px;display:flex}.articles-pagination-dots{color:var(--text-muted);align-items:center;padding:0 4px;font-size:.85rem;display:flex}.articles-pagination-info{color:var(--text-muted);margin-left:8px;font-size:.78rem}.sidebar-toggle{z-index:1100;background:var(--bg-card);border:1px solid var(--border);width:40px;height:40px;color:var(--text);cursor:pointer;border-radius:10px;justify-content:center;align-items:center;font-size:1.2rem;transition:all .2s;display:none;position:fixed;top:14px;left:14px;box-shadow:0 2px 12px #0000004d}.sidebar-toggle:hover{background:var(--bg-hover)}.sidebar-overlay{z-index:999;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);background:#0009;display:none;position:fixed;inset:0}.users-filters{flex-wrap:wrap;gap:6px;margin-bottom:16px;display:flex}.users-filter-btn{color:var(--text-secondary);background:var(--bg-card);border:1px solid var(--border);cursor:pointer;border-radius:8px;padding:7px 14px;font-family:inherit;font-size:.8rem;font-weight:500;transition:all .2s}.users-filter-btn:hover{border-color:var(--accent);color:var(--text)}.users-filter-btn.active{background:var(--accent);color:#fff;border-color:var(--accent)}.users-table-wrapper{overflow-x:auto}.users-cell-user{align-items:center;gap:10px;display:flex}.users-avatar{background:linear-gradient(135deg,var(--accent),var(--accent-light));color:#fff;border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;width:34px;height:34px;font-size:.8rem;font-weight:700;display:flex;overflow:hidden}.users-avatar img{object-fit:cover;width:100%;height:100%}.users-fullname{white-space:nowrap;font-size:.85rem;font-weight:600}.users-username{background:var(--bg);color:var(--text-secondary);border-radius:4px;padding:2px 8px;font-family:SF Mono,Fira Code,monospace;font-size:.78rem}.users-status-btn{cursor:pointer;border:1px solid #0000;border-radius:6px;align-items:center;gap:4px;padding:4px 10px;font-family:inherit;font-size:.75rem;font-weight:600;transition:all .2s;display:inline-flex}.users-status-btn.active{color:var(--green);background:#00b8941f;border-color:#00b89440}.users-status-btn.active:hover{background:#00b89433}.users-status-btn.pending{color:var(--gold);background:#feca571f;border-color:#feca5740}.users-status-btn.pending:hover{background:#feca5733}.users-actions{justify-content:flex-end;gap:6px;display:flex}.users-last-login{align-items:center;gap:8px;display:flex}.users-login-indicator{border-radius:50%;flex-shrink:0;width:8px;height:8px}.users-login-indicator.has-login{background:var(--green);box-shadow:0 0 6px #00b89466}.users-login-indicator.no-login{background:var(--text-muted)}.activity-modal{border:1px solid #6c5ce71f;border-radius:16px;flex-direction:column;width:95%;max-width:780px;max-height:90vh;display:flex;overflow:hidden;box-shadow:0 24px 80px #00000080,0 0 0 1px #6c5ce714,inset 0 1px #ffffff0a}.activity-banner{border-bottom:1px solid var(--border);background:linear-gradient(135deg,#6c5ce71f 0%,#a29bfe0f 50%,#00b8940f 100%);padding:24px 24px 0;position:relative}.activity-banner:before{content:"";pointer-events:none;background:radial-gradient(at 20% 0,#6c5ce726 0%,#0000 50%),radial-gradient(at 80% 100%,#00b8941a 0%,#0000 50%);height:100%;position:absolute;top:0;left:0;right:0}.activity-banner-content{z-index:1;position:relative}.activity-banner-top{justify-content:space-between;align-items:center;margin-bottom:16px;display:flex}.activity-user-profile{align-items:center;gap:14px;display:flex}.activity-user-avatar{background:linear-gradient(135deg,var(--accent),var(--accent-light));color:#fff;border-radius:14px;flex-shrink:0;justify-content:center;align-items:center;width:48px;height:48px;font-size:1.1rem;font-weight:700;display:flex;overflow:hidden;box-shadow:0 4px 16px #6c5ce74d}.activity-user-avatar img{object-fit:cover;border-radius:14px;width:100%;height:100%}.activity-user-name{letter-spacing:-.01em;font-size:1.1rem;font-weight:700}.activity-user-sub{color:var(--text-secondary);align-items:center;gap:8px;margin-top:3px;font-size:.78rem;display:flex}.activity-user-sub .activity-login-dot{border-radius:50%;flex-shrink:0;width:6px;height:6px}.activity-login-dot.online{background:var(--green);box-shadow:0 0 8px #00b89480}.activity-login-dot.offline{background:var(--text-muted)}.activity-close-btn{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid var(--border);width:34px;height:34px;color:var(--text-secondary);cursor:pointer;background:#ffffff0d;border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;font-size:1.1rem;transition:all .2s;display:flex}.activity-close-btn:hover{border-color:var(--red);color:var(--red);background:#ff6b6b26;transform:rotate(90deg)}.activity-stats{z-index:1;grid-template-columns:repeat(3,1fr);gap:10px;padding-bottom:16px;display:grid;position:relative}.activity-stat-card{border:1px solid var(--border);cursor:pointer;background:#ffffff08;border-radius:10px;align-items:center;gap:10px;padding:10px 12px;transition:all .2s;display:flex}.activity-stat-card:hover{background:#ffffff0f;border-color:#6c5ce733;transform:translateY(-1px)}.activity-stat-card.active{background:#6c5ce71a;border-color:#6c5ce74d;box-shadow:0 2px 12px #6c5ce726}.activity-stat-icon{border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;width:32px;height:32px;font-size:.95rem;display:flex}.activity-stat-icon.watch{background:linear-gradient(135deg,#6c5ce733,#a29bfe26)}.activity-stat-icon.bookmark{background:linear-gradient(135deg,#00b89433,#55efc426)}.activity-stat-icon.search{background:linear-gradient(135deg,#54a0ff33,#74b9ff26)}.activity-stat-value{letter-spacing:-.02em;font-size:1.15rem;font-weight:700;line-height:1}.activity-stat-label{color:var(--text-muted);text-transform:uppercase;letter-spacing:.4px;margin-top:1px;font-size:.65rem}.activity-tabs{border-bottom:1px solid var(--border);-webkit-overflow-scrolling:touch;scrollbar-width:none;background:#00000026;gap:0;padding:0;display:flex;position:relative;overflow-x:auto}.activity-tabs::-webkit-scrollbar{display:none}.activity-tab{color:var(--text-muted);cursor:pointer;white-space:nowrap;background:0 0;border:none;border-bottom:2px solid #0000;flex:1;justify-content:center;align-items:center;gap:7px;padding:13px 20px;font-family:inherit;font-size:.82rem;font-weight:500;transition:all .25s;display:flex;position:relative}.activity-tab:hover{color:var(--text);background:#ffffff08}.activity-tab.active{color:var(--accent-light);border-bottom-color:var(--accent);background:#6c5ce70f}.activity-tab.active:after{content:"";background:var(--accent);border-radius:2px 2px 0 0;height:2px;position:absolute;bottom:-1px;left:20%;right:20%;box-shadow:0 0 8px #6c5ce780}.activity-tab-count{min-width:22px;height:20px;color:var(--text-muted);background:#ffffff0f;border-radius:12px;justify-content:center;align-items:center;padding:0 7px;font-size:.7rem;font-weight:700;transition:all .25s;display:inline-flex}.activity-tab.active .activity-tab-count{color:var(--accent-light);background:#6c5ce733;box-shadow:0 0 6px #6c5ce733}.activity-content{scroll-behavior:smooth;flex:1;min-height:280px;max-height:calc(90vh - 280px);overflow-y:auto}.activity-content::-webkit-scrollbar{width:5px}.activity-content::-webkit-scrollbar-track{background:0 0}.activity-content::-webkit-scrollbar-thumb{background:#ffffff14;border-radius:10px}.activity-content::-webkit-scrollbar-thumb:hover{background:#ffffff26}.activity-list{flex-direction:column;padding:4px 0;display:flex}.activity-item{border-bottom:1px solid #ffffff08;align-items:center;gap:14px;padding:14px 24px;transition:all .2s;animation:.3s backwards activityItemIn;display:flex}.activity-item:first-child{animation-delay:0s}.activity-item:nth-child(2){animation-delay:30ms}.activity-item:nth-child(3){animation-delay:60ms}.activity-item:nth-child(4){animation-delay:90ms}.activity-item:nth-child(5){animation-delay:.12s}.activity-item:nth-child(n+6){animation-delay:.15s}@keyframes activityItemIn{0%{opacity:0;transform:translate(-8px)}to{opacity:1;transform:translate(0)}}.activity-item:hover{background:#ffffff08}.activity-item:last-child{border-bottom:none}.activity-item-icon{border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:40px;height:40px;font-size:1.05rem;display:flex;position:relative}.activity-item-icon.watch-icon{background:linear-gradient(135deg,#6c5ce726,#a29bfe1a);box-shadow:0 2px 8px #6c5ce71a}.activity-item-icon.bookmark-icon{background:linear-gradient(135deg,#00b89426,#55efc41a);box-shadow:0 2px 8px #00b8941a}.activity-item-icon.search-icon{background:linear-gradient(135deg,#54a0ff26,#74b9ff1a);box-shadow:0 2px 8px #54a0ff1a}.activity-item-info{flex:1;min-width:0}.activity-item-title{color:var(--text);white-space:nowrap;text-overflow:ellipsis;font-size:.88rem;font-weight:500;line-height:1.3;overflow:hidden}.activity-item-meta{color:var(--text-muted);flex-wrap:wrap;gap:6px;margin-top:4px;font-size:.72rem;display:flex}.activity-item-meta-tag{color:var(--text-secondary);background:#ffffff0a;border:1px solid #ffffff0a;border-radius:4px;align-items:center;gap:3px;padding:1px 6px;font-size:.68rem;display:inline-flex}.activity-item-meta-tag.ep{color:var(--accent-light);background:#6c5ce714;border-color:#6c5ce726}.activity-item-meta-tag.quality{color:var(--gold);background:#feca5714;border-color:#feca5726}.activity-item-meta-tag.results{color:var(--green);background:#00b89414;border-color:#00b89426}.activity-item-meta-tag.ip{font-family:monospace;font-size:.65rem}.activity-item-time{flex-direction:column;flex-shrink:0;align-items:flex-end;gap:2px;display:flex}.activity-item-time-relative{color:var(--text-secondary);font-size:.72rem;font-weight:500}.activity-item-time-absolute{color:var(--text-muted);font-size:.65rem}.activity-loading{flex-direction:column;padding:8px 0;display:flex}.activity-skeleton{align-items:center;gap:14px;padding:14px 24px;display:flex}.activity-skeleton-icon{background:#ffffff0a;border-radius:10px;width:40px;height:40px;animation:1.5s ease-in-out infinite skeletonPulse}.activity-skeleton-body{flex-direction:column;flex:1;gap:8px;display:flex}.activity-skeleton-line{background:#ffffff0a;border-radius:6px;height:12px;animation:1.5s ease-in-out infinite skeletonPulse}.activity-skeleton-line.w60{width:60%}.activity-skeleton-line.w40{width:40%}.activity-skeleton-line.w80{width:80%}.activity-skeleton-time{background:#ffffff0a;border-radius:6px;flex-shrink:0;width:60px;height:12px;animation:1.5s ease-in-out infinite skeletonPulse}@keyframes skeletonPulse{0%,to{opacity:.4}50%{opacity:1}}.activity-empty{color:var(--text-muted);text-align:center;flex-direction:column;justify-content:center;align-items:center;padding:56px 24px;display:flex}.activity-empty-icon{background:#ffffff08;border:1px dashed #ffffff14;border-radius:20px;justify-content:center;align-items:center;width:72px;height:72px;margin-bottom:16px;font-size:2rem;display:flex}.activity-empty-title{color:var(--text-secondary);margin-bottom:6px;font-size:.92rem;font-weight:600}.activity-empty-desc{color:var(--text-muted);max-width:260px;font-size:.78rem;line-height:1.5}.activity-pagination{border-top:1px solid var(--border);background:#0000001a;justify-content:center;align-items:center;gap:12px;padding:14px 24px;display:flex}.activity-pagination .admin-btn{border-radius:8px;padding:6px 14px;font-size:.75rem}.activity-pagination-info{color:var(--text-secondary);align-items:center;gap:6px;font-size:.78rem;display:flex}.activity-pagination-info strong{color:var(--text);font-weight:600}@media (max-width:768px){.activity-modal{border:none;border-radius:0;width:100%;max-width:100%;max-height:100dvh}.activity-banner{padding:16px 16px 0}.activity-user-avatar{border-radius:12px;width:40px;height:40px;font-size:.95rem}.activity-user-name{font-size:.95rem}.activity-stats{gap:6px;padding-bottom:12px}.activity-stat-card{text-align:center;flex-direction:column;align-items:center;gap:8px;padding:8px}.activity-stat-icon{width:28px;height:28px;font-size:.85rem}.activity-stat-value{font-size:1rem}.activity-stat-label{font-size:.6rem;display:none}.activity-tabs{-ms-overflow-style:none;overflow-x:auto}.activity-tab{padding:11px 14px;font-size:.78rem}.activity-content{min-height:200px;max-height:calc(100dvh - 260px)}.activity-item{gap:10px;padding:12px 16px}.activity-item-icon{border-radius:8px;width:36px;height:36px;font-size:.9rem}.activity-item-title{font-size:.82rem}.activity-item-time{display:none}.activity-item-meta{gap:4px}.activity-item-time-mobile{color:var(--text-muted);font-size:.65rem;display:inline-flex}.activity-pagination{gap:8px;padding:10px 16px}.activity-empty{padding:40px 16px}.activity-empty-icon{width:56px;height:56px;font-size:1.5rem}}@media (max-width:480px){.activity-modal{border-radius:0}.activity-stats{grid-template-columns:repeat(3,1fr);gap:4px}.activity-stat-card{padding:6px 4px}.activity-tab-count{min-width:18px;height:17px;padding:0 5px;font-size:.65rem}.modal-overlay:has(.activity-modal){padding:0}}.activity-item-time-mobile{display:none}.modal-overlay{z-index:2000;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);background:#000000a6;justify-content:center;align-items:center;padding:20px;animation:.2s modalFadeIn;display:flex;position:fixed;inset:0}@keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}.modal-card{background:var(--bg-card);border:1px solid var(--border);border-radius:14px;width:100%;max-width:440px;animation:.25s modalSlideUp;box-shadow:0 16px 48px #0006}@keyframes modalSlideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.modal-header{border-bottom:1px solid var(--border);justify-content:space-between;align-items:center;padding:18px 20px;display:flex}.modal-header h3{font-size:1rem;font-weight:600}.modal-close{border:1px solid var(--border);width:30px;height:30px;color:var(--text-secondary);cursor:pointer;background:0 0;border-radius:8px;justify-content:center;align-items:center;font-size:1rem;transition:all .2s;display:flex}.modal-close:hover{border-color:var(--red);color:var(--red);background:#ff6b6b26}.modal-body{flex-direction:column;gap:14px;padding:20px;display:flex}.modal-field label{color:var(--text-secondary);margin-bottom:6px;font-size:.8rem;font-weight:500;display:block}.modal-actions{border-top:1px solid var(--border);justify-content:flex-end;gap:10px;padding:16px 20px;display:flex}.admin-table tr{transition:background .15s}.admin-table td:last-child,.admin-table th:last-child{text-align:right}@media (max-width:1024px){.stats-grid{grid-template-columns:repeat(2,1fr)}.crawl-result-grid{grid-template-columns:repeat(3,1fr)}}@media (max-width:768px){.sidebar-toggle{display:flex}.sidebar-overlay{display:block}.sidebar{z-index:1000;box-shadow:none;transition:transform .3s cubic-bezier(.4,0,.2,1);transform:translate(-100%)}.sidebar.open{transform:translate(0);box-shadow:4px 0 24px #0006}.main-content{margin-left:0;padding:60px 16px 16px}.page-header{flex-direction:column;align-items:flex-start;gap:12px}.page-title{font-size:1.1rem}.login-card{padding:28px 20px}.edit-header{flex-direction:column;align-items:flex-start}.edit-preview-strip{flex-direction:column}.edit-tabs{overflow-x:auto}.admin-section-body{padding:12px 14px}.articles-col-thumb,.articles-col-ep,.articles-col-year,.articles-col-view{display:none}.articles-slug{max-width:140px}.articles-toolbar{flex-direction:column}.articles-bulk-bar{text-align:center;flex-direction:column}.articles-pagination-pages{display:none}}@media (max-width:480px){.stats-grid{grid-template-columns:1fr}.crawl-buttons{flex-direction:column}.crawl-result-grid{grid-template-columns:repeat(2,1fr)}.users-filters,.articles-filters{flex-direction:column}.modal-card{margin:0 10px}}.settings-desc{color:var(--text-secondary);font-size:.85rem;line-height:1.6}.settings-desc code{color:var(--accent-light);background:#6c5ce726;border-radius:4px;padding:2px 6px;font-size:.8rem}.settings-desc strong{color:var(--text)}.settings-add-row{background:var(--bg);border:1px dashed var(--border);border-radius:8px;align-items:center;gap:10px;padding:16px;transition:border-color .3s,box-shadow .3s;display:flex}.settings-add-row-highlight{border-color:var(--accent);border-style:solid;animation:.6s 2 settingsPulse;box-shadow:0 0 0 3px #6c5ce733}@keyframes settingsPulse{0%,to{box-shadow:0 0 0 3px #6c5ce733}50%{box-shadow:0 0 0 6px #6c5ce759}}.settings-input{background:var(--bg-card);border:1px solid var(--border);color:var(--text);transition:var(--transition);border-radius:6px;outline:none;flex:1;padding:8px 14px;font-family:inherit;font-size:.85rem}.settings-input:focus{border-color:var(--accent);box-shadow:0 0 0 3px #6c5ce71f}.settings-input::placeholder{color:var(--text-muted)}.settings-arrow{color:var(--accent);flex-shrink:0;font-size:1.2rem;font-weight:700}.settings-domain{border:1px solid var(--border);background:#ffffff0a;border-radius:4px;padding:3px 8px;font-size:.78rem}.settings-domain-new{color:var(--green);background:#00b89414;border-color:#00b8944d}.settings-preview-count{padding:12px 0;font-size:1.1rem}.settings-preview-count strong{color:var(--accent-light);font-size:1.3rem}.settings-replace-box{background:var(--bg);border:1px solid var(--border);border-radius:8px;margin-top:16px;padding:16px}.settings-replace-box code{background:#6c5ce71f;border-radius:3px;padding:1px 5px;font-size:.78rem}.settings-help{flex-direction:column;gap:16px;display:flex}.settings-help-step{align-items:flex-start;gap:14px;display:flex}.settings-help-num{background:linear-gradient(135deg,var(--accent),var(--accent-light));color:#fff;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:32px;height:32px;font-size:.85rem;font-weight:700;display:flex}.settings-help-step p{color:var(--text-secondary);margin-top:4px;font-size:.82rem;line-height:1.6}.settings-help-step strong{color:var(--text);font-size:.88rem}.settings-help-step code{color:var(--accent-light);background:#6c5ce71f;border-radius:3px;padding:1px 5px;font-size:.78rem}@media (max-width:768px){.settings-add-row{flex-direction:column}.settings-arrow{transform:rotate(90deg)}}
