:root {
  --bg: #050812;
  --panel: rgba(12, 18, 35, 0.72);
  --panel-strong: rgba(10, 16, 31, 0.92);
  --line: rgba(130, 165, 255, 0.13);
  --text: #f4f7ff;
  --muted: #7e8aa9;
  --green: #37f6a7;
  --cyan: #49d8ff;
  --purple: #a97cff;
  --orange: #ffb45f;
  --red: #ff5e7d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 15%, rgba(55, 246, 167, 0.07), transparent 28%),
    radial-gradient(circle at 88% 5%, rgba(73, 216, 255, 0.09), transparent 25%),
    radial-gradient(circle at 65% 78%, rgba(169, 124, 255, 0.07), transparent 32%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

button, input { font: inherit; }
button { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(82, 112, 176, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 112, 176, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 95%);
}

.app-shell {
  width: min(1540px, calc(100% - 36px));
  margin: 18px auto 0;
}

.glass {
  background: linear-gradient(135deg, rgba(15, 23, 43, .82), rgba(8, 13, 27, .68));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.025);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  height: 78px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  position: sticky;
  top: 12px;
  z-index: 30;
}
.brand-wrap { display: flex; gap: 13px; align-items: center; }
.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(55, 246, 167, 0.07);
  border: 1px solid rgba(55, 246, 167, 0.25);
}
.brand { font-size: 18px; font-weight: 700; letter-spacing: .13em; }
.brand b { color: var(--green); }
.brand-sub { color: #596783; font-size: 9px; letter-spacing: .18em; margin-top: 4px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.live-pill {
  height: 34px;
  padding: 0 13px;
  border-radius: 99px;
  border: 1px solid rgba(255, 180, 95, .2);
  color: var(--orange);
  background: rgba(255, 180, 95, .06);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
}
.live-pill i {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: blink 1.4s infinite;
}
.live-pill.connected { color: var(--green); border-color: rgba(55,246,167,.22); background: rgba(55,246,167,.06); }
.live-pill.error { color: var(--red); border-color: rgba(255,94,125,.22); background: rgba(255,94,125,.06); }
.clock-wrap { text-align: right; line-height: 1.05; min-width: 80px; }
.clock-wrap strong { font-family: "SFMono-Regular", Consolas, monospace; font-size: 16px; letter-spacing: .05em; }
.clock-wrap span { display: block; color: var(--muted); font-size: 9px; letter-spacing: .14em; margin-top: 5px; }

