/* VOD server — dark, calm, focused. */
:root {
    --bg-0: #0b0d12;
    --bg-1: #11141b;
    --bg-2: #161a23;
    --line: #232838;
    --line-2: #2c3245;
    --text: #e8ecf4;
    --text-dim: #9aa3b8;
    --text-muted: #6b7488;
    --accent: #7c5cff;
    --accent-2: #4ad8ff;
    --accent-soft: rgba(124, 92, 255, 0.18);
    --ok: #4ade80;
    --warn: #f5b24a;
    --err: #ff6b7a;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg-0);
    color: var(--text);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(1100px 600px at 80% -10%, rgba(124, 92, 255, 0.10), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(74, 216, 255, 0.08), transparent 60%),
        var(--bg-0);
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}
.bg-orb--a { width: 620px; height: 620px; top: -200px; right: -180px; background: rgba(124, 92, 255, 0.40); }
.bg-orb--b { width: 540px; height: 540px; bottom: -220px; left: -180px; background: rgba(74, 216, 255, 0.22); }

.page {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 24px 32px;
    width: 100%;
}

/* Wide pages (admin dashboard, code details) hug the top instead of centering. */
.page:has(.card--wide) { align-items: flex-start; padding-top: 110px; }

/* Top bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(11, 13, 18, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.topbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 15px;
}
.topbar__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(124, 92, 255, 0.35);
    border-radius: 8px;
}
.topbar__name { display: inline-flex; align-items: baseline; gap: 2px; }
.topbar__dot { color: var(--accent-2); margin: 0 2px; }
.topbar__nav { display: flex; gap: 16px; align-items: center; }
.topbar__link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: color 0.15s, border-color 0.15s;
}
.topbar__link:hover { color: var(--text); border-color: var(--line-2); }

/* Footer */
.site-foot {
    position: relative;
    z-index: 1;
    padding: 22px 28px 26px;
    color: var(--text-muted);
    font-size: 12.5px;
    letter-spacing: 0.02em;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(11, 13, 18, 0.55);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.site-foot a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.15s;
    border-bottom: 1px dotted rgba(154, 163, 184, 0.4);
    padding-bottom: 1px;
}
.site-foot a:hover { color: var(--accent-2); border-bottom-color: var(--accent-2); }
.site-foot__sep { opacity: 0.4; }

/* Card */
.card {
    width: 100%;
    background: linear-gradient(180deg, rgba(24, 28, 40, 0.85), rgba(17, 20, 27, 0.85));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    position: relative;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(124, 92, 255, 0.45), transparent 40%, rgba(74, 216, 255, 0.25));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.55;
}
.card--narrow { max-width: 440px; }
.card--upload { max-width: 600px; }
.card--wide   { max-width: 1120px; }

.card__head { margin-bottom: 28px; }
.card__head--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}
.card__title {
    font-size: 26px;
    font-weight: 600;
    margin: 10px 0 6px;
    letter-spacing: -0.02em;
}
.card__sub {
    color: var(--text-dim);
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
}

.badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-2);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}
.badge--admin { color: #ffc97a; background: rgba(245, 178, 74, 0.14); }

/* Form */
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.field input,
.create input {
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}
.field input:focus,
.create input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 18px;
}

.btn {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--line-2);
    background: var(--bg-2);
    color: var(--text);
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    transition: transform 0.08s ease, background 0.18s ease,
                border-color 0.18s ease, color 0.18s ease,
                box-shadow 0.18s ease;
    position: relative;
    overflow: hidden;
    user-select: none;
    white-space: nowrap;
}
.btn:hover {
    background: #1f2434;
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}
.btn:active {
    transform: translateY(0);
    background: #181c28;
}
.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft), 0 0 0 1px var(--accent);
}
.btn:disabled,
.btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    background: var(--bg-2);
    box-shadow: none;
    color: var(--text-dim);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
    background: linear-gradient(180deg, #8a6dff, #6a4dff 65%, #5b3eff);
    border-color: transparent;
    color: #ffffff;
    box-shadow:
        0 8px 22px rgba(124, 92, 255, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.btn--primary:hover {
    filter: brightness(1.08);
    border-color: transparent;
    box-shadow:
        0 12px 28px rgba(124, 92, 255, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn--primary:active { filter: brightness(0.96); }
.btn--primary:disabled,
.btn--primary[disabled] {
    background: linear-gradient(180deg, #4a4360, #3a3450);
    color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
    opacity: 0.7;
}

.btn--ghost {
    background: transparent;
    border-color: var(--line-2);
    color: var(--text-dim);
}
.btn--ghost:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn--danger {
    color: var(--err);
    border-color: rgba(255, 107, 122, 0.35);
    background: rgba(255, 107, 122, 0.04);
}
.btn--danger:hover {
    background: rgba(255, 107, 122, 0.12);
    border-color: rgba(255, 107, 122, 0.55);
    color: #ffb1ba;
}

.btn--small {
    padding: 7px 12px;
    font-size: 12.5px;
    min-height: 32px;
    border-radius: 8px;
    gap: 6px;
}
.btn--small svg { width: 13px; height: 13px; }

/* Dropzone */
.dropzone {
    margin-top: 20px;
    border: 1.5px dashed var(--line-2);
    border-radius: var(--radius);
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, transform 0.18s;
    color: var(--text-dim);
    text-align: center;
    background: rgba(255, 255, 255, 0.015);
}
.dropzone:hover { border-color: var(--accent); background: rgba(124, 92, 255, 0.06); color: var(--text); }
.dropzone.is-drag { border-color: var(--accent); background: var(--accent-soft); color: var(--text); transform: scale(1.01); }
.dropzone__icon {
    color: var(--accent-2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 216, 255, 0.1);
    border: 1px solid rgba(74, 216, 255, 0.18);
}
.dropzone__text { display: flex; flex-direction: column; gap: 4px; }
.dropzone__text strong { color: var(--text); font-weight: 600; font-size: 15px; }
.dropzone__text span { font-size: 13px; }

/* Progress */
.progress {
    margin-top: 22px;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 18px;
}
.progress__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.progress__meta #p-name { color: var(--text); font-weight: 500; max-width: 70%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.progress__bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    overflow: hidden;
}
.progress__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: inherit;
    transition: width 0.18s ease;
}
.progress__details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Status */
.status {
    margin-top: 18px;
    font-size: 14px;
    color: var(--text-dim);
    min-height: 20px;
}
.status--ok  { color: var(--ok); }
.status--warn { color: var(--warn); }
.status--err { color: var(--err); }

/* Admin */
.create {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}
.create input { flex: 1; }

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.table th, .table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}
.table th {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}
.table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.table .muted { color: var(--text-dim); }
.row-actions { display: flex; gap: 6px; justify-content: flex-end; }

.code-pill {
    background: var(--bg-1);
    color: var(--accent-2);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid var(--line);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
}

.copy {
    background: transparent;
    border: 1px dashed var(--line-2);
    color: var(--text-dim);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
.copy:hover { color: var(--accent); border-color: var(--accent); }

.status-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid var(--line-2);
    color: var(--text-dim);
}
.status-tag--pending  { color: #b6a6ff; border-color: rgba(124, 92, 255, 0.35); background: rgba(124, 92, 255, 0.10); }
.status-tag--uploading { color: #f5b24a; border-color: rgba(245, 178, 74, 0.35); background: rgba(245, 178, 74, 0.10); }
.status-tag--ready    { color: var(--ok); border-color: rgba(74, 222, 128, 0.35); background: rgba(74, 222, 128, 0.10); }
.status-tag--revoked  { color: var(--err); border-color: rgba(255, 107, 122, 0.35); background: rgba(255, 107, 122, 0.10); }

@media (max-width: 600px) {
    .topbar { padding: 12px 16px; }
    .topbar__name { display: none; }
    .page { padding: 96px 14px 24px; }
    .card { padding: 24px; border-radius: 12px; }
    .actions { flex-direction: column-reverse; align-items: stretch; }
    .actions .btn { width: 100%; }
    .site-foot { padding: 18px 16px 22px; font-size: 12px; }
}


/* Dashboard stats row */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}
.stat {
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat__num {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}
.stat__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.muted-soft { color: var(--text-muted); font-size: 11px; }

/* Clickable rows */
.table--clickable tbody tr { cursor: pointer; }
.table--clickable tbody tr:hover { background: rgba(124, 92, 255, 0.06); }

/* In-row progress */
.row-progress { display: flex; flex-direction: column; gap: 4px; min-width: 180px; }
.row-progress__bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
}
.row-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.3s ease;
}
.row-progress__meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-dim);
}

