:root {
  color-scheme: dark;
  --bg: #050607;
  --panel: #1f2020;
  --panel-2: #101212;
  --ink: #f3f3ef;
  --muted: #9b9f9b;
  --line: #3a3d38;
  --lime: #baff00;
  --green: #00f060;
  --amber: #ff9b18;
  --cyan: #53d7ff;
  --red: #ff4f38;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
  --rail-width: 74px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    repeating-linear-gradient(0deg, rgba(186, 255, 0, 0.03) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 72px),
    var(--bg);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: var(--lime);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.concept-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  margin-left: var(--rail-width);
  padding: 9px 16px;
  border-bottom: 1px solid rgba(255, 155, 24, 0.72);
  background:
    repeating-linear-gradient(90deg, rgba(255, 155, 24, 0.14) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(48, 26, 4, 0.98), rgba(20, 12, 4, 0.98));
  color: #ffd69a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.concept-banner strong {
  color: var(--amber);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
}

.concept-banner span {
  color: #ffe3b4;
}

.side-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  display: grid;
  align-content: start;
  gap: 9px;
  width: var(--rail-width);
  padding: 58px 9px 0;
  border-right: 1px solid #2c312a;
  background: #101111;
}

.rail-mark {
  display: grid;
  width: 56px;
  height: 44px;
  place-items: center;
  border: 1px solid #42473e;
  color: #bfc4bb;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.rail-mark img {
  width: 30px;
  height: 30px;
  image-rendering: pixelated;
}

.rail-mark.active,
.rail-mark:hover {
  border-color: var(--lime);
  background: rgba(186, 255, 0, 0.1);
  color: var(--lime);
  text-decoration: none;
}

.vote-mark {
  background: rgba(255, 155, 24, 0.06);
}

.vote-mark.active,
.vote-mark:hover {
  border-color: var(--amber);
  background: rgba(255, 155, 24, 0.12);
}

.wallet-mark {
  background: rgba(83, 215, 255, 0.045);
}

.wallet-mark.active,
.wallet-mark:hover {
  border-color: var(--cyan);
  background: rgba(83, 215, 255, 0.11);
  color: var(--cyan);
}

.map-mark {
  background: rgba(255, 78, 184, 0.05);
}

.map-mark.active,
.map-mark:hover {
  border-color: #ff4eb8;
  background: rgba(255, 78, 184, 0.12);
  color: #ff4eb8;
}

.top-shell {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 74px;
  margin-left: var(--rail-width);
  padding: 13px 20px 15px;
  border-bottom: 1px solid #252a22;
  background:
    linear-gradient(180deg, rgba(20, 21, 21, 0.98), rgba(8, 9, 9, 0.98)),
    #0b0c0c;
  text-align: center;
}

.launcher {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 5px 12px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launcher img {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
}

.top-action {
  position: absolute;
  top: 17px;
  right: 22px;
}

.wallet-shell {
  width: min(1160px, calc(100% - (var(--rail-width) + 24px)));
  margin: 12px auto 42px;
  margin-left: max(calc(var(--rail-width) + 24px), calc((100% - 1160px) / 2 + var(--rail-width)));
  display: grid;
  gap: 10px;
}

.headline-box,
.project-column,
.wallet-column,
.project-panel {
  border: 1px dashed var(--lime);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.headline-box {
  border-color: var(--cyan);
  padding: 13px 16px;
  background:
    linear-gradient(90deg, rgba(83, 215, 255, 0.13), rgba(17, 19, 19, 0.96)),
    var(--panel);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
  line-height: 1.03;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(26px, 3.6vw, 48px);
}

h2 {
  font-size: clamp(18px, 2vw, 26px);
}

h3 {
  font-size: 15px;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.checker-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.project-column,
.wallet-column {
  padding: 12px;
}

.wallet-column {
  display: grid;
  gap: 9px;
  border-color: #4e5648;
}

.manual-wallet-form {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.compact-head {
  display: grid;
  gap: 4px;
}

.compact-head.split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.project-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.project-toggle {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  gap: 8px;
  align-items: center;
  min-height: 50px;
  padding: 7px;
  border: 1px solid #464d43;
  background: #101211;
  cursor: pointer;
}

.project-toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--lime);
}

.project-toggle.is-active {
  border-color: var(--lime);
  box-shadow: inset 4px 0 0 var(--lime);
}

.project-thumb {
  width: 38px;
  height: 38px;
  border: 1px solid #4b5146;
  background: #111312;
  image-rendering: pixelated;
  object-fit: cover;
}

.project-toggle strong,
.project-toggle span {
  display: block;
}

.project-toggle strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 12px;
}

.project-toggle span span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.count-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid #4e5648;
  background: #111312;
  color: var(--lime);
  padding: 0 9px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.wallet-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

label {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

textarea {
  width: 100%;
  min-height: 74px;
  resize: vertical;
  border: 1px solid #485044;
  border-radius: 0;
  background: #0e100f;
  color: var(--ink);
  padding: 9px 10px;
  outline: none;
}

textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(186, 255, 0, 0.16);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #55614b;
  border-radius: 0;
  padding: 0 13px;
  background: #171817;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.small {
  min-height: 28px;
  padding: 0 9px;
  font-size: 9px;
}

.button:hover:not(:disabled) {
  border-color: var(--lime);
  color: var(--lime);
  text-decoration: none;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.button.primary {
  border-color: var(--lime);
  background: var(--lime);
  color: #111605;
}

.button.primary:hover:not(:disabled) {
  background: #d4ff4a;
  color: #111605;
}

.button.quiet {
  border-color: rgba(255, 79, 56, 0.55);
  color: #ffb2aa;
}

.status-line {
  margin: 0;
  color: #b9beb4;
  font-size: 11px;
  line-height: 1.45;
}

.wallet-list {
  display: grid;
  gap: 0;
  max-height: 116px;
  overflow: auto;
  padding-right: 2px;
}

.wallet-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 31px;
  border-bottom: 1px solid #30372f;
  background: transparent;
  padding: 4px 0;
}

.wallet-row.is-filtered {
  opacity: 0.54;
}

.wallet-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  cursor: pointer;
}

