
        /* =========================================================
           1. KHUÔN MẪU GỐC CHUẨN INDEX.HTML
        ========================================================= */
        :root {
            --primary-bg: #f5f7fc; --white: #ffffff; --text-main: #1d1d1f; --text-muted: #86868b;
            --primary-color: #6366f1; --gradient-btn: linear-gradient(135deg, #a855f7, #6366f1);
            --border-radius: 16px; --danger: #ef4444; --success: #10b981; --warning: #f59e0b;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: #e5e5e5; overflow-x: hidden; }
        .app-container { width: 100%; max-width: 480px; margin: 0 auto; background-color: var(--primary-bg); background-image: linear-gradient(180deg, #e0e7ff 0%, #f5f7fc 20%); min-height: 100vh; display: flex; flex-direction: column; position: relative; overflow-x: hidden; box-shadow: 0 0 20px rgba(0,0,0,0.1); }
        
        .pc-flex { display: none !important; } .pc-block { display: none !important; } .mobile-flex { display: flex !important; } .mobile-block { display: block !important; }

        /* AUTH STATE */
        .auth-el { display: none !important; } body.is-logged-in .auth-el { display: flex !important; }
        body.is-logged-in img.auth-el { display: block !important; } body.is-logged-in .guest-el { display: none !important; }
        
        .balance-pill { background: #f8fafc; color: var(--primary-color); border: 1px solid #e2e8f0; padding: 6px 12px; border-radius: 20px; font-weight: 700; font-size: 13px; align-items: center; gap: 6px; cursor: pointer; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.02); text-decoration: none; display: flex;}
        .balance-pill:hover { background: #e0e7ff; border-color: #c7d2fe; transform: translateY(-1px); }
        .balance-pill .fa-plus { font-size: 10px; margin-left: 2px; color: var(--primary-color); }

        /* HEADER MOBILE */
        .header { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: transparent; z-index: 10; }
        .icon-btn { background: var(--white); border: none; width: 36px; height: 36px; border-radius: 50%; color: var(--primary-color); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); cursor: pointer; transition: all 0.3s ease; }
        .icon-btn:hover { background: #e0e7ff; transform: scale(1.1); }
        .header-right { display: flex; align-items: center; gap: 10px; }
        .btn-login-trigger { background: var(--white); color: var(--primary-color); border: 1px solid rgba(99, 102, 241, 0.2); padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: all 0.3s ease;}
        .btn-login-trigger:hover { background: var(--gradient-btn); color: white; transform: translateY(-2px); border-color: transparent; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); }
        .user-avatar-header { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--primary-color); object-fit: cover; cursor: pointer; transition: all 0.3s; }
        .flag-btn { background: var(--white); border: none; padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 4px; font-weight: bold; font-size: 12px; color: #d32f2f; box-shadow: 0 2px 8px rgba(0,0,0,0.05); cursor: pointer; }

        /* SIDEBAR MOBILE */
        .mobile-sidebar-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15, 23, 42, 0.5); backdrop-filter: blur(2px); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .mobile-sidebar-overlay.active { opacity: 1; visibility: visible; }
        .mobile-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 300px; background: #f0f2f5; z-index: 1000; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1); overflow-y: auto; display: flex; flex-direction: column; }
        .mobile-sidebar.active { transform: translateX(0); }
        .mobile-sidebar-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--white); border-bottom: 1px solid #e2e8f0; }
        .mobile-sidebar-close { background: #f1f5f9; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 16px; color: #64748b; cursor: pointer; transition: all 0.3s ease;}
        .mobile-sidebar-close:hover { background: #e2e8f0; color: #ef4444; transform: rotate(90deg); }
        .mobile-sidebar-content { padding: 20px; flex: 1; }

        /* SIDEBAR SECTIONS (DÙNG CHUNG PC & MOBILE) */
        .sidebar-section { background-color: var(--white); background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px); background-size: 16px 16px; border-radius: 16px; padding: 16px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
        .sidebar-section-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; margin-bottom: 16px; padding: 0 4px; }
        .sidebar-section-header h4 { font-size: 16px; color: var(--text-main); font-weight: 700; margin: 0; }
        .sidebar-section-header img.filter-arrow { width: 16px; height: 16px; transition: transform 0.3s ease; }
        .sidebar-section.collapsed .sidebar-section-header img.filter-arrow { transform: rotate(180deg); }
        .section-wrapper { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.3s ease-out; }
        .sidebar-section.collapsed .section-wrapper { grid-template-rows: 0fr; }
        .section-content { overflow: hidden; }
        .sidebar-item { display: flex; align-items: center; gap: 14px; padding: 10px 12px; border-radius: 12px; color: #334155; font-size: 14.5px; text-decoration: none; font-weight: 600; transition: all 0.2s; margin-bottom: 6px; cursor: pointer; }
        .sidebar-item:hover { background: #f8fafc; } .sidebar-item.active { background: #eef2ff; color: var(--primary-color); }
        .sb-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: #ede9fe; color: #6366f1; transition: all 0.2s; font-size: 16px; flex-shrink: 0; }
        .sb-icon img { width: 22px; height: 22px; object-fit: contain; }
        .sidebar-item.active .sb-icon { background: var(--primary-color); color: white; box-shadow: 0 4px 10px rgba(99,102,241,0.3); }

        .badge-hot, .badge-new { border-radius: 12px; padding: 2px 8px; font-size: 10px; margin-left: auto; font-weight: 800; color: white; }
        .badge-hot { background: linear-gradient(135deg, #ff4d4f, #ff7875); } .badge-new { background: linear-gradient(135deg, #ff7a45, #ff9c6e); }
        
        .has-sub { display: flex; flex-direction: column;} .has-sub > .sidebar-item { margin-bottom: 0; }
        .chevron-icon { margin-left: auto; font-size: 12px; color: #94a3b8; transition: transform 0.3s ease; }
        .has-sub.open .chevron-icon { transform: rotate(180deg); }
        .sub-menu-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
        .has-sub.open .sub-menu-wrapper { grid-template-rows: 1fr; }
        .sub-menu-inner { overflow: hidden; padding-left: 20px; display: flex; flex-direction: column; padding-top: 6px; padding-bottom: 6px; gap: 4px;}
        .sub-item { color: #475569; font-size: 13.5px; font-weight: 600; text-decoration: none; padding: 10px 12px; border-radius: 8px; transition: all 0.2s; display: flex; align-items: center; gap: 12px; }
        .sub-item .dot { width: 6px; height: 6px; background: #cbd5e1; border-radius: 50%; transition: background 0.2s; flex-shrink: 0;}
        .sub-item:hover { background: #f8fafc; color: var(--primary-color); } .sub-item:hover .dot { background: var(--primary-color); }

        /* LAYOUT & BOTTOM NAV */
        .main-layout { display: flex; flex-direction: column; flex: 1; }
        .main-content { flex: 1; padding-bottom: 90px; }
        .bottom-nav { position: fixed; bottom: 0; width: 100%; max-width: 480px; background: var(--white); display: flex; justify-content: space-between; padding: 10px 20px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.05); border-top-left-radius: 24px; border-top-right-radius: 24px; z-index: 10; }
        .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--text-muted); font-size: 11px; text-decoration: none; width: 20%; transition: all 0.3s; }
        .nav-item.active { color: var(--primary-color); font-weight: 600; }
        .nav-item.center-action { position: relative; text-decoration: none; }
        .center-btn { width: 56px; height: 56px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: -30px; border: 4px solid var(--white); box-shadow: 0 8px 16px rgba(0,0,0,0.08); transition: all 0.3s; }
        .center-text { margin-top: 32px; transition: color 0.3s; }

        /* =========================================================
           2. CSS DÀNH RIÊNG CHO LÕI "THÊM TIKTOK"
        ========================================================= */
        .add-tiktok-container { padding: 0 16px 24px; }
        .box-card { background: var(--white); border-radius: 24px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }

        /* Row 3 ô thống kê */
        .stat-mini-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .stat-mini-card { background: var(--white); border-radius: 20px; padding: 20px 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 16px; }
        .stat-mini-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;}
        .sm-icon-1 { background: #e0e7ff; color: var(--primary-color); }
        .sm-icon-2 { background: #dcfce7; color: #10b981; }
        .sm-icon-3 { background: #fef3c7; color: #f59e0b; }
        .stat-mini-info { display: flex; flex-direction: column; }
        .stat-mini-info h3 { font-size: 22px; font-weight: 800; color: var(--text-main); margin-bottom: 2px;}
        .stat-mini-info p { font-size: 13px; color: var(--text-muted); font-weight: 500;}

        /* Tabs thêm tài khoản */
        .add-tabs { background: #f1f5f9; border-radius: 16px; padding: 6px; display: flex; margin-bottom: 24px; }
        .add-tab { flex: 1; padding: 14px; text-align: center; border-radius: 12px; font-weight: 700; font-size: 13.5px; color: #64748b; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .add-tab.active { background: var(--gradient-btn); color: white; box-shadow: 0 4px 12px rgba(99,102,241,0.3); }
        .add-tab.inactive { background: transparent; }

        .tab-content { display: none; animation: fadeIn 0.4s ease; }
        .tab-content.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

        /* Hướng dẫn & Nút hành động */
        .btn-action-main { background: var(--gradient-btn); color: white; border: none; width: 100%; padding: 16px; border-radius: 16px; font-weight: 700; font-size: 15px; cursor: pointer; box-shadow: 0 6px 20px rgba(99,102,241,0.3); transition: all 0.3s; display: flex; justify-content: center; align-items: center; gap: 8px;}
        .btn-action-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.4); }

        .instruction-box { margin-top: 24px; padding: 0 4px; }
        .instruction-box h5 { font-size: 12px; color: #94a3b8; text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.5px; font-weight: 700;}
        .instruction-list { list-style: none; padding: 0; }
        .instruction-list li { font-size: 14px; color: #475569; margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;}

        /* Tab Cookie */
        .cookie-textarea { width: 100%; height: 130px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 16px; outline: none; resize: none; font-size: 13.5px; transition: all 0.3s; margin-bottom: 16px; font-family: monospace;}
        .cookie-textarea:focus { border-color: var(--primary-color); background: white; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }

        /* Filter & Table Area */
        .filter-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
        .search-acc { flex: 1; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 30px; padding: 10px 18px; display: flex; align-items: center; gap: 8px; transition: all 0.3s;}
        .search-acc:focus-within { border-color: var(--primary-color); background: white; }
        .search-acc input { border: none; background: transparent; outline: none; width: 100%; font-size: 13.5px; }
        .filter-select { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 30px; padding: 10px 16px; font-size: 13.5px; color: #475569; outline: none; cursor: pointer; }
        .filter-group { display: flex; gap: 12px; }
        
        .total-filtered { background: #fef3c7; color: #d97706; font-weight: 700; font-size: 12px; padding: 10px 16px; border-radius: 30px; display: flex; align-items: center; gap: 6px; border: 1px solid #fde68a;}

        .table-responsive { overflow-x: auto; margin: 0 -24px; padding: 0 24px;}
        .acc-table { width: 100%; border-collapse: collapse; min-width: 750px; }
        .acc-table th { text-align: left; padding: 16px 12px; font-size: 11px; color: #94a3b8; border-bottom: 1px solid #e2e8f0; text-transform: uppercase; font-weight: 700; white-space: nowrap;}
        .acc-table td { padding: 16px 12px; font-size: 14px; border-bottom: 1px solid #f1f5f9; color: var(--text-main); font-weight: 500;}
        
        .empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px 0; color: #cbd5e1; }
        .empty-state i { font-size: 48px; margin-bottom: 16px; color: #cbd5e1;}
        .empty-state span { font-size: 14px; font-weight: 600; color: #94a3b8;}

        /* =========================================================
           BỐ CỤC PC CHUYÊN NGHIỆP (> 1024px)
        ========================================================= */
        @media (min-width: 1024px) {
            html, body { height: 100%; overflow: hidden; }
            .app-container { max-width: 100% !important; height: 100vh; flex-direction: column; box-shadow: none; }
            .pc-flex { display: flex !important; } .pc-block { display: block !important; } .mobile-flex, .mobile-block { display: none !important; }

            /* HEADER PC */
            .header-pc { height: 76px; padding: 0 40px; border-bottom: 1px solid #e2e8f0; background: var(--white); display: flex; align-items: center; justify-content: space-between; width: 100%; }
            .header-pc-left { flex: 1; display: flex; align-items: center; }
            .logo-pc { display: flex; align-items: center; text-decoration: none;}
            .logo-pc img { width: 44px; height: 44px; object-fit: contain;}
            .logo-pc span { font-size: 22px; font-weight: 800; color: #1e293b; margin-left: 10px;}

            .header-pc-center { display: flex; align-items: center; gap: 8px; background: #ffffff; border: 1px solid #e2e8f0; padding: 6px 16px 6px 6px; border-radius: 40px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); justify-content: center; }
            .nav-chip-main { background: var(--gradient-btn); color: white; border-radius: 30px; padding: 8px 20px; font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 8px; cursor: pointer; text-decoration: none; }
            .nav-icon-btn { width: 36px; height: 36px; background: transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; text-decoration: none;}
            .nav-icon-btn:hover { background: #f1f5f9; transform: scale(1.1); }

            .header-pc-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
            .search-pill-pc { background: #f8fafc; color: #6366f1; font-weight: 600; font-size: 14px; border-radius: 30px; padding: 12px 28px; display: flex; align-items: center; gap: 8px; border: 1px solid #e2e8f0; margin-right: 10px; cursor: pointer;}
            .icon-pill-pc { width: 44px; height: 44px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #6366f1; text-decoration: none; }
            .btn-login-pc { background: #e0e7ff; color: #6366f1; font-weight: 700; font-size: 14px; border: none; border-radius: 30px; padding: 12px 28px; cursor: pointer; }
            .btn-register-pc { background: var(--gradient-btn); color: white; font-weight: 700; font-size: 14px; border: none; border-radius: 30px; padding: 12px 28px; cursor: pointer; box-shadow: 0 4px 12px rgba(99,102,241,0.3); }

            /* Layout PC */
            .main-layout { display: flex; flex-direction: row; flex: 1; overflow: hidden; background-image: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%); }
            .sidebar { width: 300px; background: transparent; overflow-y: auto; padding: 24px 20px; border-right: none;}
            .main-content { flex: 1; overflow-y: auto; padding: 32px 48px; }

            /* SIDEBAR PC ITEMS */
            .sidebar-section { background-color: var(--white); background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px); background-size: 16px 16px; border-radius: 16px; padding: 16px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
            .sidebar-section-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; margin-bottom: 16px; padding: 0 4px; }
            .sidebar-section-header h4 { font-size: 13px; color: #94a3b8; text-transform: uppercase; font-weight: 700; margin: 0;}
            .sidebar-section-header img.filter-arrow { width: 14px; height: 14px; transition: transform 0.3s ease; }
            .sidebar-section.collapsed .sidebar-section-header img.filter-arrow { transform: rotate(180deg); }
            .section-wrapper { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.3s ease-out; }
            .sidebar-section.collapsed .section-wrapper { grid-template-rows: 0fr; }
            .section-content { overflow: hidden; }
            .sidebar-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 12px; color: #475569; font-size: 15px; text-decoration: none; font-weight: 500; transition: all 0.2s; margin-bottom: 6px; }
            .sidebar-item:hover { background: #f1f5f9; color: var(--primary-color); }
            .sidebar-item.active { background: #e0e7ff; color: var(--primary-color); }
            .sb-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
            .sb-icon img { width: 24px !important; }
            .has-sub { display: flex; flex-direction: column;}
            .has-sub > .sidebar-item { margin-bottom: 0; }
            .chevron-icon { margin-left: auto; font-size: 12px; color: #94a3b8; transition: transform 0.3s ease; }
            .has-sub.open .chevron-icon { transform: rotate(180deg); }
            .sub-menu-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
            .has-sub.open .sub-menu-wrapper { grid-template-rows: 1fr; }
            .sub-menu-inner { overflow: hidden; padding-left: 50px; display: flex; flex-direction: column; gap: 12px; margin-top: 4px; margin-bottom: 16px;}
            .sub-item { color: #64748b; font-size: 14px; text-decoration: none; transition: color 0.2s; position: relative; }
            .sub-item:before { content: '-'; position: absolute; left: -14px; color: #cbd5e1; }
            .sub-item:hover { color: var(--primary-color); }

            /* --- LÕI ADD TIKTOK TRÊN PC --- */
            .add-tiktok-container { padding: 0; max-width: 1100px; margin: 0 auto;}
            
            .stat-mini-row { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px;}
            .stat-mini-card { padding: 24px 32px; border-radius: 24px; }
            .stat-mini-icon { width: 56px; height: 56px; font-size: 24px; border-radius: 16px;}
            .stat-mini-info h3 { font-size: 28px; margin-bottom: 4px;}
            .stat-mini-info p { font-size: 14px;}

            .box-card { padding: 32px; border-radius: 24px; margin-bottom: 32px; }
            .add-tabs { margin-bottom: 32px; border-radius: 20px;}
            .add-tab { font-size: 15px; padding: 16px; }

            .instruction-box h5 { font-size: 14px; margin-bottom: 16px;}
            .instruction-list li { font-size: 15px; margin-bottom: 12px;}

            .filter-row { flex-direction: row; align-items: center; margin-bottom: 32px;}
            .search-acc { max-width: 350px; }
            .total-filtered { margin-left: auto; }
            
            .table-responsive { margin: 0; padding: 0;}
        }

        /* --- Custom Modals --- */
        .custom-alert-overlay, .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
        .custom-alert-overlay.active, .modal-overlay.active { opacity: 1; visibility: visible; }
        .custom-alert-box, .login-box { background: var(--white); width: 85%; max-width: 320px; padding: 24px; border-radius: 24px; text-align: center; transform: scale(0.9) translateY(20px); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
        .custom-alert-overlay.active .custom-alert-box, .modal-overlay.active .login-box { transform: scale(1) translateY(0); }
        .custom-alert-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
        .custom-alert-box h4, .login-box h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; color: var(--text-main); }
        .custom-alert-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
        .custom-alert-btn, .btn-submit { background: var(--gradient-btn); color: white; border: none; width: 100%; padding: 12px; border-radius: 12px; font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); outline: none; display: flex; align-items: center; justify-content: center; gap: 8px;}
        .input-group { margin-bottom: 20px; text-align: left; margin-top: 16px;}
        .input-group label { display: block; font-size: 13px; margin-bottom: 8px; color: var(--text-muted); font-weight: 500;}
        .input-group input { width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 12px; font-size: 14px; outline: none; transition: all 0.3s; }
        .input-group input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
        .loader { display: none; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s infinite; margin-left: 10px; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .close-modal { position: absolute; top: 12px; right: 16px; background: #f1f5f9; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 18px; color: #64748b; cursor: pointer; }

/* Nạp xu workspace */
.recharge-main{min-width:0}.recharge-shell{width:100%;max-width:1120px;margin:auto}.recharge-card,.recharge-history{background:rgba(255,255,255,.92);border:1px solid #fff;border-radius:22px;box-shadow:0 14px 38px rgba(75,62,170,.08)}.recharge-card{display:grid;grid-template-columns:1.05fr .75fr;overflow:hidden}.recharge-form{padding:30px 34px}.section-kicker,.field-label{color:#73759a;font-size:12px;font-weight:800;letter-spacing:.04em}.recharge-form h1{margin:7px 0 5px;color:#29245e;font-size:30px}.recharge-intro{margin:0 0 25px;color:#777a97;font-size:14px}.field-label{display:block;margin:17px 0 10px}.recharge-select,.coin-input{width:100%;height:45px;border:1px solid #e1defe;border-radius:12px;padding:0 14px;background:#fff;color:#48486d;font-weight:600;outline:none}.recharge-select:focus,.coin-input:focus-within{border-color:#8574ff;box-shadow:0 0 0 3px #edeaff}.form-divider{border-top:1px dashed #e4e1fb;margin:21px 0}.plan-grid,.server-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.plan-card,.server-card{min-height:62px;border:1px solid #e8e5fb;border-radius:13px;background:#fff;color:#606280;text-align:left;padding:11px 13px;cursor:pointer;transition:.2s}.plan-card strong,.plan-card span,.plan-card small{display:block}.plan-card strong{color:#4c438d}.plan-card span{color:#7668df;font-size:12px;font-weight:800;margin-top:3px}.plan-card small{color:#a1a2bd;font-size:11px;margin-top:3px}.plan-card.active{color:#fff;border-color:#7461f6;background:linear-gradient(135deg,#8c63f5,#574bf1);box-shadow:0 9px 18px #796cf14d}.plan-card.active strong,.plan-card.active span,.plan-card.active small{color:#fff}.server-card{font-weight:700;position:relative}.server-card i{display:inline-block;width:8px;height:8px;border-radius:50%;background:#74bf4b;margin-right:8px}.server-card b{float:right;color:#7663f3}.server-card.active{border-color:#8a7aff;background:#f4f1ff;color:#5145c1}.coin-input{display:flex;align-items:center;gap:10px}.coin-input span{color:#9d91f9}.coin-input input{flex:1;border:0;outline:0;font-size:16px;font-weight:800;color:#34335d;min-width:0}.coin-input b{background:#7662f5;color:#fff;border-radius:8px;padding:6px 10px;font-size:11px}.form-hint{margin:8px 0 12px;color:#8789a4;font-size:12px}.quick-coins{display:flex;flex-wrap:wrap;gap:7px}.quick-coins button{border:1px solid #e2defe;border-radius:15px;background:#f7f5ff;color:#6f60dc;padding:6px 10px;font-size:11px;font-weight:800;cursor:pointer}.quick-coins button:hover{background:#ebe7ff;transform:translateY(-1px)}.notice-box{border-top:1px dashed #e4e1fb;margin-top:22px;padding-top:16px;color:#777994;font-size:12px;line-height:1.55}.notice-box strong{color:#73759a;font-size:12px}.notice-box p{margin:8px 0 0}.recharge-summary{padding:30px;background:linear-gradient(180deg,#fbfaff,#f1efff);border-left:1px solid #ece9ff}.coin-hero{min-height:165px;border-radius:17px;padding:22px;color:#fff;background:radial-gradient(circle at 85% 0,#6a4cbd,transparent 28%),linear-gradient(135deg,#15132c,#24172b);box-shadow:0 12px 25px #4b336e42}.coin-orbit{float:right;color:#ffd129;font-size:28px}.coin-hero p{font-weight:800;font-size:17px;margin:0 0 27px}.coin-hero strong{display:block;font-size:35px}.coin-hero em{color:#9d82ff;font-size:14px;font-style:normal}.coin-hero span{color:#b6b0ce;font-size:12px}.summary-lines{margin:20px 0;border-radius:13px;background:#fff;padding:5px 14px}.summary-lines div{display:flex;justify-content:space-between;gap:12px;padding:11px 0;border-bottom:1px dashed #eceafa;color:#8b8ca4;font-size:12px}.summary-lines div:last-child{border-bottom:0}.summary-lines b{color:#35355b}.total-box,.saving-box,.auto-box{border-radius:13px;padding:16px}.total-box{display:flex;justify-content:space-between;align-items:center;background:#f0edff;color:#565574;font-weight:800}.total-box strong{color:#7562ee;font-size:23px}.recharge-cta{width:100%;border:0;border-radius:13px;padding:14px;margin:14px 0 9px;background:linear-gradient(135deg,#9678ff,#6a55ee);color:#fff;font-size:15px;font-weight:800;cursor:pointer;box-shadow:0 9px 18px #7b67e64d;transition:.2s}.recharge-cta:hover{transform:translateY(-2px);box-shadow:0 12px 24px #7b67e666}.saving-box{background:#eff8ef;border:1px solid #d6ecd4;color:#5e9b62;font-size:12px}.saving-box b{float:right}.auto-box{margin-top:12px;background:#f0eeff;color:#7774a4;font-size:11px;line-height:1.4}.recharge-history{margin-top:24px;padding:23px}.history-heading{display:flex;align-items:center;justify-content:space-between;gap:15px}.history-heading h2{color:#7561e9;font-size:17px;margin:0}.history-heading input{width:245px;border:1px solid #e5e1fa;border-radius:18px;padding:9px 14px;outline:0}.history-table-wrap{margin-top:17px;border:1px solid #e8e5f7;border-radius:12px;overflow:hidden}.history-table-wrap table{width:100%;border-collapse:collapse;font-size:12px}.history-table-wrap th{background:#f8f6ff;color:#777695;padding:12px 9px;text-align:left}.history-table-wrap td{padding:12px 9px;border-top:1px solid #f0eefb;color:#555777}.status-pending{color:#df9a28}.history-empty{display:flex;align-items:center;justify-content:center;gap:10px;flex-direction:column;padding:44px;color:#9a99b2}.history-empty strong{font-size:12px}
.plan-disabled { opacity:.52; cursor:not-allowed; filter:grayscale(.2); background:#f5f5f8; }.plan-disabled:hover { transform:none; }.saving-box small { display:block; margin-top:5px; color:#76a779; font-size:11px; }
@media(max-width:800px){.recharge-main{padding:12px 10px 96px}.recharge-card{grid-template-columns:1fr}.recharge-form{padding:22px 17px}.recharge-summary{border-left:0;border-top:1px solid #ece9ff;padding:20px 17px}.recharge-form h1{font-size:26px}.recharge-history{padding:16px 10px}.history-heading{align-items:stretch;flex-direction:column}.history-heading input{width:100%}.history-table-wrap{overflow-x:auto}.history-table-wrap table{min-width:680px}}
    