.notice {
  margin-top: 14px;
  min-height: 66px;
  border-radius: 15px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 13px;
  border-color: rgba(255, 180, 95, .18);
  background: linear-gradient(90deg, rgba(255,180,95,.08), rgba(12,18,35,.72) 42%);
}
.notice-icon {
  flex: 0 0 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  color: var(--orange); border: 1px solid rgba(255,180,95,.25);
  background: rgba(255,180,95,.07);
  font-size: 10px; font-weight: 900; letter-spacing: .08em;
}
.notice strong { font-size: 13px; }
.notice p { color: #9aa6c1; font-size: 11px; margin: 4px 0 0; line-height: 1.5; }
.notice-tag {
  margin-left: auto; white-space: nowrap;
  font-size: 10px; color: #8e99b2;
  padding: 6px 9px; border-radius: 7px;
  background: rgba(255,255,255,.03);
}

.dashboard { margin-top: 18px; display: grid; gap: 16px; }
.hero-panel {
  min-height: 370px;
  border-radius: 24px;
  padding: 42px 48px;
  display: flex; align-items: center; justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute; width: 520px; height: 520px; right: -100px; top: -110px;
  background: radial-gradient(circle, rgba(73,216,255,.12), transparent 66%);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; max-width: 710px; }
.eyebrow { color: #8290ad; font-size: 10px; letter-spacing: .24em; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 28px; height: 1px; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero-copy h1 { font-size: clamp(40px, 5vw, 72px); line-height: 1.05; margin: 20px 0 18px; letter-spacing: -.045em; }
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ffffff 0%, var(--cyan) 42%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy > p { color: #8995af; max-width: 620px; font-size: 14px; line-height: 1.8; margin: 0; }
.hero-actions { display: flex; gap: 11px; margin-top: 28px; }
.primary-btn, .ghost-btn, .danger-btn {
  border: 0; border-radius: 11px; height: 44px; padding: 0 18px;
  cursor: pointer; transition: .22s ease;
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
}
.primary-btn {
  color: #04110d;
  background: linear-gradient(110deg, var(--green), #7cf8d0);
  box-shadow: 0 10px 30px rgba(55,246,167,.17);
  display: inline-flex; align-items: center; gap: 9px;
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(55,246,167,.26); }
.primary-btn.running { background: linear-gradient(110deg, #ffbd6c, #ffdb9d); }
.btn-led { width: 7px; height: 7px; border-radius: 50%; background: #061712; box-shadow: 0 0 0 4px rgba(6,23,18,.12); }
.ghost-btn { color: #9ca8c2; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); }
.ghost-btn:hover { color: white; background: rgba(255,255,255,.07); }
.danger-btn { background: var(--red); color: white; }
.engine-meta { display: flex; gap: 30px; margin-top: 31px; }
.engine-meta div { display: grid; gap: 5px; }
.engine-meta span { color: #56637e; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.engine-meta b { color: #aab4ca; font-size: 11px; font-weight: 600; }

.orbital {
  width: 320px; height: 320px; flex: 0 0 320px;
  display: grid; place-items: center;
  position: relative; margin-right: 4vw;
}
.orbit {
  position: absolute; border: 1px solid rgba(73,216,255,.14); border-radius: 50%;
  animation: spin 12s linear infinite;
}
.orbit::before, .orbit::after {
  content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 13px var(--cyan);
}
.orbit::before { top: 14%; left: 16%; }
.orbit::after { right: 7%; bottom: 27%; background: var(--green); box-shadow: 0 0 13px var(--green); }
.orbit-a { width: 300px; height: 300px; }
.orbit-b { width: 238px; height: 238px; animation-duration: 9s; animation-direction: reverse; border-style: dashed; }
.orbit-c { width: 180px; height: 180px; animation-duration: 6s; }
.core {
  width: 132px; height: 132px; border-radius: 50%;
  padding: 9px; position: relative; z-index: 3;
  background: conic-gradient(from 120deg, var(--green), transparent 28%, var(--cyan), transparent 65%, var(--purple));
  animation: coreGlow 3s ease-in-out infinite;
}
.core-inner {
  width: 100%; height: 100%; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #08101d; border: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 0 35px rgba(73,216,255,.1);
}
.core small { color: #5b6a88; font-size: 8px; letter-spacing: .2em; }
.core strong { color: var(--cyan); margin-top: 7px; font-family: Consolas, monospace; font-size: 17px; letter-spacing: .1em; }
.core span { color: #60708f; font-size: 8px; margin-top: 5px; }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric-card { min-height: 145px; border-radius: 17px; padding: 20px; position: relative; overflow: hidden; }
.metric-card::after {
  content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
  right: -52px; bottom: -54px; background: currentColor; filter: blur(55px); opacity: .12;
}
.metric-head, .metric-foot { display: flex; justify-content: space-between; align-items: center; }
.metric-head span { color: #8d99b5; font-size: 11px; }
.metric-head i { font-style: normal; font-size: 8px; letter-spacing: .14em; color: currentColor; padding: 4px 6px; border: 1px solid currentColor; border-radius: 5px; opacity: .7; }
.metric-card > strong { display: block; margin: 21px 0 13px; font-size: clamp(23px, 2.2vw, 32px); letter-spacing: -.035em; font-family: "SFMono-Regular", Consolas, monospace; }
.metric-foot span { font-size: 10px; color: currentColor; font-weight: 700; }
.metric-foot small { color: #5c6983; font-size: 9px; }
.accent-green { color: var(--green); } .accent-cyan { color: var(--cyan); }
.accent-purple { color: var(--purple); } .accent-orange { color: var(--orange); }
.metric-card > strong { color: white; }

.market-strip { border-radius: 19px; padding: 20px; overflow: hidden; }
.section-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 19px; }
.section-heading.compact { margin-bottom: 14px; }
.kicker { color: #53617c; font-size: 8px; letter-spacing: .21em; font-weight: 800; }
.section-heading h2 { font-size: 15px; margin: 5px 0 0; letter-spacing: -.01em; }
.source-label, .wins-only-badge, .count-badge {
  color: #6d7a97; font-size: 8px; letter-spacing: .12em;
  padding: 6px 8px; border-radius: 6px; border: 1px solid rgba(255,255,255,.06);
}
.wins-only-badge { color: var(--green); border-color: rgba(55,246,167,.2); background: rgba(55,246,167,.04); }
.count-badge { color: var(--cyan); }
.ticker-grid { display: grid; grid-template-columns: repeat(10, minmax(112px, 1fr)); gap: 8px; }
.ticker-card {
  background: rgba(255,255,255,.022); border: 1px solid rgba(255,255,255,.045);
  border-radius: 11px; padding: 11px 12px; cursor: pointer; transition: .2s ease;
}
.ticker-card:hover, .ticker-card.active { transform: translateY(-2px); border-color: rgba(73,216,255,.23); background: rgba(73,216,255,.045); }
.ticker-top { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.coin-name { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; }
.coin-icon {
  width: 20px; height: 20px; border-radius: 7px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(73,216,255,.12), rgba(169,124,255,.12));
  color: #c9d5ee; font-size: 8px;
}
.ticker-change { font-size: 8px; font-weight: 800; }
.up { color: var(--green) !important; } .down { color: var(--red) !important; }
.ticker-price { margin-top: 9px; font-family: Consolas, monospace; font-size: 12px; color: #dfe7f8; }
.ticker-vol { color: #4e5c76; font-size: 8px; margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(330px, .8fr); gap: 14px; }
.chart-panel, .positions-panel, .orders-panel, .activity-panel { border-radius: 19px; padding: 21px; min-width: 0; }
.chart-tabs { display: flex; gap: 5px; }
.chart-tab {
  border: 1px solid rgba(255,255,255,.06); color: #6d7a95; background: rgba(255,255,255,.025);
  padding: 6px 8px; border-radius: 6px; cursor: pointer; font-size: 8px; font-weight: 800;
}
.chart-tab.active { color: var(--cyan); border-color: rgba(73,216,255,.2); background: rgba(73,216,255,.06); }
.chart-stat-row { display: flex; gap: 38px; padding: 14px 0 10px; border-top: 1px solid rgba(255,255,255,.045); }
.chart-stat-row div { display: grid; gap: 5px; }
.chart-stat-row span { color: #56647e; font-size: 8px; letter-spacing: .08em; }
.chart-stat-row strong { font-size: 12px; font-family: Consolas, monospace; }
.chart-wrap { height: 290px; position: relative; overflow: hidden; border-radius: 12px; }
#priceChart { width: 100%; height: 100%; display: block; }
.chart-scan {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(73,216,255,.7), transparent);
  box-shadow: 0 0 14px rgba(73,216,255,.45); animation: scan 5s linear infinite;
}
.chart-axis { display: flex; justify-content: space-between; color: #3f4c65; font-size: 8px; margin-top: 8px; }

.position-list { display: grid; gap: 9px; max-height: 367px; overflow: auto; padding-right: 2px; }
.position-card {
  padding: 12px; border-radius: 11px; border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.024); animation: slideIn .25s ease;
}
.position-top, .position-bottom { display: flex; justify-content: space-between; align-items: center; }
.position-symbol { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 11px; }
.side-tag { padding: 3px 6px; border-radius: 4px; font-size: 7px; letter-spacing: .08em; }
.side-tag.long { color: var(--green); background: rgba(55,246,167,.08); }
.side-tag.short { color: var(--red); background: rgba(255,94,125,.08); }
.position-pnl { font-family: Consolas, monospace; font-size: 12px; }
.position-mid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 12px 0; }
.position-mid div { display: grid; gap: 3px; }
.position-mid span { color: #52607a; font-size: 7px; }
.position-mid b { color: #aeb8ce; font-size: 9px; font-family: Consolas, monospace; font-weight: 500; }
.position-progress { height: 3px; border-radius: 5px; background: rgba(255,255,255,.05); overflow: hidden; }
.position-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--green)); transition: width .3s ease; }
.position-bottom { margin-top: 8px; color: #56647e; font-size: 7px; }
.empty-state { min-height: 315px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-state strong { font-size: 12px; margin-top: 15px; }
.empty-state span { color: #56647e; font-size: 9px; max-width: 210px; margin-top: 7px; line-height: 1.5; }
.empty-radar {
  width: 62px; height: 62px; border: 1px solid rgba(73,216,255,.16); border-radius: 50%; position: relative;
  background: conic-gradient(from 0deg, rgba(73,216,255,.15), transparent 24%);
  animation: spin 2.5s linear infinite;
}
.empty-radar::before, .empty-radar::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(73,216,255,.11); border-radius: 50%; }
.empty-radar::after { inset: 25px; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); border: 0; }

.bottom-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(300px, .62fr); gap: 14px; }
.table-note { color: #77849f; font-size: 9px; padding: 9px 11px; border-radius: 8px; background: rgba(255,180,95,.045); border: 1px solid rgba(255,180,95,.1); margin: -5px 0 13px; line-height: 1.5; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 820px; }
th { color: #53607a; font-size: 8px; letter-spacing: .08em; text-align: left; font-weight: 700; padding: 10px; border-bottom: 1px solid rgba(255,255,255,.055); }
td { padding: 11px 10px; color: #a9b4c9; font-size: 9px; border-bottom: 1px solid rgba(255,255,255,.035); font-family: Consolas, "Microsoft YaHei", monospace; }
tbody tr { animation: rowIn .35s ease; }
tbody tr:hover { background: rgba(255,255,255,.018); }
.profit-cell { color: var(--green); font-weight: 800; }
.status-chip { color: var(--green); background: rgba(55,246,167,.07); padding: 4px 6px; border-radius: 5px; font-size: 7px; }
.empty-row td { text-align: center; color: #4e5b74; padding: 35px; }

.activity-list { max-height: 370px; overflow: hidden; display: grid; gap: 2px; }
.activity-item {
  display: grid; grid-template-columns: 8px 1fr auto; gap: 9px; align-items: start;
  padding: 10px 5px; border-bottom: 1px solid rgba(255,255,255,.035); animation: slideIn .25s ease;
}
.activity-item i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px currentColor; margin-top: 4px; }
.activity-item.success i { background: var(--green); }
.activity-item.warn i { background: var(--orange); }
.activity-item.loss i { background: var(--red); }
.activity-item p { margin: 0; color: #8793ad; font-size: 9px; line-height: 1.45; }
.activity-item p b { color: #c5cde0; font-weight: 700; }
.activity-item time { color: #43506a; font-size: 7px; white-space: nowrap; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px var(--green); animation: blink 1.2s infinite; }

footer {
  height: 72px; display: flex; justify-content: space-between; align-items: center;
  color: #3f4b63; font-size: 8px; letter-spacing: .1em;
}

.toast-container { position: fixed; right: 20px; bottom: 20px; display: grid; gap: 8px; z-index: 80; }
.toast {
  min-width: 250px; max-width: 340px; padding: 12px 14px; border-radius: 10px;
  background: rgba(10,16,31,.96); border: 1px solid rgba(73,216,255,.16);
  box-shadow: var(--shadow); color: #b7c2d8; font-size: 10px;
  animation: toastIn .3s ease;
}
.toast b { color: white; display: block; margin-bottom: 3px; }

.confirm-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; place-items: center; padding: 20px;
  background: rgba(2,5,12,.72); backdrop-filter: blur(8px);
}
.confirm-modal.show { display: grid; }
.modal-card { width: min(410px, 100%); border-radius: 18px; padding: 28px; text-align: center; }
.modal-icon { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 50%; color: var(--orange); border: 1px solid rgba(255,180,95,.25); background: rgba(255,180,95,.07); font-weight: 900; }
.modal-card h3 { margin: 0; font-size: 18px; }
.modal-card p { color: #7e8aa3; font-size: 11px; line-height: 1.65; }
.modal-actions { display: flex; gap: 9px; justify-content: center; margin-top: 20px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 0%,100%{opacity:.35} 50%{opacity:1} }
@keyframes scan { from{left:-5%} to{left:105%} }
@keyframes coreGlow { 0%,100%{filter:drop-shadow(0 0 14px rgba(73,216,255,.15))} 50%{filter:drop-shadow(0 0 28px rgba(55,246,167,.27))} }
@keyframes slideIn { from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:none} }
@keyframes rowIn { from{opacity:0; transform:translateX(-6px)} to{opacity:1; transform:none} }
@keyframes toastIn { from{opacity:0; transform:translateX(12px)} to{opacity:1; transform:none} }

@media (max-width: 1180px) {
  .ticker-grid { grid-template-columns: repeat(5, 1fr); }
  .orbital { width: 260px; height: 260px; flex-basis: 260px; margin-right: 0; transform: scale(.9); }
  .hero-panel { padding: 38px; }
  .bottom-grid { grid-template-columns: 1fr; }
  .activity-list { max-height: 230px; }
}
@media (max-width: 900px) {
  .app-shell { width: min(100% - 20px, 1540px); margin-top: 10px; }
  .topbar { top: 7px; height: 68px; padding: 0 16px; }
  .brand-sub, .clock-wrap span { display: none; }
  .hero-panel { min-height: auto; padding: 35px 28px; }
  .orbital { display: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .positions-panel { min-height: 350px; }
}
@media (max-width: 640px) {
  .topbar-right { gap: 8px; }
  .clock-wrap { min-width: 70px; }
  .live-pill { padding: 0 9px; }
  .live-pill span { display: none; }
  .notice-tag { display: none; }
  .hero-panel { padding: 30px 20px; }
  .hero-copy h1 { font-size: 38px; }
  .hero-actions { flex-direction: column; }
  .hero-actions button { width: 100%; justify-content: center; }
  .engine-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .metric-grid { grid-template-columns: 1fr; }
  .ticker-grid { grid-template-columns: repeat(2, 1fr); }
  .chart-tabs { display: none; }
  .chart-stat-row { gap: 18px; overflow-x: auto; }
  .chart-wrap { height: 235px; }
  .section-heading { align-items: flex-start; gap: 12px; }
  .wins-only-badge { text-align: right; }
  footer { flex-direction: column; justify-content: center; gap: 7px; text-align: center; }
}


/* Read-only public mode */
.hero-status-box {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 0 16px;
  margin-top: 28px;
  border-radius: 11px;
  color: #aebbd2;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.hero-status-box i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px currentColor;
  animation: blink 1.4s infinite;
}
.hero-status-box.active { color: var(--green); border-color: rgba(55,246,167,.18); background: rgba(55,246,167,.045); }
.hero-status-box.paused { color: var(--orange); }
.hero-status-box.offline { color: var(--red); border-color: rgba(255,94,125,.18); background: rgba(255,94,125,.045); }
.backend-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--cyan);
  border: 1px solid rgba(73,216,255,.18);
  background: rgba(73,216,255,.04);
  font-size: 8px;
  letter-spacing: .12em;
}
.backend-chip::before { content:""; width:5px; height:5px; border-radius:50%; background:currentColor; box-shadow:0 0 9px currentColor; }
.server-error {
  margin: 12px 0 0;
  color: var(--red);
  font-size: 10px;
}