/* Code details page */
.head-actions { display: flex; gap: 8px; }
.kv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.kv {
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.kv__k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.kv__v { color: var(--text); font-size: 14px; word-break: break-word; }

.section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 28px 0 10px;
}
.token-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.code-pill--token { font-size: 12px; padding: 6px 10px; word-break: break-all; max-width: 100%; }
.hint-block {
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--accent-2);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12.5px;
    line-height: 1.6;
    overflow-x: auto;
    margin: 8px 0 18px;
}

/* Toast banner (after creating a code) */
.toast {
    position: fixed;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    padding: 16px 20px;
    z-index: 50;
    box-shadow: var(--shadow);
    color: var(--text);
    font-size: 13px;
    max-width: 600px;
    animation: toast-in 0.18s ease-out;
}
.toast__head { color: var(--text-dim); margin-bottom: 10px; }
.toast__row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
@keyframes toast-in {
    from { opacity: 0; transform: translate(-50%, -8px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}


/* Copy cards on the details page */
.copy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin: 8px 0 16px;
}
.copy-card {
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.copy-card--bundle {
    border-color: rgba(124, 92, 255, 0.45);
    background: linear-gradient(180deg, rgba(124, 92, 255, 0.08), var(--bg-1));
}
.copy-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.copy-card__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
}
.copy-card__value {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--accent-2);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    word-break: break-all;
    white-space: pre-wrap;
    margin: 0;
}
.copy-card__value--mono { color: #cdd5e6; }
.copy-card__hint {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* Tile copy buttons in the table row */
.copy { margin-left: 6px; }

/* Toast extras */
.toast__link {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}


/* Refined dashboard table */
.cell-stack { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.cell-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.cell-actions .copy { margin: 0; }

.table th, .table td { padding: 14px 16px; vertical-align: middle; }
.table tbody tr { transition: background 0.15s; }
.table--clickable tbody tr:hover { background: rgba(124, 92, 255, 0.07); }

.row-actions { display: flex; gap: 6px; justify-content: flex-end; align-items: center; }

/* Make the code pill stand out */
.code-pill {
    background: linear-gradient(180deg, rgba(74, 216, 255, 0.10), rgba(74, 216, 255, 0.04));
    border: 1px solid rgba(74, 216, 255, 0.30);
    padding: 5px 10px;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* Copy chips look like soft pills */
.copy {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.08s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    min-height: 26px;
    -webkit-appearance: none;
    appearance: none;
    font-family: var(--font);
}
.copy:hover {
    color: var(--text);
    border-color: var(--accent);
    background: rgba(124, 92, 255, 0.10);
}
.copy:active { transform: translateY(1px); }
.copy:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Stats cards: a bit more polished */
.stat {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
}
.stat__num {
    font-size: 22px;
    background: linear-gradient(135deg, var(--text), var(--accent-2));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}

.create input {
    padding: 13px 16px;
    font-size: 14px;
}
.btn--primary {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Stretch admin card visually */
.card--wide {
    padding: 36px 36px 32px;
}
.card--wide .card__title { font-size: 22px; }


/* Tabs on the landing page */
.tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 5px;
    margin: 20px 0 18px;
    width: 100%;
}
.tab {
    flex: 1;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-dim);
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}
.tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}
.tab.is-active {
    background: linear-gradient(180deg, rgba(124, 92, 255, 0.22), rgba(124, 92, 255, 0.08));
    color: var(--text);
    border-color: rgba(124, 92, 255, 0.40);
    box-shadow: 0 4px 14px rgba(124, 92, 255, 0.20);
}
.tab__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: var(--accent-2);
}

.tab-panel { margin-top: 6px; }
.field__hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0.85;
}

/* Indeterminate progress shimmer (used when total bytes are unknown). */
.progress__fill--pulse {
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
    background-size: 200% 100%;
    animation: pulse-shift 1.4s linear infinite;
}
@keyframes pulse-shift {
    from { background-position: 0% 0%; }
    to   { background-position: 200% 0%; }
}


/* Source tags in admin table */
.src-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid var(--line-2);
    color: var(--text-dim);
}
.src-tag--remote {
    color: #b6a6ff;
    border-color: rgba(124, 92, 255, 0.35);
    background: rgba(124, 92, 255, 0.08);
}
