        :root {
            --bg-dark: #0a0d12;
            --bg-card: #12161d;
            --bg-input: #171c25;
            --border: #232a35;
            --accent: #6366f1;
            --accent-hover: #4f46e5;
            --data: #22d3ee;
            --admin-gold: #f59e0b;
            --text-main: #e5e9f0;
            --text-muted: #7c8797;
            --success: #10b981;
            --font-display: 'Space Grotesk', -apple-system, sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --font-mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body {
            height: 100%;
            width: 100%;
            font-family: var(--font-body);
            background-color: var(--bg-dark);
            background-image: radial-gradient(rgba(99, 102, 241, 0.07) 1px, transparent 1px);
            background-size: 26px 26px;
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        h1, h2, h3, h4, .logo, .nav-btn, .btn {
            font-family: var(--font-display);
        }

        /* Header */
        header {
            display: flex;
            flex-direction: column;
            border-bottom: 2px solid var(--data);
            background: var(--bg-dark);
            z-index: 1000;
        }

        .brand-bar {
            height: 92px;
            padding: 0 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-bar {
            height: 52px;
            padding: 0 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 20px;
            font-weight: 800;
        }
        .logo img {
            height: 168px;
            width: auto;
            display: block;
        }
        .logo .logo-text {
            font-size: 30px;
            background: linear-gradient(135deg, #a5b4fc, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .nav-btn {
            background: transparent;
            border: none;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .nav-btn:hover, .nav-btn.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .status-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-input);
            border: 1px solid var(--success);
            color: var(--success);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            font-family: var(--font-mono);
        }

        .pulse {
            width: 8px;
            height: 8px;
            background-color: var(--success);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--success);
            animation: pulse-anim 2s infinite;
        }

        @keyframes pulse-anim {
            0% { transform: scale(0.95); opacity: 0.9; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.9; }
        }

        /* Balance Badge */
        .balance-badge {
            display: none;
            align-items: center;
            gap: 10px;
            background: var(--bg-input);
            border: 1px solid var(--data);
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-main);
        }
        .balance-badge strong { font-family: var(--font-mono); color: var(--data); }

        /* Main Content Layout */
        .main-wrapper {
            height: calc(100vh - 60px);
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .page-section {
            display: none;
            height: 100%;
            width: 100%;
        }

        .page-section.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow-y: auto;
            padding: 40px 20px;
        }

        /* Dashboard Section */
        #dashboard-section {
            flex-direction: column;
            align-items: center;
        }

        .dash-container {
            max-width: 1000px;
            width: 100%;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 24px;
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 24px;
            clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
        }

        .card h3 {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .stat-number {
            font-size: 38px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--data);
        }

        /* Buttons & Forms */
        .btn {
            background: var(--accent);
            color: #ffffff !important;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover { background: var(--accent-hover); color: #ffffff !important; }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-main) !important;
        }

        .btn-outline:hover { background: rgba(255, 255, 255, 0.08); }

        .form-group { margin-bottom: 16px; }
        .form-group label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
        .form-input {
            width: 100%;
            background: var(--bg-input);
            border: 1px solid var(--border);
            padding: 12px 14px;
            border-radius: 4px;
            color: var(--text-main);
            font-size: 14px;
            outline: none;
        }
        .form-input:focus { border-color: var(--data); }

        /* Leaflet WebMap Split View */
        #map-section.active {
            display: flex !important;
            flex-direction: row;
            height: 100%;
            width: 100%;
            padding: 0 !important;
            overflow: hidden !important;
        }

        #map-sidebar {
            width: 300px;
            height: 100%;
            background: var(--bg-dark);
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            z-index: 500;
        }

        .sidebar-header {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .sidebar-list {
            flex: 1;
            overflow-y: auto;
            padding: 12px;
        }

        .sidebar-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 14px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .sidebar-item:hover {
            border-color: var(--accent);
            background: rgba(99, 102, 241, 0.12);
        }

        .sidebar-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; color: #fff; }
        .sidebar-coords { font-size: 12px; color: var(--data); font-family: var(--font-mono); }

        #leaflet-map {
            flex: 1;
            height: 100%;
            width: 100%;
            background: #1e465f !important;
        }

        /* Leaflet Popup Styling */
        .leaflet-popup-content-wrapper {
            background: #121620 !important;
            color: #fff !important;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px !important;
            padding: 6px;
        }

        .leaflet-popup-tip { background: #121620 !important; }

        .popup-card {
            padding: 8px 4px;
        }

        .popup-card h4 { font-size: 16px; margin-bottom: 6px; color: #fff; }
        .popup-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
        .popup-card .popup-btn {
            background: #6366f1;
            color: #ffffff !important;
            font-weight: 700;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            text-align: center;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .popup-card .popup-btn:hover {
            background: #4f46e5;
            color: #ffffff !important;
        }

        .popup-card .btn-copy-hop {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .popup-card .btn-copy-hop:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        /* Admin Badge */
        .admin-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-input);
            border: 1px solid var(--admin-gold);
            color: var(--admin-gold);
            font-size: 12px;
            font-weight: 700;
            font-family: var(--font-mono);
            padding: 4px 10px;
            border-radius: 4px;
            margin-top: 8px;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(4, 5, 8, 0.88);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .modal-overlay.active { display: flex; }

        .modal {
            background: var(--bg-card);
            border: 1px solid var(--data);
            border-radius: 4px;
            width: 100%;
            max-width: 480px;
            padding: 28px;
        }

        /* Currency Shop Grid */
        .currency-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 20px 0;
        }

        .tier-card {
            background: var(--bg-input);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 16px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tier-card:hover {
            border-color: var(--accent);
            background: rgba(99, 102, 241, 0.15);
        }

        .tier-amount { font-size: 20px; font-weight: 700; font-family: var(--font-mono); color: var(--data); margin-bottom: 4px; }
        .tier-price { font-size: 12px; color: var(--text-muted); }

        /* Transactions Table */
        .tx-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 16px;
            font-size: 13px;
        }

        .tx-table th, .tx-table td {
            padding: 10px 12px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .tx-table th { color: var(--text-muted); text-transform: uppercase; font-size: 11px; letter-spacing: 0.5px; }

        /* Password field with visibility toggle */
        .password-wrap { position: relative; }
        .password-wrap .form-input { padding-right: 44px; }
        .toggle-pw {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 12px;
            padding: 4px 6px;
        }
        .toggle-pw:hover { color: #fff; }

        /* Copy-to-clipboard icon button next to the login URI */
        .input-with-btn { display: flex; gap: 8px; margin-top: 8px; }
        .input-with-btn .form-input { margin-top: 0; }
        .btn-icon {
            background: var(--bg-input);
            border: 1px solid var(--border);
            color: var(--text-main);
            border-radius: 8px;
            padding: 0 14px;
            cursor: pointer;
            font-size: 13px;
            white-space: nowrap;
            transition: all 0.2s ease;
        }
        .btn-icon:hover { border-color: var(--accent); color: #fff; }

        /* Toast notifications (replaces alert() popups) */
        #toast-stack {
            position: fixed;
            top: 150px;
            right: 20px;
            z-index: 3000;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }
        .toast {
            min-width: 260px;
            max-width: 360px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-left: 3px solid var(--data);
            border-radius: 4px;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-main);
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.25s ease;
        }
        .toast.show { opacity: 1; transform: translateX(0); }
        .toast.success { border-left-color: var(--success); }
        .toast.error { border-left-color: #ef4444; }

        /* Hamburger menu (mobile) */
        .hamburger {
            display: none;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 8px;
            width: 38px;
            height: 38px;
            cursor: pointer;
            color: var(--text-main);
            font-size: 18px;
        }

        /* Responsive breakpoints */
        @media (max-width: 820px) {
            .brand-bar { padding: 0 16px; height: 78px; }
            .nav-bar { display: none; }
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 79px;
                right: 0;
                left: 0;
                background: var(--bg-dark);
                border-bottom: 2px solid var(--data);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 10px 16px 16px;
                transform: translateY(-8px);
                opacity: 0;
                pointer-events: none;
                transition: all 0.2s ease;
            }
            .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
            .nav-links .nav-btn, .nav-links .btn, .nav-links .balance-badge {
                width: 100%;
                justify-content: center;
                margin-top: 8px;
            }
            .logo img { height: 48px; }
            .logo .logo-text { font-size: 19px; }

            #map-section.active { flex-direction: column; }
            #map-sidebar {
                width: 100%;
                height: 160px;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
            #toast-stack { left: 12px; right: 12px; top: 90px; }
            .toast { min-width: 0; max-width: none; }
            .hero-banner { padding: 28px 20px; }
            .hero-banner h1 { font-size: 22px; }
        }

        /* Dashboard hero banner */
        .hero-banner {
            width: 100%;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-top: 2px solid var(--data);
            border-radius: 4px;
            padding: 40px 32px;
            margin-bottom: 24px;
            text-align: center;
        }
        .hero-banner h1 {
            font-size: 30px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        .hero-banner p {
            color: var(--text-muted);
            font-size: 15px;
            max-width: 560px;
            margin: 0 auto 22px;
            line-height: 1.6;
        }
        .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

        /* Icon badge used on stat cards & feature cards */
        .icon-badge {
            width: 38px;
            height: 38px;
            border: 1px solid var(--accent);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            margin-bottom: 12px;
            background: var(--bg-input);
            color: var(--accent);
        }
        .card.stat-card { display: flex; flex-direction: column; }

        /* Feature highlight row */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 20px;
            clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
        }
        .feature-card h4 { font-size: 15px; color: #fff; margin-bottom: 6px; }
        .feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
        .section-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: var(--text-muted);
            margin: 28px 0 4px;
        }

        /* Partner grid cards */
        .partner-card {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .partner-card .partner-info h4 { font-size: 16px; color: #fff; margin-bottom: 6px; }
        .partner-card .partner-info p { font-size: 13px; color: var(--text-muted); word-break: break-all; }

        /* LSL Wiki Styles */
        .wiki-container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .wiki-header {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-top: 2px solid var(--data);
            border-radius: 4px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .wiki-stats-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }
        .wiki-stat-chip {
            background: var(--bg-input);
            border: 1px solid var(--border);
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            font-family: var(--font-mono);
            color: var(--data);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .wiki-search-box {
            position: relative;
            width: 100%;
        }
        .wiki-search-input {
            width: 100%;
            background: var(--bg-input);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 14px 18px 14px 44px;
            color: var(--text-main);
            font-family: var(--font-mono);
            font-size: 15px;
            outline: none;
            transition: all 0.2s ease;
        }
        .wiki-search-input:focus {
            border-color: var(--data);
        }
        .wiki-search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 16px;
        }
        .wiki-filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .wiki-pill {
            background: var(--bg-input);
            border: 1px solid var(--border);
            color: var(--text-muted);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            font-family: var(--font-mono);
            cursor: pointer;
            transition: all 0.15s ease;
        }
        .wiki-pill:hover {
            color: var(--text-main);
            border-color: var(--data);
        }
        .wiki-pill.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            font-weight: 700;
        }
        .wiki-card-grid {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .wiki-item-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: border-color 0.2s ease;
            clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
        }
        .wiki-item-card:hover {
            border-color: var(--data);
        }
        .wiki-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
        }
        .wiki-title-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .wiki-type-badge {
            font-size: 11px;
            font-weight: 700;
            font-family: var(--font-mono);
            text-transform: uppercase;
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
            background: var(--bg-input);
        }
        .badge-func { color: var(--accent); border: 1px solid var(--accent); }
        .badge-event { color: var(--admin-gold); border: 1px solid var(--admin-gold); }
        .badge-const { color: var(--success); border: 1px solid var(--success); }
        .wiki-item-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            font-family: var(--font-mono);
        }
        .wiki-item-desc {
            font-size: 14px;
            color: #d1d5db;
            line-height: 1.5;
        }
        .wiki-code-block {
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-left: 2px solid var(--data);
            border-radius: 4px;
            padding: 10px 14px;
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--data);
            overflow-x: auto;
            white-space: pre-wrap;
            word-break: break-all;
        }
        .wiki-params-list {
            margin-top: 4px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: var(--bg-input);
            border-radius: 4px;
            padding: 10px 14px;
        }
        .wiki-param-item {
            font-size: 13px;
            display: flex;
            gap: 8px;
            align-items: baseline;
        }
        .wiki-param-type {
            color: var(--admin-gold);
            font-family: var(--font-mono);
            font-weight: 600;
        }
        .wiki-param-name {
            color: var(--data);
            font-family: var(--font-mono);
        }
        .wiki-param-tip {
            color: var(--text-muted);
        }
        .wiki-footer-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 10px;
        }
        .wiki-meta-tag {
            background: var(--bg-input);
            border: 1px solid var(--border);
            font-family: var(--font-mono);
            padding: 2px 8px;
            border-radius: 4px;
        }
        .wiki-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            margin-bottom: 40px;
        }

        /* Admin Viewer Login Analytics */
        .admin-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px;
            margin-bottom: 20px;
        }

        .admin-stat-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
        }

        .admin-stat-box h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bar-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .bar-label {
            flex: 0 0 38%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-family: var(--font-mono);
            color: var(--text-main);
            font-size: 11.5px;
        }

        .bar-track {
            flex: 1;
            background: var(--bg-input);
            border-radius: 3px;
            height: 8px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .bar-fill {
            background: linear-gradient(90deg, #6366f1, #22d3ee);
            height: 100%;
            border-radius: 3px;
            transition: width 0.4s ease-out;
        }

        .bar-pct {
            flex: 0 0 78px;
            text-align: right;
            color: var(--text-muted);
            font-family: var(--font-mono);
            font-size: 11px;
            white-space: nowrap;
        }

        .avg-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            padding: 7px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .avg-row:last-child {
            border-bottom: none;
        }

        .avg-row strong {
            font-family: var(--font-mono);
            color: var(--data);
            font-size: 14px;
        }

        .empty-note {
            color: var(--text-muted);
            font-size: 12px;
            margin-top: auto;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .admin-table-wrap {
            overflow-x: auto;
            max-height: 600px;
            overflow-y: auto;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: var(--bg-input);
        }

        .admin-stats-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
            font-family: var(--font-mono);
        }

        .admin-stats-table th {
            text-align: left;
            padding: 10px 12px;
            border-bottom: 1px solid var(--border);
            color: var(--text-muted);
            font-weight: 700;
            position: sticky;
            top: 0;
            background: #0d1117;
            z-index: 10;
            white-space: nowrap;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        .admin-stats-table td {
            padding: 8px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            white-space: nowrap;
            color: var(--text-main);
        }

        .admin-hash-pill {
            font-family: var(--font-mono);
            font-size: 11px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 2px 6px;
            border-radius: 3px;
            cursor: pointer;
            display: inline-block;
            transition: all 0.15s ease;
        }

        .admin-hash-pill:hover {
            border-color: var(--accent);
            color: #fff;
            background: rgba(99, 102, 241, 0.2);
        }

        .admin-tab-bar {
            display: flex;
            gap: 10px;
        }

        .admin-tab-btn {
            font-size: 13px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .flag-checkbox-card {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 12px 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
        }

        .flag-checkbox-card:hover {
            border-color: rgba(99, 102, 241, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }

        .flag-checkbox-card.checked {
            border-color: var(--accent);
            background: rgba(99, 102, 241, 0.12);
        }

        .flag-checkbox-card input[type="checkbox"] {
            margin-top: 3px;
            cursor: pointer;
            accent-color: var(--accent);
            width: 16px;
            height: 16px;
        }

        .flag-checkbox-card .flag-title {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
        }

        .flag-checkbox-card .flag-desc {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .admin-badge-verified {
            background: rgba(34, 197, 94, 0.15);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.3);
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            display: inline-block;
            margin: 2px;
        }

        .admin-badge-payment {
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            border: 1px solid rgba(59, 130, 246, 0.3);
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            display: inline-block;
            margin: 2px;
        }

        .admin-badge-god {
            background: rgba(245, 158, 11, 0.15);
            color: var(--admin-gold);
            border: 1px solid rgba(245, 158, 11, 0.35);
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 800;
            display: inline-block;
            margin: 2px;
        }

        .admin-badge-root {
            background: rgba(236, 72, 153, 0.15);
            color: #f472b6;
            border: 1px solid rgba(236, 72, 153, 0.35);
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 800;
            display: inline-block;
            margin: 2px;
        }

        .admin-badge-citizen {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            display: inline-block;
            margin: 2px;
        }

