* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-main: #f4fcf7;
            --bg-panel: rgba(255, 255, 255, 0.75);
            --border-glow: rgba(16, 185, 129, 0.15);
            --green-neon: #10b981;
            --dark-green: #047857;
            --pure-black: #ffffff;
            --shadow-3d: 0 10px 30px rgba(0, 50, 20, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.3);
        }

        body {
            background: linear-gradient(135deg, #f4fcf7 0%, #e8f5ed 50%, #dcf0e4 100%);
            min-height: 100vh;
            font-family: 'Inter', sans-serif;
            padding: 20px;
            color: #1e293b;
        }

        .main-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #e6f5ec;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 10px;
        }

        /* Center Modal */
        .center-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 50, 20, 0.4);
            backdrop-filter: blur(12px);
            z-index: 20000;
            overflow-y: auto;
            padding: 20px 10px;
        }

        .center-modal.show {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .modal-container {
            background: linear-gradient(135deg, #ffffff, #f0fdf4);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 24px;
            padding: 30px;
            max-width: 420px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 50, 20, 0.08);
            animation: modalFadeIn 0.3s ease;
            margin: 40px auto;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-icon {
            font-size: 48px;
            color: #d97706;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0f172a;
        }

        .modal-message {
            font-size: 14px;
            color: #475569;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .modal-btn {
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }

        .modal-btn-cancel {
            background: rgba(0, 0, 0, 0.05);
            color: #475569;
        }

        .modal-btn-cancel:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .modal-btn-confirm {
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff;
        }

        /* Progress Popup */
        .progress-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 50, 20, 0.45);
            backdrop-filter: blur(12px);
            z-index: 19999;
            overflow-y: auto;
            padding: 20px 10px;
        }

        .progress-modal.show {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .progress-container {
            background: linear-gradient(135deg, #ffffff, #f0fdf4);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 24px;
            padding: 30px 40px;
            max-width: 450px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 50, 20, 0.08);
            animation: fadeInUp 0.3s ease;
            margin: 40px auto;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(16, 185, 129, 0.15);
        }

        .progress-title {
            font-size: 18px;
            font-weight: 700;
            color: #047857;
        }

        .progress-timer {
            background: rgba(0, 0, 0, 0.04);
            padding: 5px 15px;
            border-radius: 30px;
            font-family: monospace;
            font-size: 20px;
            font-weight: bold;
            color: #d97706;
        }

        .progress-timer.warning {
            color: #ef4444;
            animation: pulse 1s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin: 25px 0;
        }

        .step-item {
            flex: 1;
            text-align: center;
        }

        .step-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
        }

        .step-circle.pending {
            background: rgba(0, 0, 0, 0.04);
            color: #64748b;
        }

        .step-circle.active {
            background: #f59e0b;
            color: #fff;
            animation: pulse 1s infinite;
        }

        .step-circle.completed {
            background: #10b981;
            color: #fff;
        }

        .step-label {
            font-size: 11px;
            color: #64748b;
            text-transform: uppercase;
            font-weight: 600;
        }

        .step-label.active {
            color: #f59e0b;
        }

        .step-label.completed {
            color: #047857;
        }

        .progress-message {
            font-size: 13px;
            color: #475569;
            margin: 15px 0;
        }

        .progress-cancel-btn {
            background: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #dc2626;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 10px;
        }

        .progress-cancel-btn:hover {
            background: #ef4444;
            color: #fff;
            border-color: transparent;
        }

        .toast-notification-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 999999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 360px;
            pointer-events: none;
        }

        .toast-alert {
            pointer-events: auto;
            background: #ffffff;
            border-left: 4px solid;
            border-radius: 12px;
            padding: 14px 18px;
            color: #0f172a;
            font-size: 13.5px;
            font-weight: 500;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            animation: slideIn 0.3s ease forwards;
        }

        .toast-alert i {
            margin-top: 3px;
        }

        .toast-alert span {
            flex: 1;
            word-break: break-word;
            overflow-wrap: anywhere;
        }

        @keyframes slideIn {
            from {
                transform: translateX(120%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .toast-alert.alert-success {
            border-left-color: #10b981;
        }

        .toast-alert.alert-warning {
            border-left-color: #f59e0b;
        }

        .toast-alert.alert-danger,
        .toast-alert.alert-error {
            border-left-color: #ef4444;
        }

        .toast-alert.alert-info {
            border-left-color: #3b82f6;
        }

        .glass-panel {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px) saturate(180%);
            border: 1px solid rgba(16, 185, 129, 0.15);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: var(--shadow-3d);
            margin-bottom: 16px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #10b981, #059669);
            border: none;
            border-radius: 10px;
            padding: 14px 28px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
            white-space: nowrap;
        }

        .btn-primary:hover:not(:disabled) {
            transform: translateY(-1px);
            background: linear-gradient(135deg, #34d399, #10b981);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
        }

        .btn-primary:active:not(:disabled) {
            transform: translateY(1px);
        }

        .btn-primary:disabled {
            background: #e2e8f0 !important;
            color: #94a3b8 !important;
            cursor: not-allowed;
            box-shadow: none;
            pointer-events: none;
            transform: none !important;
            opacity: 0.6;
        }

        .btn-sm {
            padding: 8px 20px;
            font-size: 13px;
        }

        /* Green Revoke Button */
        .btn-revoke {
            background: linear-gradient(135deg, #10b981, #059669);
            border: none;
            padding: 6px 16px;
            border-radius: 8px;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 2px 5px rgba(16, 185, 129, 0.2);
        }

        .btn-revoke:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
        }

        .btn-revoke:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Batch Revoke Button */
        .batch-revoke-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            border: none;
            border-radius: 12px;
            padding: 10px 24px;
            color: #fff;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
        }

        .batch-revoke-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #34d399, #10b981);
            box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
        }

        .batch-revoke-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: #e2e8f0;
            color: #94a3b8;
            box-shadow: none;
        }

        .wallet-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .wallet-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(16, 185, 129, 0.08);
            border-radius: 30px;
            font-size: 13px;
            color: #047857;
        }

        .wallet-address {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.15);
            border-radius: 30px;
            padding: 6px 6px 6px 18px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .network-badge {
            background: rgba(16, 185, 129, 0.08);
            border-radius: 30px;
            padding: 8px 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #047857;
        }

        .chain-selector-container {
            position: relative;
            width: 100%;
        }

        .chain-selector-btn {
            background: #ffffff;
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 12px;
            padding: 14px 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            color: #0f172a;
            transition: all 0.2s ease;
        }

        .chain-selector-btn:hover {
            border-color: #10b981;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
        }

        .chain-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #ffffff;
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 14px;
            z-index: 1000;
            max-height: 350px;
            overflow-y: auto;
            display: none;
            margin-top: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .chain-dropdown.show {
            display: block;
        }

        .chain-option {
            padding: 12px 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(16, 185, 129, 0.08);
            color: #0f172a;
        }

        .chain-option:hover {
            background: rgba(16, 185, 129, 0.08);
        }

        .chain-option input {
            width: 18px;
            height: 18px;
            accent-color: #10b981;
        }

        .chain-option label {
            cursor: pointer;
            flex: 1;
            font-size: 14px;
        }

        .chain-option .chain-symbol {
            font-size: 11px;
            color: #047857;
            background: rgba(16, 185, 129, 0.1);
            padding: 2px 8px;
            border-radius: 20px;
        }

        .selected-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .chain-chip {
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 12px;
            color: #047857;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .chain-chip:hover {
            background: rgba(16, 185, 129, 0.15);
            border-color: rgba(16, 185, 129, 0.35);
        }

        .chain-chip i {
            cursor: pointer;
            font-size: 11px;
            color: #059669;
            transition: color 0.2s ease;
        }

        .chain-chip i:hover {
            color: #ef4444;
        }

        .scan-section {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: flex-start;
        }

        .scan-section-left {
            flex: 2;
            min-width: 280px;
        }

        .scan-section-right {
            flex: 0 0 auto;
            margin-top: 25px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-bottom: 16px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(16, 185, 129, 0.15);
            border-radius: 12px;
            padding: 12px 16px;
            text-align: center;
            box-shadow: 0 4px 15px -3px rgba(0, 50, 20, 0.02);
            color: #475569;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 800;
            font-family: 'Orbitron', monospace;
            color: #0f172a;
        }

        .filter-panel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
            margin-bottom: 16px;
        }

        .input-field {
            background: #ffffff;
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 12px;
            padding: 12px 16px;
            width: 100%;
            color: #0f172a;
            font-size: 13px;
            transition: all 0.2s;
        }

        .input-field:focus {
            outline: none;
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
        }

        .label {
            font-size: 11px;
            font-weight: 600;
            color: #475569;
            margin-bottom: 6px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .batch-action-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 12px 20px;
            background: rgba(16, 185, 129, 0.08);
            border-radius: 14px;
            border: 1px solid rgba(16, 185, 129, 0.3);
            flex-wrap: wrap;
            gap: 15px;
            color: #1e293b;
        }

        .selected-count span {
            color: #047857;
            font-weight: 700;
            font-size: 16px;
        }

        /* Table Styles */
        .table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid rgba(16, 185, 129, 0.15);
            background: #ffffff;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
            min-width: 900px;
        }

        .data-table th {
            background: rgba(16, 185, 129, 0.08);
            padding: 10px 12px;
            color: #065f46;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #10b981;
            text-align: left;
        }

        .data-table td {
            padding: 8px 12px;
            border-bottom: 1px solid rgba(16, 185, 129, 0.08);
            vertical-align: middle;
            color: #1e293b;
        }

        .data-table th:first-child,
        .data-table td:first-child {
            text-align: center;
            width: 40px;
        }

        .data-table th:nth-child(2),
        .data-table td:nth-child(2) {
            text-align: center;
            width: 50px;
        }

        .data-table th:last-child,
        .data-table td:last-child {
            text-align: center;
            width: 110px;
        }

        /* Badge Styles */
        .badge-danger {
            background: rgba(239, 68, 68, 0.1);
            color: #dc2626;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            display: inline-block;
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .badge-safe {
            background: rgba(16, 185, 129, 0.1);
            color: #047857;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            display: inline-block;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .badge-neutral {
            background: rgba(0, 0, 0, 0.04);
            color: #334155;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            display: inline-block;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .network-tag {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.15);
            color: #047857;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .address-link {
            color: #059669;
            text-decoration: none;
            font-family: monospace;
            font-size: 12px;
            transition: color 0.2s;
        }

        .address-link:hover {
            color: #047857;
            text-decoration: underline;
        }

        .row-select {
            text-align: center;
        }

        .row-select input {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #10b981;
        }

        .progress-bar-container {
            background: rgba(16, 185, 129, 0.1);
            border-radius: 20px;
            height: 6px;
            overflow: hidden;
            margin: 15px 0;
        }

        .progress-bar-fill {
            background: linear-gradient(90deg, #10b981, #34d399);
            width: 0%;
            height: 100%;
            transition: width 0.3s;
        }

        .log-container {
            background: #04120b;
            border-radius: 12px;
            padding: 15px;
            height: 150px;
            overflow-y: auto;
            font-size: 12px;
            font-family: monospace;
            color: #e2e8f0;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .pagination {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid rgba(16, 185, 129, 0.15);
            flex-wrap: wrap;
            gap: 12px;
        }

        .pagination-info {
            font-size: 13px;
            color: #475569;
        }

        .pagination-info .highlight {
            color: #047857;
            font-weight: 600;
        }

        .pagination-controls {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .page-btn {
            background: #ffffff;
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 8px;
            padding: 6px 12px;
            color: #334155;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .page-btn:hover:not(:disabled):not(.active) {
            background: rgba(16, 185, 129, 0.05);
            border-color: #10b981;
            color: #047857;
        }

        .page-btn.active {
            background: linear-gradient(135deg, #10b981, #059669);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
        }

        .page-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            border-color: rgba(0, 0, 0, 0.05);
            color: #94a3b8;
            background: rgba(0, 0, 0, 0.02);
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #475569;
        }

        .results-card,
        .progress-card {
            display: none;
        }

        @media (max-width: 768px) {
            body {
                padding: 12px;
            }

            .glass-panel {
                padding: 16px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .filter-panel {
                grid-template-columns: 1fr;
            }

            .scan-section {
                flex-direction: column;
                gap: 15px;
            }

            .scan-section-right {
                margin-top: 0;
                width: 100%;
            }

            .scan-section-right .btn-primary {
                width: 100%;
                text-align: center;
            }

            .wallet-section {
                flex-direction: column;
                align-items: stretch;
            }

            .wallet-actions {
                justify-content: flex-start;
            }

            .progress-steps {
                gap: 8px;
            }

            .step-circle {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .batch-action-bar {
                flex-direction: column;
                text-align: center;
            }

            .batch-revoke-btn {
                width: 100%;
            }

            .data-table th,
            .data-table td {
                padding: 8px;
                font-size: 11px;
            }
        }

        /* Modern Premium Page Loader */
        .page-loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999999;
            font-family: 'Inter', sans-serif;
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .loader-card {
            background: rgba(30, 41, 59, 0.45);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            padding: 40px 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(16, 185, 129, 0.08);
            max-width: 400px;
            width: 90%;
            text-align: center;
        }

        .loader-visual-container {
            position: relative;
            width: 110px;
            height: 110px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader-ring-outer {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid transparent;
            border-top-color: #10b981;
            border-right-color: #059669;
            border-radius: 50%;
            animation: spinClockwise 1.8s cubic-bezier(0.5, 0.12, 0.3, 0.9) infinite;
            filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.5));
        }

        .loader-ring-inner {
            position: absolute;
            width: 78%;
            height: 78%;
            border: 3px solid transparent;
            border-bottom-color: #34d399;
            border-left-color: #059669;
            border-radius: 50%;
            animation: spinCounterClockwise 1.4s cubic-bezier(0.5, 0.12, 0.3, 0.9) infinite;
            filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.3));
        }

        .loader-core {
            position: absolute;
            width: 54%;
            height: 54%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0) 70%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: corePulse 2s ease-in-out infinite;
        }

        .loader-icon-center {
            font-size: 28px;
            color: #10b981;
            filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.6));
            animation: pulseIcon 2s ease-in-out infinite;
        }

        .loader-text {
            font-size: 18px;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 0.5px;
            margin-top: 8px;
            animation: pulseText 2s ease-in-out infinite;
        }

        .loader-subtext {
            font-size: 13px;
            font-weight: 500;
            color: #64748b;
            line-height: 1.5;
            max-width: 280px;
        }

        .loader-dots {
            display: flex;
            gap: 6px;
            margin-top: -4px;
        }

        .loader-dot {
            width: 8px;
            height: 8px;
            background-color: #10b981;
            border-radius: 50%;
            opacity: 0.3;
            animation: bounceDot 1.4s infinite ease-in-out both;
            filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.4));
        }

        .loader-dot:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loader-dot:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes spinClockwise {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes spinCounterClockwise {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(-360deg);
            }
        }

        @keyframes corePulse {

            0%,
            100% {
                transform: scale(0.9);
                opacity: 0.65;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        @keyframes pulseIcon {

            0%,
            100% {
                transform: scale(0.9);
            }

            50% {
                transform: scale(1.1);
            }
        }

        @keyframes pulseText {

            0%,
            100% {
                opacity: 0.85;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes bounceDot {

            0%,
            80%,
            100% {
                transform: scale(0);
                opacity: 0.3;
            }

            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Smooth spinner glow enhancement */
        .fa-spinner.fa-spin {
            animation: fa-spin 1.2s linear infinite !important;
            filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.4));
        }

        .rate-limit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        @media (max-width: 1024px) {
            .rate-limit-grid {
                grid-template-columns: 1fr;
            }
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }