:root {
 --bg-base: #EAF0F3;
 --surface-0: #DCE7EB;
 --surface-1: #F9FBFC;
 --surface-2: #EEF4F6;
 --surface-3: #DEE8EC;
 --border: rgba(28, 58, 74, .11);
 --border-strong: rgba(28, 58, 74, .20);
 --border-highlight: rgba(255, 255, 255, .92);
 --text-1: #10232D;
 --text-2: #687C88;
 --text-3: #9AAAB3;
 --accent: #087F88;
 --accent-2: #12A9B1;
 --accent-rgb: 8, 127, 136;
 --accent-strong: #08747D;
 --accent-grad-a: #0E969F;
 --accent-grad-b: #08747D;
 --accent-dim: rgba(var(--accent-rgb), .10);
 --success: #0D9D72;
 --warning: #C58A1D;
 --danger: #D94754;
 --st-online: #34D399;
 --st-pending: #FBBF24;
 --st-relay: #60A5FA;
 --st-offline: #6B7280;
 --st-disabled: #94A3B8;
 --st-alarm: #F87171;
 --shadow-1: 0 2px 6px rgba(32, 65, 82, .07), 0 22px 55px -36px rgba(34, 79, 99, .35);
 --shadow-2: 0 28px 80px -38px rgba(22, 58, 76, .45), 0 8px 22px rgba(40, 77, 94, .08);
 --shadow-pop: 0 36px 95px -34px rgba(22, 58, 76, .48), 0 12px 30px rgba(40, 77, 94, .10);
 --ring: 0 0 0 3px rgba(var(--accent-rgb), .12);
 --ease-premium: cubic-bezier(.16, 1, .3, 1);
 --mono: "JetBrains Mono", "Roboto Mono", ui-monospace, monospace;
 --sans: "Geist Variable", "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
 --glass-rgb: 255, 255, 255;
 --glass-alpha: .82;
 --grid-opacity: .035;
}
html.dark {
 --bg-base: #05070B;
 --surface-0: #0B1018;
 --surface-1: #111824;
 --surface-2: #182231;
 --surface-3: #223047;
 --border: rgba(150, 180, 205, .12);
 --border-strong: rgba(150, 180, 205, .22);
 --border-highlight: rgba(150, 180, 205, .10);
 --text-1: #EEF3F7;
 --text-2: #94A6B8;
 --text-3: #61738A;
 --glass-rgb: 16, 23, 34;
 --accent: #71E3EC;
 --accent-2: #47BFCE;
 --accent-rgb: 113, 227, 236;
 --accent-strong: #47BFCE;
 --accent-grad-a: #A4F5F3;
 --accent-grad-b: #47BFCE;
 --el-color-primary: #71E3EC;
 --el-color-primary-light-3: #91EDF1;
 --el-color-primary-light-5: #235A62;
 --el-color-primary-light-7: #163D44;
 --el-color-primary-light-8: #102E35;
 --el-color-primary-light-9: #0A2026;
 --el-color-danger: #FF5A67;
 --el-color-warning: #F59E0B;
 --el-color-success: #10B981;
 --el-color-info: #8B95A5;
 --el-bg-color: #0B1018;
 --el-bg-color-overlay: #111824;
 --el-bg-color-page: #05070B;
 --el-text-color-primary: #F1F5F8;
 --el-text-color-regular: #C3CAD4;
 --el-text-color-secondary: #8492A3;
 --el-text-color-placeholder: #485466;
 --el-text-color-disabled: #3a4250;
 --el-border-color: rgba(177, 203, 226, .09);
 --el-border-color-light: rgba(177, 203, 226, .09);
 --el-border-color-lighter: rgba(177, 203, 226, .055);
 --el-border-color-extra-light: rgba(177, 203, 226, .04);
 --el-border-color-dark: rgba(177, 203, 226, .17);
 --el-fill-color-blank: #0B1018;
 --el-fill-color: #111824;
 --el-fill-color-light: #111824;
 --el-fill-color-lighter: #0B1018;
 --el-fill-color-dark: #182231;
 --el-mask-color: rgba(4, 6, 10, 0.66);
 --el-font-family: var(--sans);
 --el-border-radius-base: 8px;
 --el-box-shadow-light: var(--shadow-1);
}
* { box-sizing: border-box; }
html, body, #app { height: 100%; margin: 0; }
body {
 background:
 radial-gradient(900px 560px at 12% -10%, rgba(61, 174, 183, .15), transparent 66%),
 radial-gradient(760px 520px at 96% 6%, rgba(76, 112, 181, .10), transparent 68%),
 var(--bg-base);
 color: var(--text-1);
 font-family: var(--sans);
 font-size: 13px;
 line-height: 20px;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
}
body::before {
 content: "";
 position: fixed;
 inset: 0;
 z-index: 0;
 pointer-events: none;
 opacity: var(--grid-opacity);
 background-image:
 linear-gradient(rgba(28,58,74,.16) 1px, transparent 1px),
 linear-gradient(90deg, rgba(28,58,74,.14) 1px, transparent 1px);
 background-size: 32px 32px;
 mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
#boot { display: none; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.t1 { color: var(--text-1); }
.t2 { color: var(--text-2); }
.t3 { color: var(--text-3); }
.right { text-align: right; }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 6px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: #C6D5DB; background-clip: padding-box; }
::-webkit-scrollbar-track { background: transparent; }
.card {
 position: relative;
 isolation: isolate;
 background: rgba(var(--glass-rgb), var(--glass-alpha));
 border: 1px solid var(--border-highlight);
 border-radius: 14px;
 box-shadow: var(--shadow-1), inset 0 0 0 1px var(--border);
}
.card::before {
 content: "";
 position: absolute;
 inset: 3px;
 z-index: -1;
 pointer-events: none;
 border: 1px solid rgba(28,58,74,.035);
 border-radius: 10px;
}
.card-title {
 height: 48px; display: flex; align-items: center; justify-content: space-between;
 padding: 0 17px; border-bottom: 1px solid var(--border);
 font-size: 13px; font-weight: 580; letter-spacing: -0.01em;
}
.card-title .sub { font-size: 12px; color: var(--text-2); font-weight: 400; font-family: var(--mono); }
.card-body { padding: 16px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: none; position: relative; }
.dot::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 1px solid currentColor; opacity: .25; }
.dot-online { background: var(--st-online); color: var(--st-online); }
.dot-pending { background: var(--st-pending); color: var(--st-pending); }
.dot-relay { background: var(--st-relay); color: var(--st-relay); }
.dot-p2p { background: var(--st-online); color: var(--st-online); }
.dot-offline { background: var(--st-offline); color: var(--st-offline); }
.dot-offline::after { display: none; }
.dot-disabled { background: var(--st-disabled); color: var(--st-disabled); }
.dot-disabled::after { display: none; }
.dot-alarm { background: var(--st-alarm); color: var(--st-alarm); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.badge {
 display: inline-flex; align-items: center; gap: 5px; height: 20px; padding: 0 8px;
 border-radius: 5px; font-size: 12px; line-height: 1; font-weight: 500;
}
.row { display: flex; align-items: center; gap: 8px; }
.col { display: flex; flex-direction: column; }
.grow { flex: 1; min-width: 0; min-height: 0; }
.wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.gap4 { gap: 4px; } .gap8 { gap: 8px; } .gap12 { gap: 12px; } .gap16 { gap: 16px; } .gap24 { gap: 24px; }
.mt8 { margin-top: 8px; } .mt12 { margin-top: 12px; } .mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; }
.center { display: flex; align-items: center; justify-content: center; }
.empty { color: var(--text-3); text-align: center; padding: 40px 16px; font-size: 13px; }
.eyebrow { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); font-weight: 600; }
.bar { height: 4px; border-radius: 3px; background: var(--surface-3); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 3px; transition: width .3s ease-out, background .3s; }
.codeblock {
 position: relative; background: #0A0C10; color: #C9D6DE; border-radius: 10px;
 font-family: var(--mono); font-size: 13px; line-height: 1.6; padding: 14px 44px 14px 14px;
 word-break: break-all; white-space: pre-wrap;
}
.codeblock .copy {
 position: absolute; top: 8px; right: 8px;
}
.acontent h3 {
 margin: 4px 0 16px;
 color: var(--text-1);
 font-size: clamp(20px, 1.6vw, 28px);
 line-height: 1.08;
 font-weight: 620;
 letter-spacing: -.035em;
}
.acontent h3::after {
 content: "";
 display: block;
 width: 28px;
 height: 2px;
 margin-top: 10px;
 border-radius: 2px;
 background: linear-gradient(90deg, var(--accent), transparent);
}
.route-enter { animation: route-enter .5s var(--ease-premium) both; }
@keyframes route-enter {
 from { opacity: 0; transform: translateY(10px) scale(.997); }
 to { opacity: 1; transform: none; }
}
html.polar {
 --el-color-primary: #087F88;
 --el-color-primary-light-3: #45A9AF;
 --el-color-primary-light-5: #82C4C8;
 --el-color-primary-light-7: #B7DDE0;
 --el-color-primary-light-8: #D2E9EB;
 --el-color-primary-light-9: #E8F4F5;
 --el-color-primary-dark-2: #066972;
 --el-color-danger: #D94754;
 --el-color-warning: #C58A1D;
 --el-color-success: #0D9D72;
 --el-bg-color: #F9FBFC;
 --el-bg-color-overlay: #FFFFFF;
 --el-bg-color-page: #EAF0F3;
 --el-text-color-primary: #10232D;
 --el-text-color-regular: #405662;
 --el-text-color-secondary: #687C88;
 --el-text-color-placeholder: #9AAAB3;
 --el-border-color: rgba(28,58,74,.11);
 --el-border-color-light: rgba(28,58,74,.09);
 --el-border-color-lighter: rgba(28,58,74,.06);
 --el-fill-color-blank: #FFFFFF;
 --el-fill-color: #EEF4F6;
 --el-fill-color-light: #F4F8F9;
 --el-fill-color-lighter: #F8FBFC;
 --el-mask-color: rgba(25,45,55,.24);
 --el-font-family: var(--sans);
 --el-border-radius-base: 10px;
}
.el-button { min-height: 34px; border-radius: 10px; font-weight: 560;
 transition: transform .32s var(--ease-premium), box-shadow .32s var(--ease-premium), border-color .32s var(--ease-premium); }
.el-button:not(.is-text):hover { transform: translateY(-1px); }
.el-button:active { transform: scale(.975); }
html.polar .el-button--primary {
 color: #fff; border-color: var(--accent);
 background: linear-gradient(145deg, var(--accent-grad-a), var(--accent-grad-b));
 box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 14px 28px -20px rgba(var(--accent-rgb),.75);
}
html.polar .el-button--danger {
 color: #fff; border-color: #D94754;
 background: linear-gradient(145deg, #E45B67, #C83544);
}
html.polar .el-input__wrapper,
html.polar .el-select__wrapper,
html.polar .el-textarea__inner {
 min-height: 36px; border-radius: 10px;
 background: rgba(255,255,255,.72); box-shadow: inset 0 0 0 1px var(--border);
}
html.polar .el-input__wrapper.is-focus,
html.polar .el-select__wrapper.is-focused { box-shadow: inset 0 0 0 1px rgba(8,127,136,.65), var(--ring); }
html.polar .el-table {
 --el-table-bg-color: transparent;
 --el-table-tr-bg-color: transparent;
 --el-table-header-bg-color: rgba(238,244,246,.52);
 --el-table-row-hover-bg-color: rgba(8,127,136,.035);
 --el-table-border-color: rgba(28,58,74,.07);
 background: transparent;
}
html.polar .el-table th.el-table__cell { height: 39px; color: #8496A0; font: 540 10px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
html.polar .el-table td.el-table__cell { height: 43px; }
html.polar .el-table__inner-wrapper::before { display: none; }
html.polar .el-dialog,
html.polar .el-message-box {
 border: 1px solid rgba(255,255,255,.92); border-radius: 18px;
 background: #F9FBFC; box-shadow: var(--shadow-pop), inset 0 0 0 1px var(--border);
}
html.polar .el-overlay {
 background: rgba(25,45,55,.42) !important;
 backdrop-filter: blur(2px);
}
html.polar .el-drawer { background: rgba(249,251,252,.98); }
html.polar .el-radio-group { padding: 3px; border: 1px solid var(--border); border-radius: 11px; background: rgba(238,244,246,.72); }
html.polar .el-radio-button__inner { border: 0; background: transparent; }
html.polar .el-radio-button__original-radio:checked + .el-radio-button__inner { color: #fff; background: var(--accent); box-shadow: none; }
html.dark .el-table {
 --el-table-header-bg-color: rgba(255,255,255,.012);
 --el-table-tr-bg-color: transparent;
 --el-table-row-hover-bg-color: rgba(113,227,236,.035);
 --el-table-border-color: var(--border);
 background: transparent;
}
html.dark .el-table th.el-table__cell { color: #718094; font: 570 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; height: 42px; }
html.dark .el-table td.el-table__cell { height: 46px; border-bottom: 1px solid var(--border); }
html.dark .el-table__inner-wrapper::before { display: none; }
html.dark .el-button--primary { color: #03161B; border-color: var(--accent);
 background: linear-gradient(135deg, var(--accent-grad-a) 0%, var(--accent) 52%, var(--accent-strong) 100%); }
html.dark .el-input__wrapper, html.dark .el-select__wrapper, html.dark .el-textarea__inner {
 background: rgba(8,12,18,.82); box-shadow: inset 0 0 0 1px var(--border); border-radius: 10px; }
html.dark .el-input__wrapper.is-focus, html.dark .el-select__wrapper.is-focused {
 box-shadow: inset 0 0 0 1px rgba(113,227,236,.72), var(--ring); }
html.dark .el-dialog, html.dark .el-message-box { border: 1px solid var(--border-strong); border-radius: 16px;
 background: rgba(10,15,23,.98); box-shadow: var(--shadow-pop); }
html.dark .el-drawer { background: rgba(8,12,18,.98); }
html.dark .el-tag { border-radius: 5px; }
.el-select-group__wrap:not(:first-child) { padding-top: 4px; }
.el-select-group__wrap:not(:first-child)::after { background: var(--border) !important; }
.el-select-group__title {
 display: flex; align-items: center; gap: 6px;
 padding-left: 12px !important;
 font: 600 10px/1.6 var(--mono);
 letter-spacing: .1em;
 text-transform: uppercase;
 color: var(--text-3) !important;
}
.el-select-group__title::before {
 content: ""; width: 6px; height: 6px; border-radius: 2px; flex: none;
 background: var(--accent); opacity: .7;
}
.el-select-group .el-select-dropdown__item { padding-left: 24px; font-weight: 500; }
.el-select-group .el-select-dropdown__item::before {
 content: ""; position: absolute; left: 13px; top: 50%; width: 5px; height: 1px; background: var(--text-3); opacity: .5;
}
.el-select-group .el-select-dropdown__item { position: relative; }
.el-select-dropdown__item.grp-opt {
 margin-top: 2px;
 border-top: 1px solid var(--border);
 font-size: 12px;
}
.el-select-dropdown__item.grp-opt:first-of-type { border-top: 0; margin-top: 0; }
.el-select-dropdown__item.dev-opt { padding-left: 30px; font-weight: 500; position: relative; }
.el-select-dropdown__item.dev-opt::before {
 content: ""; position: absolute; left: 18px; top: 50%; width: 6px; height: 1px; background: var(--text-3); opacity: .5;
}
@media (max-width: 767px) {
 .acontent > .row.between.wrap { gap: 8px; }
 .acontent > .row.between.wrap > .row.wrap { flex: 1 1 auto; gap: 8px; min-width: 0; }
 .acontent > .row.between.wrap .el-input,
 .acontent > .row.between.wrap .el-select { flex: 1 1 120px; min-width: 0; width: auto !important; }
 .acontent > .row.between.wrap .el-segmented { flex: 1 1 100%; width: 100%; }
 .acontent > .row.between.wrap > .el-input { flex: 1 1 auto; }
 .acontent > .row.between.wrap > .row.gap8 { flex: 1 1 100%; gap: 8px; }
 .acontent > .row.between.wrap > .row.gap8 .el-button { flex: 1 1 auto; }
 .acontent > .row.between.wrap > .el-button { flex: 0 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
 *, *::before, *::after {
 animation-duration: .001ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: .001ms !important;
 }
}
html.reduce-motion *, html.reduce-motion *::before, html.reduce-motion *::after {
 animation-duration: .001ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: .001ms !important;
 scroll-behavior: auto !important;
}
html.reduce-motion .dot-alarm { animation: none; }
html[data-density="compact"] .content { padding: 16px; }
html[data-density="compact"] .card-body { padding: 12px; }
html[data-density="compact"] .card-title { height: 42px; }
html[data-density="compact"] .el-table th.el-table__cell { height: 34px; }
html[data-density="compact"] .el-table td.el-table__cell { height: 37px; }
html[data-density="compact"] .nav-item { height: 34px; }
html[data-density="compact"] .evt-row { padding-top: 7px; padding-bottom: 7px; }
.cmdk-overlay { z-index: 60; }
.topbar-icon-btn {
 width: 34px; height: 34px; flex: none; border: 1px solid transparent; background: transparent;
 border-radius: 9px; color: var(--text-2); cursor: pointer; display: flex; align-items: center; justify-content: center;
 position: relative; transition: background .16s, color .16s, border-color .16s;
}
.topbar-icon-btn:hover { background: var(--surface-2); color: var(--text-1); }
.topbar-icon-btn:focus-visible { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
@media (max-width: 767px) {
 body { font-size: 12px; line-height: 18px; }
 html.polar, html.dark { --el-font-size-base: 13px; }
 .el-button { min-height: 30px; padding: 6px 11px; font-size: 12px; border-radius: 8px; }
 .el-button--small { min-height: 26px; padding: 5px 9px; font-size: 12px; }
 .el-button.is-circle { padding: 6px; }
 html.polar .el-input__wrapper, html.polar .el-select__wrapper, html.polar .el-textarea__inner,
 html.dark .el-input__wrapper, html.dark .el-select__wrapper, html.dark .el-textarea__inner {
 min-height: 32px; border-radius: 8px;
 }
 .el-input__inner, .el-select__placeholder, .el-textarea__inner { font-size: 13px; }
 .el-segmented { font-size: 12px; }
 .card { border-radius: 10px; }
 .card::before { display: none; }
 .card-title { height: 42px; padding: 0 12px; font-size: 13px; }
 .card-title .sub { font-size: 11px; }
 .card-body { padding: 10px 12px; }
 html.polar .el-table th.el-table__cell, html.dark .el-table th.el-table__cell { height: 32px; }
 html.polar .el-table td.el-table__cell, html.dark .el-table td.el-table__cell { height: 36px; font-size: 12px; }
 .el-dialog { width: calc(100vw - 20px) !important; max-width: calc(100vw - 20px); }
 html.polar .el-dialog, html.dark .el-dialog { border-radius: 14px; }
 .el-dialog__body { padding: 12px 16px; }
 .el-message-box { width: calc(100vw - 32px) !important; }
 .badge { height: 18px; font-size: 11px; padding: 0 7px; }
 .eyebrow { font-size: 10px; }
 .empty { padding: 24px 12px; font-size: 12px; }
 .acontent h3 { font-size: 19px; margin: 2px 0 12px; }
}
.list-cards { display: flex; flex-direction: column; gap: 8px; padding: 2px; }
.list-card {
 border: 1px solid var(--border); border-radius: 10px; background: var(--surface-1);
 padding: 9px 10px; display: flex; flex-direction: column; gap: 7px;
}
.list-card.muted { opacity: .6; }
.list-card .lc-head { display: flex; align-items: center; gap: 7px; }
.list-card .lc-head .lc-spacer { flex: 1; }
.list-card .lc-time { font-family: var(--mono); font-size: 11px; color: var(--text-3); }
.list-card .lc-primary { font-family: var(--mono); font-size: 13px; color: var(--text-1); word-break: break-all; }
.list-card .lc-meta { display: flex; flex-direction: column; gap: 4px; margin: 0; }
.list-card .lc-row { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.list-card .lc-row dt {
 flex: none; width: 64px; margin: 0;
 font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: .03em;
}
.list-card .lc-row dd {
 margin: 0; min-width: 0; flex: 1; font-size: 12px; color: var(--text-1);
 overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.list-card .lc-more {
 width: 28px; height: 28px; padding: 0; border: 0; border-radius: 8px; background: transparent;
 color: var(--text-2); cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.list-card .lc-more:hover { background: var(--surface-2); color: var(--text-1); }
