/* === Token Header === */
#token-header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  padding: 22px 24px;
  gap: 20px;
  color: white;
  font-size: 13px;
  margin-top: 0;
  background: #111722;
  border: 1px solid #293244;
  border-radius: 8px 8px 0 0;
}

.vote-sentiment {
  grid-column: 1 / -1;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(63, 74, 91, 0.58);
}

.vote-sentiment__labels {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 25px;
  margin-bottom: 4px;
  font-size: 13px;
}

.vote-sentiment__labels > span { display: inline-flex; align-items: center; gap: 6px; }
.vote-sentiment__down { justify-self: start; color: #f29a9f; }
.vote-sentiment__neutral { justify-self: center; color: #aeb7c5; }
.vote-sentiment__neutral > span { display: inline-block; transform: rotate(90deg); filter: grayscale(0.35); }
.vote-sentiment__up { justify-self: end; color: #79dda5; }
.vote-sentiment__labels strong { color: inherit; font-size: 11px; }

.vote-sentiment__track {
  position: relative;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px;
  background: linear-gradient(90deg, #b9424c 0%, #d9836e 25%, #7f8794 50%, #62ad83 75%, #25a765 100%);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.45);
}

.vote-sentiment__marker {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #f5f7fb;
  border-radius: 50%;
  background: #111722;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.48);
  transform: translate(-50%, -50%);
  transition: left 0.35s ease;
}

.trade-sentiment {
  margin-top: 0;
  padding: 10px 16px 12px;
  border: 1px solid #2b3443;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #171b23;
}

.trade-sentiment__labels { grid-template-columns: 1fr 1fr; }
.trade-sentiment .vote-sentiment__down strong { color: #f29a9f; }
.trade-sentiment .vote-sentiment__up strong { color: #79dda5; }

.token-logo-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  align-self: start;
}

.token-logo-wrapper.small {
  width: 32px;
  height: 32px;
}

.token-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #333;
}

.chain-overlay {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: black;
  border: 1px solid #333;
}

.token-main-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 28px;
  min-width: 0;
}

.token-identity-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.token-symbol-name {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.token-title-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  white-space: nowrap;
}

.token-favorite-slot {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-left: 14px;
  border-left: 1px solid #3a465c;
}

.token-favorite-slot .favorite-icon {
  margin: 0;
}

.token-wallet-import-slot {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-left: 14px;
  border-left: 1px solid #3a465c;
}

.token-wallet-import {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.token-wallet-import img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.token-wallet-import:hover img { transform: scale(1.08); }
.token-wallet-import.is-busy { opacity: 0.55; cursor: wait; }
.token-wallet-import.is-success img { filter: drop-shadow(0 0 5px rgba(82, 211, 140, 0.9)); }

.token-header-votes {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
}

.token-header-votes button {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  filter: grayscale(0.25);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.16s ease, transform 0.16s ease, filter 0.16s ease;
}

.token-header-votes button:hover,
.token-header-votes button.is-voted { transform: scale(1.12); filter: none; }
.token-header-votes button:disabled { opacity: 0.45; cursor: wait; }
.token-header-votes--mobile { display: none; }
.token-trade-actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.token-trade-actions .token-header-votes { margin-top: 0; }
.token-trade-actions .token-quick-buy { margin-top: 0; }
.token-trade-actions .token-header-votes { margin-left: auto; }
.vote-confirmation { max-width: 0; overflow: hidden; opacity: 0; color: #72d49c; font-size: 11px; white-space: nowrap; transition: max-width 0.2s ease, opacity 0.2s ease; }
.vote-confirmation.is-visible { max-width: 150px; opacity: 1; }

.token-symbol {
  margin: 0;
  font-size: 24px;
  font-weight: 750;
}

.token-name {
  font-size: 14px;
  color: #aeb8c8;
  line-height: 1.2;
}

.token-trending-rank {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 1px solid #3a465c;
  border-radius: 0;
  background: transparent;
  color: #ffd36a;
  font-size: 16px;
  line-height: 1;
}

.token-trending-rank.is-hidden,
.token-trending-rank[hidden] {
  display: none;
}

.token-trending-rank strong {
  color: #fff;
  font-size: 16px;
  font-weight: 750;
}

.token-trending-flame {
  font-size: 17px;
}

.liquidity-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.liquidity-lock-badge img,
.liquidity-burn-status img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.liquidity-lock-badge--locked {
  color: #86efac;
}

.liquidity-lock-badge--open {
  color: #fca5a5;
}

.liquidity-lock-badge--unknown {
  color: #aeb8c8;
}

.liquidity-lock-details {
  position: relative;
  min-width: 0;
}

.liquidity-lock-details > summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
}

.liquidity-lock-details > summary::-webkit-details-marker { display: none; }

.liquidity-lock-details__chevron {
  width: 6px;
  height: 6px;
  border-right: 1px solid #86efac;
  border-bottom: 1px solid #86efac;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.liquidity-lock-details[open] .liquidity-lock-details__chevron { transform: rotate(225deg); }

.liquidity-lock-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  width: min(330px, calc(100vw - 32px));
  padding: 7px;
  border: 1px solid #334155;
  border-radius: 6px;
  background: #111822;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.liquidity-lock-entry {
  display: grid;
  gap: 4px;
  padding: 7px 8px;
  border-bottom: 1px solid #293244;
}

.liquidity-lock-entry:last-child { border-bottom: 0; }
.liquidity-lock-entry > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.liquidity-lock-entry strong { color: #86efac; font-size: 12px; }
.liquidity-lock-entry span { color: #e4e9f0; font-size: 11px; }
.liquidity-lock-entry small { color: #8793a5; font-size: 10px; }

.liquidity-burn-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
  color: #aeb8c8;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.liquidity-burn-status--burned { color: #86efac; }
.liquidity-burn-status--not-burned { color: #fca5a5; }
.liquidity-burn-status--not-burned img { filter: grayscale(1); opacity: 0.55; }
.liquidity-burn-status--unknown { color: #778397; }

.token-market-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 28px;
  grid-column: 2;
  grid-row: 1;
  text-align: right;
}

.token-health-meter {
  width: 224px;
  margin: 0 0 10px auto;
}

.token-health-meter__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  color: #8c98a9;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.token-health-meter__heading strong {
  color: #edf2f7;
  font-size: 11px;
  font-weight: 800;
  text-transform: none;
}

.token-health-meter__track {
  position: relative;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: linear-gradient(90deg, #e34b58 0%, #f29d49 38%, #e2c94d 53%, #79c764 72%, #2fcf8d 100%);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.token-health-meter__marker {
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #f7f9fc;
  border-radius: 50%;
  background: #141b26;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  transition: left 500ms ease;
}

.token-market-label {
  display: block;
  margin-bottom: 3px;
  color: #778397;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.token-price {
  font-weight: 700;
  font-size: 24px;
  color: #f5f7fb;
}

.token-wallet-balance {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 5px;
  color: #7f8b9b;
  font-size: 11px;
  line-height: 1.3;
}

.token-wallet-balance strong {
  color: #c7d0dc;
  font-weight: 700;
}

.token-wallet-balance.hidden { display: none; }
.token-stat-live-price { color: #f5f7fb; }

.token-price--flash-up { animation: token-price-up 900ms ease-out; }
.token-price--flash-down { animation: token-price-down 900ms ease-out; }

@keyframes token-price-up {
  0%, 45% { color: #63e6a3; }
  100% { color: #f5f7fb; }
}

@keyframes token-price-down {
  0%, 45% { color: #ff8f9c; }
  100% { color: #f5f7fb; }
}

.token-change {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
}

.token-change--positive { color: #55d995; background: rgba(22, 199, 132, 0.12); }
.token-change--negative { color: #ff7c84; background: rgba(234, 57, 67, 0.12); }

/* === Header socials === */
.token-header-socials {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  max-width: 100%;
  min-height: 24px;
  margin-top: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.token-header-socials::-webkit-scrollbar { display: none; }

.token-social-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.token-header-socials img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #1a1a1a;
  box-shadow: 0 0 5px rgba(160, 160, 160, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.token-social-link--active img {
  box-shadow: 0 0 7px rgba(200, 200, 200, 0.72);
}

.token-social-link--active img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(200, 200, 200, 0.9);
}

.token-social-link--inactive {
  cursor: default;
  opacity: 0.24;
  filter: grayscale(1) saturate(0.15);
  pointer-events: none;
}

.token-social-link--inactive img {
  box-shadow: none;
}

.token-social-share-divider {
  width: 1px;
  height: 18px;
  margin: 0 3px;
  flex: 0 0 auto;
  background: #3a4556;
}

.token-social-share {
  position: relative;
}

.token-social-share::after {
  content: "+";
  position: absolute;
  right: -3px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #58d69c;
  color: #07110d;
  font: 800 9px/10px Arial, sans-serif;
  text-align: center;
}

/* === Update Button === */
.token-update-btn {
  margin: 0;
  padding: 6px 12px;
  background-color: #1e1e1e;
  border: none;
  color: #ccc;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 0 5px rgba(100, 100, 100, 0.3);
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.token-update-btn del { color: #8d929b; }
.token-update-btn strong { color: #fff; }
.token-update-btn__discount { color: #53d98c !important; }

.token-update-btn:hover {
  background-color: #292929;
  color: white;
  box-shadow: 0 0 10px rgba(180, 180, 180, 0.5);
}

.token-section {
  margin-top: 16px;
  background: #121212;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #2a2a2a;
}

.token-section.token-section--header {
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.token-section h2 {
  margin: 0 0 12px 0;
  color: #fff;
  font-size: 16px;
}

.token-contract-row {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid #293244;
  border-top: 0;
  background: #0e131c;
  border-radius: 0 0 8px 8px;
  color: #bbb;
  font-size: 13px;
  flex-wrap: wrap;
}

.token-contract-value { display: inline-flex; align-items: center; gap: 9px; min-width: 0; min-height: 26px; }
.token-market-identifiers { display: flex; align-items: center; gap: 18px; min-width: 0; }
.token-pair-value { padding-left: 18px; border-left: 1px solid #293244; }
.token-pair-value > .liquidity-lock-badge,
.token-pair-value > .liquidity-lock-details,
.token-pair-value > .liquidity-burn-status {
  margin-left: 9px;
  padding-left: 18px;
  border-left: 1px solid #293244;
  font-size: 12px;
}
.token-pool-composition {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid #293244;
}
.token-pool-composition--desktop { flex: 0 0 100%; }
.token-pool-composition--pair-card { flex: none; }
.token-pool-composition--mobile { display: none; }
.token-pool-stat {
  min-width: 0;
  min-height: 0;
  padding: 3px 12px;
  border-right: 1px solid #293244;
  background: transparent;
  display: grid;
  align-content: center;
}
.token-pool-stat:first-child { padding-left: 0; }
.token-pool-stat:last-child { border-right: 0; padding-right: 0; }
.token-pool-stat__label {
  margin-bottom: 3px;
  color: #8793a5;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.token-pool-stat strong {
  color: #f5f7fb;
  font-size: 15px;
  font-weight: 700;
}
.token-pool-stat > span:last-child {
  max-width: 100%;
  margin-top: 2px;
  overflow: hidden;
  color: #aeb8c8;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.token-contract-label { color: #778397; font-size: 11px; font-weight: 700; text-transform: uppercase; }

.contract-short {
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}


.pair-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 340px));
  gap: 18px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: 24px auto;
}

.pair-card {
  min-width: 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.pair-card-red {
  background: linear-gradient(180deg, rgba(90, 32, 41, 0.92) 0%, rgba(55, 22, 29, 0.96) 100%);
  border-color: rgba(186, 90, 108, 0.4);
}

.pair-card-yellow {
  background: linear-gradient(180deg, rgba(92, 78, 28, 0.92) 0%, rgba(58, 47, 18, 0.96) 100%);
  border-color: rgba(194, 169, 79, 0.4);
}

.pair-card-violet {
  background: linear-gradient(180deg, rgba(67, 42, 93, 0.92) 0%, rgba(42, 26, 61, 0.96) 100%);
  border-color: rgba(167, 122, 214, 0.4);
}

.pair-card-green {
  background: linear-gradient(180deg, rgba(21, 77, 55, 0.92) 0%, rgba(17, 48, 36, 0.96) 100%);
  border-color: rgba(99, 194, 145, 0.4);
}

.pair-card__top,
.section-heading-with-chip,
.audit-check__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.pair-primary {
  color: #fff;
  font-weight: 600;
}

.pair-card__badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.liquidity-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.liquidity-chip--red {
  background: rgba(255, 138, 157, 0.18);
  border-color: rgba(255, 138, 157, 0.35);
}

.liquidity-chip--yellow {
  background: rgba(255, 218, 103, 0.18);
  border-color: rgba(255, 218, 103, 0.35);
}

.liquidity-chip--violet {
  background: rgba(207, 154, 255, 0.18);
  border-color: rgba(207, 154, 255, 0.35);
}

.liquidity-chip--green {
  background: rgba(113, 238, 171, 0.18);
  border-color: rgba(113, 238, 171, 0.35);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.status-chip--healthy,
.status-chip--pass,
.status-chip--ok,
.status-chip--very_low,
.status-chip--low {
  background: rgba(26, 127, 55, 0.18);
  border-color: rgba(26, 127, 55, 0.5);
  color: #70e59a;
}

.status-chip--warning,
.status-chip--warn,
.status-chip--medium {
  background: rgba(190, 128, 16, 0.18);
  border-color: rgba(190, 128, 16, 0.5);
  color: #ffd479;
}

.status-chip--risk,
.status-chip--high,
.status-chip--fail,
.status-chip--critical {
  background: rgba(180, 45, 45, 0.18);
  border-color: rgba(180, 45, 45, 0.5);
  color: #ff8f8f;
}

.status-chip--neutral,
.status-chip--unknown {
  background: rgba(140, 140, 140, 0.16);
  border-color: rgba(140, 140, 140, 0.45);
  color: #d3d3d3;
}

.pair-summary-line {
  margin-bottom: 12px;
  color: #9f9f9f;
  font-size: 13px;
}

.pair-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.pair-card__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pair-card__metric--wide {
  grid-column: 1 / -1;
}

.pair-card__label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pair-card__value {
  color: #fff;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.pair-card__value--up {
  color: #9df0bb;
}

.pair-card__value--down {
  color: #ffb0b0;
}

.pair-address-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.compact-address {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.audit-panel {
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #171c28;
}

.audit-panel:not([open]).audit-panel--healthy {
  border-color: rgba(74, 202, 135, 0.42);
  background: rgba(29, 112, 72, 0.28);
}

.audit-panel:not([open]).audit-panel--warning {
  border-color: rgba(224, 177, 66, 0.46);
  background: rgba(126, 91, 22, 0.3);
}

.audit-panel:not([open]).audit-panel--risk {
  border-color: rgba(225, 91, 99, 0.46);
  background: rgba(119, 39, 46, 0.3);
}

.audit-panel:not([open]) > .collapsible-summary {
  background: transparent;
}

.token-section--pairs:not([open]).pair-health--healthy {
  border-color: rgba(74, 202, 135, 0.42);
  background: rgba(29, 112, 72, 0.28);
}

.token-section--pairs:not([open]).pair-health--warning {
  border-color: rgba(224, 177, 66, 0.46);
  background: rgba(126, 91, 22, 0.3);
}

.token-section--pairs:not([open]).pair-health--risk {
  border-color: rgba(225, 91, 99, 0.46);
  background: rgba(119, 39, 46, 0.3);
}

.token-section--pairs:not([open]) > .collapsible-summary {
  background: transparent;
}

.collapsible-panel { padding: 0; overflow: hidden; }
.collapsible-summary { display: grid; grid-template-columns: minmax(0, 1fr) auto auto 18px; align-items: center; gap: 12px; padding: 16px 18px; cursor: pointer; list-style: none; background: #151b26; }
.collapsible-summary::-webkit-details-marker { display: none; }
.collapsible-summary h2 { margin: 0; }
.collapsible-summary__meta { color: #8f9bad; font-size: 12px; }
.collapsible-chevron { width: 8px; height: 8px; border-right: 2px solid #8793a5; border-bottom: 2px solid #8793a5; transform: rotate(45deg); transition: transform .2s ease; }
.collapsible-panel[open] .collapsible-chevron { transform: rotate(225deg); }
.collapsible-panel[open] .collapsible-summary { border-bottom: 1px solid #293244; }
.collapsible-content { padding: 18px; }

.audit-grid,
.last-updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.audit-checks {
  margin-top: 14px;
}

.audit-check {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #2b2b2b;
  background: #1e2432;
}

.audit-check__detail {
  margin-top: 8px;
  color: #b8b8b8;
  line-height: 1.5;
}

.audit-check__value {
  margin-top: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.audit-stat-box,
.update-stat-box {
  align-items: flex-start;
  text-align: left;
}

.value--small {
  font-size: 13px;
  line-height: 1.4;
}

.update-trending-rank { display: inline-flex; align-items: center; gap: 4px; color: #f3c94f; }
.update-stat-detail { margin-top: 5px; color: #8491a4; font-size: 11px; line-height: 1.35; }

.token-disclaimer {
  margin: 0;
  color: #d8c68a;
  line-height: 1.6;
}

.token-disclaimer--audit {
  margin-top: 14px;
}

/* === Stats === */
.token-stats-container,
.token-vote-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 24px;
  background: #121212;
  padding: 20px;
  border-radius: 12px;
}

.token-stat-box,
.token-vote-box {
  background: #1c1c1c;
  border-radius: 8px;
  padding: 12px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #2b2b2b;
}

.token-stat-box .label,
.token-vote-box .label {
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
}

.token-stat-box .value,
.token-vote-box .value {
  font-size: 15px;
  font-weight: 500;
}

/* === Chart === */
.chart-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.chart-header h2 {
  margin-bottom: 4px;
}

.chart-source-label {
  margin: 0;
  color: #8f98a8;
  font-size: 13px;
}

.chart-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.chart-source-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(107, 117, 139, 0.24);
  border-radius: 8px;
  background: rgba(12, 16, 24, 0.86);
}

.chart-source-switch button {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: #9aa5b8;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.chart-source-switch button.active,
.chart-source-switch button:hover {
  color: #f4f7fb;
  background: #202a3b;
}

.chart-alpha-badge {
  margin-left: 4px;
  padding: 2px 4px;
  border: 1px solid #8c7332;
  border-radius: 4px;
  color: #e5c465;
  font-size: 8px;
  text-transform: uppercase;
}

.chart-test-badge {
  margin-left: 4px;
  padding: 2px 4px;
  border: 1px solid #397a62;
  border-radius: 4px;
  color: #68d6a6;
  font-size: 8px;
  text-transform: uppercase;
}

.chart-tools {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(107, 117, 139, 0.24);
  border-radius: 8px;
  background: rgba(12, 16, 24, 0.86);
}

.chart-timeframe-menu {
  position: relative;
}

.chart-timeframe-menu summary {
  min-width: 52px;
  height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  color: #f4f7fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  box-sizing: border-box;
}

.chart-timeframe-menu summary::-webkit-details-marker { display: none; }
.chart-timeframe-menu summary::after { content: "\25BE"; margin-left: 7px; color: #7f8ba0; }
.chart-timeframe-menu[open] summary { background: #202a3b; }

.chart-timeframe-menu__popup {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  width: 152px;
  padding: 6px;
  border: 1px solid #344054;
  border-radius: 7px;
  background: #101722;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.chart-timeframe-menu__popup button {
  min-width: 0;
}

.chart-tools button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: #9aa5b8;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.chart-tools button:hover { color: #fff; background: #202a3b; }
.order-panel-toggle { min-width: 78px !important; padding: 0 10px; border-left: 1px solid #303b4d !important; }

.chart-tool-actions {
  display: inline-flex;
  gap: 4px;
}

.chart-wrapper {
  max-width: 100%;
  padding: 0;
  height: clamp(430px, 62vh, 640px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107, 117, 139, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 20, 30, 0.98), rgba(8, 12, 19, 0.98)),
    #0a0f18;
}

.chart-wrapper:fullscreen {
  width: 100vw;
  height: 100vh;
  border: 0;
  border-radius: 0;
  background: #0a0f18;
}

.chart-wrapper:fullscreen #priceChart { height: 100vh; }

.chart-ohlc-legend {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 14px;
  min-height: 18px;
  color: #9aa5b8;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  pointer-events: none;
}

.chart-market-caption {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 14px;
  color: #e7ecf4;
  font-size: 12px;
  font-weight: 750;
  pointer-events: none;
}

.chart-panel {
  width: 100%;
}
.chart-trading-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; align-items: stretch; }
.chart-trading-layout.is-order-open { grid-template-columns: minmax(0, 1fr) minmax(270px, 310px); }
.chart-panels { min-width: 0; }
.order-panel { min-width: 0; padding: 14px; border: 1px solid #2c3748; border-radius: 6px; background: #0d141e; display: flex; flex-direction: column; gap: 13px; }
.order-token-summary { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 10px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid #273244; }
.order-token-summary > img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #1c2634; }
.order-token-summary > div { display: grid; gap: 3px; min-width: 0; }.order-token-summary > div:last-child { grid-column: 1 / -1; grid-template-columns: auto 1fr; align-items: baseline; gap: 8px; color: #8f9bad; }
.order-balance-button { min-width: 0; padding: 0; border: 0; background: transparent; color: #e8edf5; overflow: hidden; text-align: left; text-overflow: ellipsis; cursor: pointer; }
.order-balance-button:hover { color: #f3c94f; }
.order-field { display: grid; gap: 6px; color: #909caf; font-size: 12px; }.order-field select, .order-field input { width: 100%; box-sizing: border-box; border: 1px solid #344154; border-radius: 5px; padding: 10px; background: #111c29; color: #fff; }
.order-token-picker { margin-top: -8px; }
.order-token-picker .swap-token-trigger { min-height: 46px; }
.order-token-picker .swap-token-popup { z-index: 30; }
.order-token-picker .swap-token-results { max-height: 210px; }
.order-quote-balance, .order-status { margin: -7px 0 0; min-height: 17px; color: #8996a8; font-size: 11px; }
.order-amount-range { display: grid; gap: 3px; margin-top: -7px; }
.order-amount-range input { width: 100%; accent-color: #d2a429; cursor: pointer; }
.order-amount-range > div { display: flex; justify-content: space-between; color: #778397; font-size: 10px; }
.order-amount-range strong { color: #d8b74e; }
.order-type-switch, .order-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }.order-type-switch button, .order-actions button { min-height: 38px; border: 1px solid #354155; border-radius: 5px; background: #151f2d; color: #dce3ed; font-weight: 700; cursor: pointer; }.order-type-switch button.active { border-color: #d2a429; color: #ffd65d; }.order-type-switch button:disabled { opacity: 0.35; cursor: not-allowed; }
#orderBuyButton { border-color: #339363; background: #1d754b; color: #fff; }#orderSellButton { border-color: #a9444a; background: #8d333a; color: #fff; }#orderBuyButton:hover { background: #238a59; }#orderSellButton:hover { background: #a13b43; }

.token-section--trades {
  padding: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.pool-trades-filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-x: auto;
  scrollbar-width: none;
}
.pool-trades-filters::-webkit-scrollbar { display: none; }
.pool-trades-filter { flex: 0 0 auto; min-height: 30px; border: 0; border-radius: 6px; padding: 6px 12px; background: #1e1e1e; color: #b8c0cc; box-shadow: 0 0 5px rgba(100, 100, 100, 0.3); font-size: 0.76rem; font-weight: 700; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; }
.pool-trades-filter:hover { background: #292929; color: #fff; box-shadow: 0 0 10px rgba(180, 180, 180, 0.35); }
.pool-trades-filter.active { background: #292929; color: #f2c94c; box-shadow: 0 0 8px rgba(210, 164, 41, 0.3); }
.pool-trades-filter:focus-visible { outline: 2px solid #d2a429; outline-offset: 2px; }

.pool-trades-viewport {
  max-height: 430px;
  overflow: auto;
}

.pool-trades-table { min-width: 1040px; }
.pool-trades-row {
  display: grid;
  grid-template-columns: 82px 62px minmax(105px, 1fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(90px, 0.8fr) minmax(132px, 1fr) minmax(105px, 0.9fr) 54px;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
}
.pool-trades-row--head { position: sticky; top: 0; z-index: 2; background: #111722; color: #7f8ba0; font-size: 0.7rem; text-transform: uppercase; }
.pool-trades-row--buy { background: rgba(58, 167, 105, 0.09); }
.pool-trades-row--sell { background: rgba(210, 70, 77, 0.09); }
.pool-trades-row--lp_add { background: rgba(220, 184, 54, 0.11); }
.pool-trades-row--lp_remove { background: rgba(224, 126, 50, 0.12); }
.pool-trades-row a { color: #a8b9ca; text-decoration: none; }
.pool-trades-row a:hover { color: #fff; }
.pool-trade-kind--buy { color: #65d49a; }
.pool-trade-kind--sell { color: #ef8e94; }
.pool-trade-kind--lp_add { color: #ead069; }
.pool-trade-kind--lp_remove { color: #efad68; }
.pool-trade-input { color: #e7c75f; }
.pool-trade-output { color: #b999f2; }
.pool-trade-address { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.pool-trade-address > span:first-child { overflow: hidden; text-overflow: ellipsis; }
.pool-trade-action { display: inline-flex; width: 17px; height: 17px; flex: 0 0 17px; align-items: center; justify-content: center; opacity: 0.72; cursor: pointer; }
.pool-trade-action:hover { opacity: 1; }.pool-trade-action img { width: 14px; height: 14px; object-fit: contain; }
.pool-trade-explorer { margin: 0 auto; }
.wallet-insight-trigger { display: inline-flex; max-width: 100%; min-width: 0; align-items: center; gap: 7px; border: 0; padding: 0; background: transparent; color: #a8b9ca; font: inherit; cursor: pointer; }
.wallet-insight-trigger:hover { color: #fff; }
.wallet-insight-trigger > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wallet-trade-count { display: inline-flex; min-width: 25px; height: 20px; padding: 0 6px; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid #344156; border-radius: 5px; background: #0d1521; color: #aebbd0; font-size: 10px; line-height: 1; }
.wallet-insight-dialog { width: min(920px, calc(100vw - 28px)); max-height: calc(100dvh - 28px); box-sizing: border-box; overflow: auto; border: 1px solid #344156; border-radius: 8px; padding: 0; background: #151e2b; color: #edf3fb; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68); }
.wallet-insight-dialog::backdrop { background: rgba(2, 6, 12, 0.76); backdrop-filter: blur(3px); }
.wallet-insight__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 17px 18px; border-bottom: 1px solid #344156; }
.wallet-insight__wallet-line, .wallet-insight__token, .wallet-insight__actions { display: flex; align-items: center; gap: 9px; }
.wallet-insight__wallet-line > span:not(.copy-icon-control):not(.wallet-trade-count) { color: #aebbd0; font-size: 12px; }
.wallet-insight__token { margin-top: 13px; }
.wallet-insight__token img { width: 25px; height: 25px; border-radius: 50%; object-fit: cover; }
.wallet-insight__token span { color: #9eabbe; font-size: 12px; }
.wallet-insight__actions { flex: 0 0 auto; }
.wallet-insight__icon, .wallet-insight__close { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border: 1px solid #344156; border-radius: 50%; background: #111925; color: #b8c4d5; cursor: pointer; }
.wallet-insight__icon img { width: 17px; height: 17px; object-fit: contain; }
.wallet-insight__close { font-size: 23px; line-height: 1; }
.wallet-insight__icon:hover, .wallet-insight__close:hover { border-color: #5c6c83; color: #fff; }
.wallet-insight__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 16px; }
.wallet-insight__panel { min-width: 0; border: 1px solid #344156; border-radius: 7px; padding: 12px; background: #0f1724; }
.wallet-insight__panel h3 { display: flex; justify-content: space-between; margin: 0 0 10px; color: #dfe7f2; font-size: 12px; text-transform: uppercase; }
.wallet-insight__panel--buy h3, .wallet-insight__panel--buy dd { color: #6de0a5; }
.wallet-insight__panel--sell h3, .wallet-insight__panel--sell dd { color: #f39aa0; }
.wallet-insight__panel dl { margin: 0; }
.wallet-insight__panel dl > div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.wallet-insight__panel dl > div:last-child { border-bottom: 0; }
.wallet-insight__panel dt { color: #9daabd; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.wallet-insight__panel dd { margin: 0; color: #edf3fb; font-size: 11px; font-weight: 700; text-align: right; overflow-wrap: anywhere; }
.pool-trades-sentinel,
.pool-trades-empty { margin: 0; padding: 14px 16px; color: #7f8ba0; text-align: center; font-size: 0.78rem; }

#klineChartPanel {
  position: relative;
  height: clamp(430px, 62vh, 640px);
  overflow: hidden;
  border: 1px solid rgba(107, 117, 139, 0.24);
  border-radius: 8px;
  background: #0a0f18;
}

#klineChart {
  width: 100%;
  height: 100%;
}

#klineChartPanel .chart-empty-state {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
}

.chart-embed-panel {
  height: clamp(430px, 62vh, 640px);
  overflow: hidden;
  border: 1px solid rgba(107, 117, 139, 0.24);
  border-radius: 8px;
  background: #0a0f18;
}

.chart-embed-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0a0f18;
}

#priceChart {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}

#priceChart.is-dragging {
  cursor: grabbing;
}

#priceChart.is-price-axis,
#priceChart.is-price-scaling {
  cursor: ns-resize;
}

#priceChart.is-pinching {
  cursor: zoom-in;
}

.chart-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1px dashed #334056;
  border-radius: 12px;
  color: #98a4b7;
  background: rgba(14, 18, 27, 0.5);
}

/* === Beschreibung === */
.token-description-full {
  color: #ccc;
  margin-top: 10px;
  font-size: 15px;
  padding: 10px 0;
  line-height: 1.5;
  max-width: 900px;
}

/* === Badge === */
.new-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  z-index: 10;
}
.favorite-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.favorite-icon:hover {
  transform: scale(1.2);
}
.token-quick-buy { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.token-quick-buy.hidden { display: none; }
.token-quick-buy button { border: 1px solid #46515f; border-radius: 5px; padding: 7px 10px; background: #1b2028; color: #8994a3; cursor: not-allowed; transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, opacity 140ms ease; }
.token-quick-buy button.is-affordable { border-color: #31b76a; background: #163d29; color: #8df0b3; cursor: pointer; }
.token-quick-buy button.is-affordable:hover { border-color: #65df96; background: #1b4b32; color: #c4f8d7; }
.token-quick-buy button:disabled { opacity: 0.42; }

.copy-confirm {
  color: #00cc66;
  font-weight: 600;
  margin-left: 6px;
}

.token-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.token-socials a[href="#"] {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 768px) {
  .wallet-insight__grid { grid-template-columns: 1fr; padding: 10px; }
  .wallet-insight__header { padding: 13px 12px; }
  .wallet-insight__token { flex-wrap: wrap; }
  .wallet-insight__token span:last-child { width: 100%; padding-left: 34px; }
  .chart-trading-layout.is-order-open { grid-template-columns: minmax(0, 1fr); }
  .order-panel { min-height: 420px; }
  .chart-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-controls,
  .chart-source-switch {
    width: 100%;
  }

  .chart-source-switch button {
    flex: 1;
  }

  #token-header {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    padding: 14px;
    margin-top: 12px;
    gap: 10px;
  }

  .vote-sentiment { padding-bottom: 9px; }
  .vote-sentiment__labels { min-height: 22px; font-size: 12px; }
  .vote-sentiment__track { height: 5px; }
  .vote-sentiment__marker { width: 10px; height: 10px; }

  .token-main-info {
    width: 100%;
    display: block;
  }

  .token-logo-wrapper { width: 46px; height: 46px; }

  .token-symbol-name {
    gap: 2px;
  }

  .token-title-topline {
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .token-title-topline::-webkit-scrollbar { display: none; }

  .token-favorite-slot {
    min-height: 30px;
    padding-left: 10px;
  }

  .token-wallet-import-slot {
    min-height: 30px;
    padding-left: 10px;
  }

  .token-trending-rank {
    min-height: 30px;
    padding-left: 10px;
  }

  .token-header-socials {
    max-width: 100%;
    min-height: 22px;
    margin-top: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .token-header-socials::-webkit-scrollbar { display: none; }

  .token-header-socials img {
    width: 20px;
    height: 20px;
  }

  .token-symbol {
    font-size: 18px;
  }

  .token-name {
    font-size: 12px;
    line-height: 1.2;
  }

  .token-market-row {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    align-items: end;
    gap: 10px;
    margin-top: 8px;
  }

  .token-health-meter {
    width: clamp(126px, 38vw, 146px);
    margin: 0 0 7px;
  }

  .token-health-meter__heading {
    gap: 6px;
    margin-bottom: 5px;
    font-size: 9px;
  }

  .token-health-meter__heading strong { font-size: 10px; }
  #tokenHealthStatus { display: none; }
  .token-health-meter__track { height: 6px; }
  .token-health-meter__marker { width: 11px; height: 11px; }

  .token-header-votes--desktop { display: none; }
  .token-header-votes--mobile {
    position: relative;
    display: flex;
    min-height: 30px;
    margin: 0 0 0 2px;
    align-items: center;
  }
  .token-header-votes--mobile .vote-confirmation {
    position: absolute;
    z-index: 3;
    top: 34px;
    right: 0;
    padding: 4px 7px;
    border-radius: 4px;
    background: #111722;
  }

  .token-wallet-balance { justify-content: flex-start; }

  .token-price,
  .token-change {
    margin-top: 0;
  }

  .token-update-btn {
    width: auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .token-contract-row { align-items: stretch; flex-direction: column; }
  .token-contract-value { width: 100%; }
  .token-contract-row .token-update-btn { width: 100%; }
  .collapsible-summary { grid-template-columns: minmax(0, 1fr) auto 16px; }
  .collapsible-summary__meta { display: none; }

  .token-stats-container,
  .token-vote-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
    padding: 0;
    background: transparent;
  }

  .token-stat-box .value,
  .token-vote-box .value {
    font-size: 16px;
  }

  .chart-wrapper {
    height: 460px;
  }

  .chart-embed-panel {
    height: 460px;
  }

  #klineChartPanel {
    height: 460px;
  }

  #priceChart {
    height: 100%;
  }

  .token-description-full {
    font-size: 14px;
    max-width: 100%;
    padding: 8px 0;
  }

  .token-section {
    margin-top: 12px;
    padding: 12px;
  }

  .token-section h2 {
    font-size: 15px;
  }

  .token-contract-row {
    width: 100%;
    justify-content: flex-start;
    min-height: 0;
    padding: 12px 14px;
    font-size: 12px;
    gap: 10px;
  }
  .token-market-identifiers { flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; }
  .token-pair-value {
    padding-top: 9px;
    padding-left: 0;
    border-top: 1px solid #293244;
    border-left: 0;
    flex-wrap: wrap;
  }

  .token-pool-composition--desktop { display: none; }
  .token-pool-composition--mobile {
    display: grid;
    order: 2;
    padding-top: 9px;
    gap: 5px;
  }
  .token-pair-value > .liquidity-lock-badge { order: 3; }
  .token-pair-value > .liquidity-lock-details { order: 3; }
  .token-pair-value > .liquidity-burn-status { order: 4; }
  .token-pair-value > .liquidity-lock-details { width: 100%; }
  .token-pair-value .liquidity-lock-list {
    position: static;
    width: 100%;
    box-sizing: border-box;
    margin-top: 7px;
    box-shadow: none;
  }
  .token-pool-stat {
    min-width: 92px;
    min-height: 0;
    padding: 0 8px 0 0;
  }
  .token-pool-stat strong { font-size: 13px; }
  .token-pool-stat > span:last-child { font-size: 9px; }

  .token-pair-value > .liquidity-lock-badge,
  .token-pair-value > .liquidity-lock-details,
  .token-pair-value > .liquidity-burn-status {
    width: 100%;
    margin-left: 0;
    padding-top: 9px;
    padding-left: 0;
    border-top: 1px solid #293244;
    border-left: 0;
  }

  .compact-address,
  .contract-short,
  .pool-info,
  .token-description-full {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .token-socials {
    gap: 10px;
  }

  .token-socials img {
    width: 24px;
    height: 24px;
  }

  .pair-card {
    padding: 12px;
    gap: 6px;
  }

  .pair-card__grid {
    grid-template-columns: 1fr;
  }

  .status-chip {
    min-height: 24px;
    padding: 4px 8px;
  }

  .token-stat-box,
  .token-vote-box {
    align-items: flex-start;
    text-align: left;
    min-height: 58px;
    padding: 8px 10px;
  }

  .token-stat-box .label,
  .token-vote-box .label {
    margin-bottom: 3px;
  }
}

@media (max-width: 1000px) {
  .pair-card-grid {
    grid-template-columns: repeat(2, minmax(260px, 340px));
  }
}

@media (max-width: 680px) {
  .pair-card-grid {
    grid-template-columns: minmax(260px, 1fr);
  }
}

html[dir="rtl"] #token-header,
html[dir="rtl"] .token-contract-row,
html[dir="rtl"] .pair-card__top,
html[dir="rtl"] .pair-card__grid,
html[dir="rtl"] .pair-address-row,
html[dir="rtl"] .token-stats-container,
html[dir="rtl"] .token-vote-container {
  direction: rtl;
  text-align: right;
}
