        :root {
            --font-lato: 'Lato', sans-serif;
            --brand-color: #B9F040;
            --bg-black: #000000;
            --text-white: #ffffff;
            --bg: #f7f9fc;
            --surface: #ffffff;
            --border: #e3e8f0;
            --primary: #B9F040;
            --primary-dark: #a0d636;
            --danger: #e53e3e;
            --text: #1a202c;
            --muted: #718096;
            --success: #38a169;
            --code-bg: #2d3748;
        }

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

        body {
            font-family: var(--font-lato), "Segoe UI", sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
        }

        h1, h2, h3, h4 {
            font-weight: 600;
        }

        .login-overlay {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 23, 42, 0.85);
            z-index: 999;
        }

        .login-overlay.hidden {
            display: none;
        }

        .login-card {
            background: var(--surface);
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(56, 66, 106, 0.35);
            width: min(380px, 92vw);
        }

        .login-card h2 {
            margin-bottom: 12px;
        }

        .login-card p {
            margin-bottom: 16px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.5;
        }

        .login-card input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            margin-bottom: 12px;
            transition: border 0.2s;
        }

        .login-card input:focus {
            outline: none;
            border-color: var(--brand-color);
            box-shadow: 0 0 0 3px rgba(185, 240, 64, 0.25);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
            font-family: var(--font-lato);
        }

        .btn-primary {
            background: var(--brand-color);
            color: var(--bg-black);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        .btn-secondary {
            background: #edf2f7;
            color: var(--text);
        }

        .btn-secondary:hover {
            background: #e2e8f0;
        }

        .btn-ghost {
            background: transparent;
            color: var(--brand-color);
        }

        .btn-ghost:hover {
            background: rgba(185, 240, 64, 0.1);
        }

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

        .alert {
            border-radius: 8px;
            padding: 12px 14px;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .alert-error {
            background: #fff5f5;
            color: #c53030;
            border: 1px solid #fed7d7;
        }

        .alert-success {
            background: #f0fff4;
            color: #2f855a;
            border: 1px solid #c6f6d5;
        }

        header {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            padding: 20px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 5;
        }

        header h1 {
            font-size: 24px;
            font-family: var(--font-lato);
            margin: 0;
        }

        header .subtitle {
            font-size: 14px;
            color: var(--muted);
        }

        .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 12px;
            font-family: var(--font-lato);
        }

        .breadcrumbs a {
            color: var(--bg-black);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumbs a:hover {
            color: var(--brand-color);
            text-decoration: underline;
        }

        .breadcrumbs-separator {
            color: var(--muted);
            opacity: 0.5;
        }

        .founder-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
        }

        #founderEmail {
            font-size: 12px;
            color: var(--muted);
        }

        main {
            padding: 24px 32px 48px;
            display: grid;
            gap: 24px;
            grid-template-columns: 280px 1fr;
        }

        .panel {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 20px;
            box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.35);
        }

        .panel h2 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .panel h3 {
            font-size: 15px;
            margin: 16px 0 8px;
        }

        .filters {
            display: grid;
            gap: 12px;
        }

        .filters label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--muted);
            font-weight: 600;
        }

        .filters input,
        .filters select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
        }

        .domain-list {
            display: grid;
            gap: 8px;
            max-height: 260px;
            overflow-y: auto;
        }

        .domain-card {
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 12px;
            background: #f8fafc;
        }

        .domain-card strong {
            display: block;
            font-size: 14px;
            margin-bottom: 6px;
        }

        .domain-clients {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 8px;
            border-radius: 999px;
            font-size: 11px;
            background: rgba(185, 240, 64, 0.12);
            color: var(--bg-black);
            font-weight: 600;
        }

        .content-area {
            display: grid;
            gap: 24px;
        }

        .table-wrapper {
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            background: var(--surface);
            box-shadow: 0 20px 45px -24px rgba(15, 23, 42, 0.35);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background: #f1f4f9;
        }

        th, td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            text-align: left;
            font-size: 14px;
            vertical-align: top;
        }

        tbody tr:hover {
            background: #f9fbff;
        }

        .token-panel {
            border: 1px solid var(--border);
            border-radius: 14px;
            background: var(--surface);
            padding: 20px;
        }

        .token-panel pre {
            background: var(--code-bg);
            color: #f7fafc;
            padding: 16px;
            border-radius: 10px;
            overflow-x: auto;
            font-size: 13px;
            margin: 12px 0;
        }

        .muted {
            color: var(--muted);
        }

        .user-metadata {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(185, 240, 64, 0.15);
            color: var(--bg-black);
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
        }

        .membership-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .membership-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            border: 1px solid rgba(185, 240, 64, 0.4);
            padding: 4px 10px;
            font-size: 12px;
            background: rgba(185, 240, 64, 0.08);
        }

        .user-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .empty-state {
            text-align: center;
            padding: 32px;
            color: var(--muted);
        }

        @media (max-width: 1100px) {
            main {
                grid-template-columns: 1fr;
            }

            header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