.wallet-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.wallet-check span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #55614b;
  background: #111312;
}

.wallet-check input:checked + span {
  border-color: var(--lime);
  background: var(--lime);
}

.wallet-check input:checked + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #111605;
  border-left: 2px solid #111605;
  transform: rotate(-45deg);
}

.wallet-check input:focus-visible + span {
  box-shadow: 0 0 0 2px rgba(186, 255, 0, 0.22);
}

.wallet-row code {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 11px;
}

.wallet-row > div span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.is-amm-mode .checker-workbench {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
}

.is-amm-mode .project-filters {
  grid-template-columns: 1fr;
}

.is-amm-mode .project-toggle {
  cursor: default;
}

.is-amm-mode .project-toggle input {
  pointer-events: none;
}

.is-amm-mode .wallet-column {
  border-color: var(--orange);
}

.amm-wallet-row {
  box-shadow: inset 4px 0 0 var(--orange);
}

.icon-button {
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 1px solid #4d5548;
  background: #161817;
  color: #ffb2aa;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.project-sections {
  display: grid;
  gap: 10px;
}

.project-panel {
  padding: 12px;
}

.project-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3a3e36;
}

.project-panel-head p {
  max-width: 760px;
  margin: 5px 0 0;
  color: #b9beb4;
  font-size: 12px;
  line-height: 1.42;
}

.holdings-panel {
  border-color: var(--lime);
  padding: 6px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px),
    #202120;
}

.holdings-panel-head {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(390px, 1.25fr);
  gap: 14px;
  align-items: start;
  padding: 5px 4px 7px;
}

.holdings-panel-head h2 {
  font-size: clamp(18px, 1.8vw, 25px);
  letter-spacing: 0;
}

.holdings-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.holdings-title-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #4b5146;
  background: #111312;
  image-rendering: pixelated;
  object-fit: cover;
}

.holdings-summary {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr auto;
  gap: 10px;
  align-items: start;
}

.holdings-summary div,
.live-badge {
  min-height: 31px;
  border: 1px solid #4a5347;
  background: #111312;
  padding: 5px 9px;
}

.holdings-summary div {
  display: grid;
  gap: 2px;
}

.holdings-summary span,
.holding-label,
.nft-name-box,
.holding-token-grid span,
.holding-claimables span,
.holding-status,
.holding-owner,
.holdings-caption,
.holding-wallet-value {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.holdings-summary strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.holdings-summary small {
  color: var(--amber);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.live-badge {
  display: inline-grid;
  min-width: 44px;
  place-items: center;
  color: var(--lime);
}

.holdings-caption {
  margin: 0;
  padding: 0 4px 7px;
  color: #aeb4aa;
  line-height: 1.35;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.summary-tile {
  display: grid;
  gap: 4px;
  min-height: 54px;
  align-content: center;
  border: 1px solid #454b41;
  background: #101211;
  padding: 8px;
}

.summary-tile span,
.placeholder-panel span,
.portfolio-chip span,
.broker-meta span,
.source-line {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-tile strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.compact-summary {
  margin: 8px 0;
}

.source-line {
  margin: 8px 0 0;
  padding: 8px 9px;
  border: 1px solid #344940;
  background: rgba(8, 25, 32, 0.72);
  color: #b9dce5;
  line-height: 1.45;
}

.source-line code {
  color: var(--cyan);
}

.wallet-result-list {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.wallet-result {
  border: 1px solid #464b43;
  background: #151616;
}

.holdings-table {
  display: grid;
  border: 1px solid #4a4f49;
  background: #202120;
}

.amm-load-more {
  display: flex;
  justify-content: center;
  padding: 14px;
  border: 1px solid #4a4f49;
  border-top: 0;
  background: #151616;
}

.holding-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(245px, 0.78fr) minmax(360px, 1.18fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 9px 14px;
  border-top: 1px solid #777a73;
}

.is-amm-mode .holding-row {
  grid-template-columns: minmax(230px, 0.72fr) minmax(240px, 1fr);
}

.is-amm-mode .holding-wallet-value {
  color: var(--orange);
}

.holding-row.has-claimables {
  grid-template-columns: minmax(245px, 0.78fr) minmax(360px, 1.18fr) minmax(150px, 0.56fr);
}

.holding-row:first-child {
  border-top: 0;
}

.holding-row::before {
  position: absolute;
  top: 17px;
  left: 14px;
  width: 43px;
  height: 2px;
  background: var(--lime);
  content: "";
}

.holding-nft,
.holding-wallet,
.holding-claimables {
  padding: 0;
}

.holding-nft {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding-left: 0;
}

.holding-nft img {
  width: 40px;
  height: 40px;
  border: 1px solid #4b5146;
  background: #111312;
  image-rendering: pixelated;
  object-fit: cover;
}

.holding-nft-meta {
  min-width: 0;
}

.nft-name-box {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 7px;
  max-width: 100%;
  min-width: min(150px, 100%);
  min-height: 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid #50574e;
  background: #111312;
  color: var(--ink);
  padding: 0 8px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nft-name-box span {
  color: var(--muted);
  font-size: 8px;
}

.nft-name-box strong {
  color: var(--ink);
  font-size: 12px;
}

.holding-nft-title {
  display: block;
  margin-top: 5px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 12px;
}

.metadata-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
}

.metadata-badges span {
  display: inline-flex;
  min-height: 17px;
  align-items: center;
  border: 1px solid #4a5347;
  background: #101211;
  color: #dfe4d9;
  padding: 0 5px;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.metadata-badges b {
  margin-right: 4px;
  color: var(--amber);
}

.tier-strip {
  display: flex;
  gap: 3px;
  margin-top: 5px;
}

.tier-strip span {
  display: inline-flex;
  min-width: 28px;
  min-height: 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid #4a5347;
  background: #101211;
  color: #bfc4bb;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.tier-strip span.is-active {
  border-color: var(--lime);
  background: rgba(186, 255, 0, 0.16);
  color: var(--lime);
}

.holding-status {
  display: block;
  margin-top: 4px;
  color: #878e87;
}

.holding-status.is-active {
  color: var(--lime);
}

.holding-status.is-warning {
  color: #ff9e1b;
}

.holding-owner {
  display: block;
  margin-top: 3px;
  color: #7f8580;
}

.holding-wallet,
.holding-claimables {
  min-height: 60px;
  border: 1px solid #474c47;
  background: #101211;
}

.holding-wallet {
  padding: 8px 10px;
}

.holding-wallet code {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.holding-wallet-value {
  display: block;
  margin-top: 4px;
  color: var(--lime);
}

.holding-token-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px 13px;
  margin-top: 7px;
}

.holding-token-grid span {
  color: var(--ink);
  font-size: 10px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.holding-wallet .holding-label,
.holding-wallet-value {
  font-size: 10px;
}

.holding-token-grid b {
  color: #dfe4d9;
}

.wallet-asset-list {
  display: grid;
  gap: 7px;
  margin-top: 7px;
}

.wallet-asset {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 50px;
  color: inherit;
  text-decoration: none;
}

.wallet-asset img {
  width: 42px;
  height: 42px;
  border: 1px solid #4b5146;
  background: #111312;
  object-fit: cover;
}

.wallet-asset:hover {
  border-color: var(--lime);
  text-decoration: none;
}

.wallet-asset.is-card {
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 78px;
}

.wallet-asset.is-card img {
  width: 54px;
  height: 74px;
  image-rendering: auto;
}

.compact-nft-list {
  gap: 5px;
}

.compact-nft-list .wallet-asset.is-card {
  grid-template-columns: 36px minmax(0, 1fr);
  min-height: 42px;
}

.compact-nft-list .wallet-asset.is-card img {
  width: 36px;
  height: 36px;
}

.wallet-asset span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.wallet-asset strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
}

.wallet-asset small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.holding-claimables {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 9px 12px;
  text-align: center;
}

.holding-claimables strong {
  color: var(--ink);
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1;
}

.holding-claimables span {
  max-width: 160px;
  color: #848a83;
  line-height: 1.35;
}

.holding-claimables small {
  max-width: 170px;
  color: #a8aea7;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.holding-claimables.is-empty strong,
.holding-claimables.is-empty small {
  color: #838a83;
}

.wallet-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 9px 10px;
  border-bottom: 1px solid #353933;
  background: #101211;
}

.wallet-result-head code {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 11px;
}

.wallet-result-head span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid #2f342e;
}

.portfolio-chip {
  display: grid;
  gap: 3px;
  min-width: 92px;
  border: 1px solid #454b41;
  background: #0f1110;
  padding: 6px 7px;
}

.portfolio-chip strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.15;
}

.broker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 7px;
  padding: 8px;
}

.broker-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 9px;
  min-height: 94px;
  border: 1px solid #454b41;
  background: #0f1110;
  padding: 8px;
}

.broker-card.is-active {
  border-color: var(--lime);
  box-shadow: inset 4px 0 0 var(--lime);
}

.broker-card img {
  width: 56px;
  height: 56px;
  border: 1px solid #4b5146;
  background: #111312;
  image-rendering: pixelated;
  object-fit: cover;
}

.broker-card-body {
  min-width: 0;
}

.broker-card h3 {
  overflow-wrap: anywhere;
  color: var(--ink);
}

.broker-status {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  margin-top: 6px;
  padding: 0 7px;
  border: 1px solid #4e5648;
  background: #151817;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.broker-status.is-active {
  border-color: var(--lime);
  color: var(--lime);
}

.broker-status.is-error {
  border-color: var(--red);
  color: #ffb2aa;
}

.broker-meta {
  display: grid;
  gap: 4px;
  margin-top: 7px;
}

.broker-meta div {
  display: grid;
  gap: 1px;
}

.broker-meta code,
.broker-meta strong {
  overflow-wrap: anywhere;
  color: #dfe4d9;
  font-size: 10px;
}

.empty-box,
.placeholder-panel {
  border: 1px solid #454b41;
  background: #101211;
  padding: 10px;
  color: #b9beb4;
  font-size: 12px;
  line-height: 1.45;
}

.placeholder-panel {
  display: grid;
  gap: 6px;
  margin-top: 9px;
}

.placeholder-panel strong {
  color: var(--cyan);
  font-size: 14px;
  text-transform: uppercase;
}

.warning-line {
  margin: 0;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 155, 24, 0.4);
  color: #ffd69a;
  font-size: 11px;
  line-height: 1.4;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: min(410px, calc(100vw - 36px));
  border: 1px solid var(--cyan);
  background: #101210;
  color: var(--cyan);
  padding: 13px 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .checker-workbench,
  .wallet-column,
  .holdings-panel-head,
  .holding-row,
  .holding-row.has-claimables {
    grid-template-columns: 1fr;
  }

  .holdings-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .holding-wallet {
    border: 1px solid #474c47;
  }

  .holding-claimables {
    justify-items: start;
    text-align: left;
  }

  .holding-row::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .side-rail {
    display: none;
  }

  .concept-banner {
    align-items: stretch;
    flex-direction: column;
    margin-left: 0;
    padding: 10px 12px;
  }

  .top-shell {
    margin-left: 0;
    padding-inline: 12px;
  }

  .top-action {
    position: static;
    margin-top: 8px;
  }

  .wallet-shell {
    width: min(100% - 20px, 1160px);
    margin: 10px auto 34px;
  }

  .headline-box,
  .project-column,
  .wallet-column,
  .project-panel {
    padding: 10px;
  }

  .summary-grid,
  .wallet-result-head {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-panel-head,
  .compact-head.split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .summary-grid,
  .wallet-result-head {
    grid-template-columns: 1fr;
  }

  .project-toggle {
    grid-template-columns: 38px minmax(0, 1fr) 22px;
  }

  .project-thumb {
    width: 38px;
    height: 38px;
  }
}
