:root {
  --nav: #405189;
  --nav-dark: #2f3d6a;
  --bg: #f3f3f9;
  --card: #fff;
  --border: #e9ebec;
  --text: #3f4650;
  --title: #212529;
  --muted: #747988;
  --green: #0ab39c;
  --blue: #299cdb;
  --amber: #f7b84b;
  --violet: #6559cc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 13px/1.45 Inter, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; }
button, input { font: inherit; }
.mobile-menu { display: none; }

.sidebar {
  position: fixed;
  z-index: 20;
  inset: 0 auto 0 0;
  width: 250px;
  padding: 0 14px 22px;
  background: linear-gradient(180deg, var(--nav), var(--nav-dark));
  color: #d7dcf0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 70px;
  padding: 0 12px;
  color: #fff;
  text-decoration: none;
}
.logo > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 7px;
  background: var(--green);
  font-weight: 800;
}
.logo b {
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.menu-label {
  margin: 18px 13px 9px;
  color: #95a0c6;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sidebar nav { display: grid; gap: 3px; }
.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  border-radius: 5px;
  color: #cdd3e7;
  font-size: 13px;
  text-decoration: none;
}
.sidebar nav a:hover,
.sidebar nav a.active {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.sidebar nav i {
  width: 18px;
  color: #aeb8db;
  font-size: 17px;
  font-style: normal;
  text-align: center;
}
.method-card {
  position: absolute;
  right: 14px;
  bottom: 22px;
  left: 14px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .09);
}
.method-card span { color: #fff; font-weight: 600; }
.method-card p { margin: 7px 0 10px; color: #bfc7df; font-size: 11px; }
.method-card a { color: #72e5d6; font-size: 11px; text-decoration: none; }

.workspace { min-width: 980px; margin-left: 250px; }
.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 28px;
  border-bottom: 1px solid #edf0f2;
  background: rgba(255, 255, 255, .97);
}
.site-search {
  display: flex;
  align-items: center;
  width: 310px;
  height: 37px;
  padding: 0 12px;
  border-radius: 5px;
  background: #f3f3f9;
}
.site-search span,
.table-tools label span {
  margin-right: 8px;
  color: var(--muted);
  font-size: 18px;
}
.site-search input,
.table-tools input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}
.top-actions { display: flex; align-items: center; gap: 16px; }
.top-actions > span { color: var(--muted); font-size: 11px; }
.top-actions > a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f3f9;
  color: var(--muted);
  text-decoration: none;
}
.avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dff5f1;
  color: #087d6d;
  font-weight: 700;
}

.content { width: 100%; min-height: calc(100vh - 230px); padding: 24px 28px 38px; }
.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}
.page-heading p {
  margin: 0 0 7px;
  color: #8b8ea0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
}
.page-heading h1 { margin: 0 0 3px; color: var(--title); font-size: 22px; }
.page-heading div > span { color: var(--muted); font-size: 12px; }
.primary {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.primary:hover { background: #099a87; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}
.metrics article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--card);
  box-shadow: 0 1px 2px rgba(56, 65, 74, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.metrics span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.metrics strong { display: block; margin: 8px 0 3px; color: var(--title); font-size: 20px; }
.metrics small { color: var(--muted); font-size: 10px; }
.metrics i {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
}
.mint { background: linear-gradient(135deg, #2ad4bc, #0aa68f); color: #fff; }
.blue { background: linear-gradient(135deg, #54b9ef, #248dca); color: #fff; }
.amber { background: linear-gradient(135deg, #ffc968, #f3a92e); color: #fff; }
.violet { background: linear-gradient(135deg, #8d7ee7, #5e52c6); color: #fff; }

.rating-card,
.info-grid article {
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--card);
  box-shadow: 0 1px 2px rgba(56, 65, 74, .04);
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.card-head h2,
.info-grid h2 { margin: 0; color: var(--title); font-size: 15px; }
.card-head p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.filters { display: flex; gap: 4px; }
.filters button {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: #6a6e76;
  cursor: pointer;
}
.filters button.selected { border-color: var(--green); background: var(--green); color: #fff; }
.table-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.table-tools label {
  display: flex;
  align-items: center;
  width: 250px;
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.result-count { color: var(--muted); font-size: 10px; }
.result-count b { color: var(--title); }
.table-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: #bdc2cd #eef0f4;
}
table { width: 100%; min-width: 1710px; border-collapse: collapse; }
th:nth-child(1),
td:nth-child(1) { width: 34px; padding-right: 7px; }
th:nth-child(2),
td:nth-child(2) { width: 168px; }
th:nth-child(3),
td:nth-child(3) { width: 112px; }
th:nth-child(4),
td:nth-child(4),
th:nth-child(5),
td:nth-child(5),
th:nth-child(6),
td:nth-child(6) { width: 142px; }
th {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #f8f9fa;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}
td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  white-space: nowrap;
}
tbody tr:hover { background: #f8fbfb; }
tbody tr[hidden] { display: none; }
.exchange { display: flex; align-items: center; gap: 9px; }
.coin {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
}
.logo-coin { position: relative; overflow: hidden; background: #fff !important; border: 1px solid var(--border); }
.logo-coin img { position: relative; z-index: 2; width: 24px; height: 24px; object-fit: contain; }
.logo-coin b { display: none; }
.logo-coin.logo-error { background: var(--logo-color) !important; }
.logo-coin.logo-error img { display: none; }
.logo-coin.logo-error b { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; }
.exchange span { display: grid; }
.exchange strong,
td > strong,
.rank { color: var(--title); }
.market-share { color: #0a9b87; font-size: .88em; font-style: normal; font-weight: 700; }
.ecosystem-cell { display: grid; gap: 2px; min-width: 112px; cursor: help; }
.ecosystem-cell b { color: var(--title); font-size: 10px; }
.ecosystem-cell small { color: var(--muted); font-size: 8px; }
.token-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 5px 8px;
  border-radius: 12px;
  background: #eeeafd;
  color: #5e52c6;
  font-size: 9px;
  font-weight: 750;
  cursor: help;
}
.token-badge.token-none { background: #eff1f4; color: #8b8f98; font-weight: 600; }
.exchange small { color: var(--muted); font-size: 9px; }
.purpose,
.type-tag {
  display: inline-block;
  margin-right: 3px;
  padding: 4px 7px;
  border-radius: 3px;
  background: #eff1f6;
  color: #666c7a;
  font-size: 9px;
  font-weight: 600;
}
.type-tag { background: #ddf5f1; color: #078775; }
.more { color: var(--green); font-size: 10px; font-weight: 600; text-decoration: none; }
.soon { color: var(--muted); font-size: 9px; }
.row-actions { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.exchange-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}
.pending-link {
  cursor: default;
  opacity: .72;
  filter: saturate(.7);
}
.ru-access { display: grid; gap: 4px; min-width: 112px; cursor: help; }
.ru-access > span { display: flex; gap: 3px; }
.ru-access i { width: 14px; height: 5px; border-radius: 4px; background: #e1e4ea; }
.ru-access i.filled { background: #e15252; }
.ru-access.level-2 i.filled,
.ru-access.level-3 i.filled { background: #f3aa2c; }
.ru-access.level-4 i.filled,
.ru-access.level-5 i.filled { background: #0ab39c; }
.ru-access b { color: #5d626c; font-size: 9px; font-weight: 650; }
.ru-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px 13px;
  border-top: 1px solid var(--border);
  color: #666c76;
  font-size: 9px;
}
.ru-legend span { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.ru-legend i { width: 16px; height: 6px; border-radius: 4px; }
.ru-legend .high { background: #0ab39c; }
.ru-legend .medium { background: #f3aa2c; }
.ru-legend .low { background: #e15252; }
.ru-legend small { margin-left: auto; color: var(--muted); }
.ecosystem-note {
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  color: #666c76;
  font-size: 9px;
}
.ecosystem-note b { color: var(--title); }
.table-note {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  color: var(--muted);
  font-size: 10px;
}
.table-note b { color: #656972; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.info-grid article { padding: 20px; }
.info-grid .eyebrow {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}
.info-grid h2 { margin-top: 7px; }
.info-grid p { min-height: 58px; margin: 9px 0 13px; color: #6d7179; font-size: 11px; }
.info-grid a { color: var(--green); font-size: 11px; font-weight: 600; text-decoration: none; }

footer {
  display: grid;
  grid-template-columns: 1.2fr .6fr 1fr;
  gap: 60px;
  padding: 28px;
  border-top: 1px solid #dfe2e9;
  background: #fff;
}
footer > div:first-child { display: grid; grid-template-columns: 38px 1fr; gap: 12px; }
.footer-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
footer b { display: block; margin-bottom: 7px; color: var(--title); font-size: 11px; }
footer p { margin: 0; color: var(--muted); font-size: 10px; }
footer > div:nth-child(2) { display: grid; align-content: start; gap: 4px; }
footer > div:nth-child(2) a { color: #6c7078; font-size: 10px; text-decoration: none; }

@media (hover: hover) and (pointer: fine) {
  .metrics article:hover,
  .info-grid article:hover,
  .review-card:hover {
    z-index: 2;
    border-color: #dde1e8;
    box-shadow: 0 12px 26px rgba(56, 65, 74, .14);
    transform: translateY(-5px);
  }
}

/* Exchange review */
.review-content { padding-bottom: 44px; }
.crumbs {
  margin: 0 0 12px;
  color: #8b8ea0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
}
.exchange-hero,
.anchor-nav,
.review-card {
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--card);
  box-shadow: 0 1px 2px rgba(56, 65, 74, .04);
}
.exchange-hero {
  display: grid;
  grid-template-columns: minmax(470px, 1.35fr) minmax(260px, .58fr) minmax(150px, .34fr) minmax(210px, .44fr);
  align-items: center;
  gap: 24px;
  padding: 24px;
}
.exchange-title { display: flex; align-items: center; gap: 18px; }
.coin.large { flex: 0 0 auto; width: 58px; height: 58px; font-size: 23px; }
.exchange-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #f0d37a;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff8dc, #f6bd25);
  box-shadow: 0 8px 20px rgba(242, 186, 42, .2);
}
.exchange-logo img { width: 44px; height: 44px; image-rendering: auto; }
.bybit-logo {
  border-color: #ffd27a;
  background: linear-gradient(145deg, #fff9e8, #f7a600);
  box-shadow: 0 8px 20px rgba(247, 166, 0, .2);
}
.bybit-logo img { object-fit: contain; }
.bitget-logo {
  border-color: #7ee3dc;
  background: linear-gradient(145deg, #eafffd, #16b6ac);
  box-shadow: 0 8px 20px rgba(22, 182, 172, .2);
}
.bitget-logo img { object-fit: contain; }
.hero-labels { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; }
.hero-labels .status {
  padding: 4px 7px;
  border-radius: 3px;
  background: #ddf5f1;
  color: #078775;
  font-weight: 600;
}
.exchange-title h1 { margin: 7px 0 3px; color: var(--title); font-size: 24px; }
.exchange-title p { max-width: 760px; margin: 0; color: var(--muted); }
.hero-score { padding: 0 24px; border-right: 1px solid var(--border); border-left: 1px solid var(--border); }
.hero-score > span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.hero-score strong { display: block; margin: 4px 0; color: var(--title); font-size: 26px; }
.hero-score small { color: var(--muted); font-size: 11px; }
.hero-cta {
  display: grid;
  align-content: center;
  gap: 7px;
}
.hero-cta-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-exchange-button {
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 13px;
  border: 1px solid #efd57b;
  border-radius: 6px;
  background: linear-gradient(135deg, #fff9dd, #fff);
  box-shadow: 0 7px 18px rgba(194, 146, 16, .12);
  color: var(--title);
}
.hero-exchange-button img { width: 26px; height: 26px; }
.hero-exchange-button > span { display: grid; gap: 3px; }
.hero-exchange-button b { font-size: 11px; }
.hero-exchange-button small { color: #8b7b4c; font-size: 8px; }
.hero-exchange-button i { color: #d59b00; font-size: 18px; font-style: normal; }
.bybit-hero-cta .hero-exchange-button {
  border-color: #ffd27a;
  background: linear-gradient(135deg, #fff5d7, #fff);
  box-shadow: 0 7px 18px rgba(247, 166, 0, .14);
}
.bitget-hero-cta .hero-exchange-button {
  border-color: #8adfd9;
  background: linear-gradient(135deg, #e7fbf9, #fff);
  box-shadow: 0 7px 18px rgba(22, 182, 172, .14);
}
.bitget-hero-cta .hero-exchange-button small { color: #4b827e; }
.bitget-hero-cta .hero-exchange-button i { color: #0fa89e; }
.score-track { height: 5px; border-radius: 4px; background: #e9ecef; }
.score-track i { display: block; width: 90%; height: 100%; border-radius: inherit; background: var(--green); }
.hero-actions { display: grid; gap: 7px; }
.hero-actions .primary,
.hero-actions .secondary { width: 100%; text-align: center; }
.hero-actions .pending-link { display: inline-block; padding: 10px 13px; border-radius: 4px; }
.secondary {
  display: inline-block;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: #666b75;
  text-decoration: none;
}
.hero-actions small { color: var(--muted); font-size: 9px; text-align: center; }
.review-market-strip {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--card);
  box-shadow: 0 1px 2px rgba(56, 65, 74, .04);
}
.review-market-strip-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: #bdc2cd #eef0f4;
}
.review-market-strip-head,
.review-market-strip-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.15fr) 70px minmax(135px, .9fr) minmax(112px, .75fr) minmax(112px, .75fr) 68px 68px 68px minmax(130px, .85fr) minmax(120px, .8fr) 72px minmax(125px, .85fr);
  align-items: center;
  min-width: 1510px;
  padding: 0 18px;
}
.review-market-strip-head {
  min-height: 35px;
  border-bottom: 1px solid var(--border);
  background: #f8f9fb;
}
.review-market-strip-head > div {
  padding: 0 10px;
  color: #9296a0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.15;
  text-transform: uppercase;
}
.review-market-strip-head > div:first-child { padding-left: 0; }
.review-market-strip-row { min-height: 72px; }
.review-market-strip-row > div {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-left: 1px solid #f0f1f4;
  color: #5f646c;
  font-size: 11px;
  white-space: nowrap;
}
.review-market-strip-row > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.review-market-strip .strip-purposes { display: block; }
.review-market-strip .exchange { gap: 9px; }
.review-market-strip .ecosystem-cell,
.review-market-strip .ru-access { display: grid; }
.anchor-nav {
  position: sticky;
  z-index: 8;
  top: 70px;
  display: flex;
  gap: 4px;
  margin: 16px 0;
  padding: 0 14px;
  overflow-x: auto;
}
.anchor-nav a {
  flex: 0 0 auto;
  padding: 13px 11px;
  border-bottom: 2px solid transparent;
  color: #6b6f78;
  font-size: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.anchor-nav a:hover,
.anchor-nav a.active { border-color: var(--green); color: var(--green); }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-split-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  padding: 20px;
  scroll-margin-top: 126px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.review-card.wide { grid-column: 1 / -1; }
.review-card.summary {
  display: grid;
  grid-template-columns: 44px minmax(340px, .8fr) minmax(580px, 1.25fr);
  gap: 16px;
  align-items: start;
}
.section-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 14px;
  font-style: normal;
}
.review-card .kicker {
  color: #9699a7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}
.review-card h2 { margin: 4px 0 9px; color: var(--title); font-size: 16px; }
.review-card h3 { margin: 16px 0 7px; color: var(--title); font-size: 12px; }
.review-card p { margin: 0 0 10px; color: #646972; font-size: 12px; line-height: 1.65; }
.review-card p:last-child { margin-bottom: 0; }
.card-title { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.card-title > div:nth-child(2) { flex: 1; }
.card-title h2 { margin-bottom: 0; }
.status-pill {
  display: inline-block;
  padding: 4px 7px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}
.status-pill.warning { background: #fff3dc; color: #c4810d; }
.status-pill.info { background: #dff2fc; color: #238abb; }
.status-pill.success { background: #ddf5f1; color: #078775; }
.status-pill.danger { background: #fff0ed; color: #c94b35; }
.fact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: 4px;
}
.fact-list div { padding: 10px 13px; }
.fact-list div:not(:nth-child(3n)) { border-right: 1px solid var(--border); }
.fact-list div:nth-child(-n+9) { border-bottom: 1px solid var(--border); }
.fact-list span { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.fact-list b { display: block; margin-top: 3px; color: var(--title); font-size: 11px; }
.check-list,
.plain-list { display: grid; gap: 7px; margin: 14px 0; padding: 0; list-style: none; }
.check-list li,
.plain-list li { position: relative; padding-left: 18px; color: #5f646c; font-size: 11px; line-height: 1.55; }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--green); font-weight: 700; }
.plain-list li::before { position: absolute; left: 2px; content: "•"; color: var(--violet); font-weight: 700; }
.fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 15px 0;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.fee-grid div { padding: 10px 12px; }
.fee-grid div:nth-child(odd) { border-right: 1px solid var(--border); }
.fee-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
.fee-grid.extended div:nth-child(-n+4) { border-bottom: 1px solid var(--border); }
.fee-grid span { display: block; color: var(--muted); font-size: 9px; }
.fee-grid b { color: var(--title); font-size: 11px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}
.feature-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
}
.feature-grid i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ddf5f1;
  color: var(--green);
  font-style: normal;
}
.feature-grid span { display: grid; }
.feature-grid b { color: var(--title); font-size: 11px; }
.feature-grid small { color: var(--muted); font-size: 9px; }
.reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 14px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 5px;
}
.reserve-grid > div {
  min-height: 62px;
  padding: 11px 13px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reserve-grid > div:nth-child(3n) { border-right: 0; }
.reserve-grid > div:nth-last-child(-n+3) { border-bottom: 0; }
.reserve-grid span { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.reserve-grid b { display: block; margin-top: 5px; color: var(--title); font-size: 11px; line-height: 1.35; }
.notice {
  margin-top: 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--amber);
  background: #fff8eb;
  color: #7d632b;
  font-size: 10px;
  line-height: 1.55;
}
.danger-notice { border-color: #f06548; background: #fff5f2; color: #8d5146; }
.network-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 13px 0; }
.network-tags span {
  padding: 5px 8px;
  border-radius: 3px;
  background: #eff1f6;
  color: #5e6370;
  font-size: 9px;
  font-weight: 600;
}
.chain-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 15px 0;
}
.chain-overview > div {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: linear-gradient(145deg, #fff, #f8f7ff);
}
.chain-overview .chain-level {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 12px;
  background: #e8e4ff;
  color: #5e52c6;
  font-size: 9px;
  font-weight: 750;
}
.chain-overview .token-level { background: #fff0d2; color: #b7780c; }
.chain-overview b { color: var(--title); font-size: 13px; }
.chain-overview small { color: #646972; font-size: 10px; line-height: 1.5; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros-cons > div { padding: 14px; border-radius: 4px; background: #f8f9fb; }
.pros-cons h3 { margin-top: 0; }
.russia-card { border-left: 3px solid #299cdb; }
.russia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.history-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(600px, 1.5fr); gap: 18px; }
.russia-grid > div,
.history-intro {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #f8f9fb;
}
.russia-grid h3 { margin-top: 0; }
.news-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.news-grid a {
  display: flex;
  min-height: 116px;
  padding: 13px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #f8f9fb;
  color: var(--title);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.news-grid time { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.news-grid b { margin: 9px 0; font-size: 11px; line-height: 1.45; }
.news-grid span { margin-top: auto; color: var(--green); font-size: 9px; font-weight: 600; }
.guides-card {
  background: linear-gradient(145deg, #fff 0%, #fff 72%, #f3f8ff 100%);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.guides-grid a {
  display: flex;
  min-height: 105px;
  padding: 13px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #f8f9fb;
  color: var(--title);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.guides-grid a > span {
  align-self: flex-start;
  padding: 4px 7px;
  border-radius: 3px;
  background: #dff2fc;
  color: #238abb;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.guides-grid b { margin: 9px 0; font-size: 11px; line-height: 1.4; }
.guides-grid small { margin-top: auto; color: var(--green); font-size: 9px; font-weight: 600; }
.empty-collection {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 108px;
  padding: 24px;
  border: 1px dashed #cfd5df;
  border-radius: 5px;
  background: #f8f9fb;
  text-align: center;
}
.empty-collection b { color: var(--title); font-size: 12px; }
.empty-collection p { max-width: 620px; margin: 0; color: var(--muted); font-size: 10px; }
.history-card {
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff 58%, #f3f1ff 100%);
}
.history-intro strong { color: var(--title); font-size: 16px; line-height: 1.3; }
.history-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.history-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 53px 1fr;
  gap: 10px;
  min-height: 76px;
  padding: 11px;
  border: 1px solid #e4e2f4;
  border-radius: 4px;
  background: rgba(255, 255, 255, .72);
}
.history-timeline time {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 53px;
  height: 25px;
  border-radius: 13px;
  background: var(--violet);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}
.history-timeline span { display: grid; gap: 3px; padding-top: 3px; }
.history-timeline b { color: var(--title); font-size: 10px; }
.history-timeline small { color: var(--muted); font-size: 9px; line-height: 1.45; }
.source-line { color: var(--muted); font-size: 10px; }
.source-line a { color: var(--green); font-weight: 600; }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:first-child { border-top: 0; }
.faq-list summary {
  padding: 13px 22px 13px 0;
  color: var(--title);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.faq-list details p { padding: 0 0 12px; }

@media (max-width: 1450px) {
  .metrics { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-grid p { min-height: 0; }
  .exchange-hero { grid-template-columns: 1fr .4fr; }
  .hero-cta { grid-column: 1; }
  .hero-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .hero-actions small { grid-column: 1 / -1; }
  .review-card.summary { grid-template-columns: 44px 1fr; }
  .review-card.summary .fact-list { grid-column: 1 / -1; }
  .news-grid,
  .guides-grid { grid-template-columns: repeat(3, 1fr); }
  .history-layout { grid-template-columns: 1fr; }
}

@media (max-width: 759px) {
  body { padding-top: 58px; }
  .mobile-menu {
    position: fixed;
    z-index: 40;
    top: 11px;
    left: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 5px;
    background: var(--nav);
    color: #fff;
  }
  .sidebar {
    width: 250px;
    transform: translateX(-100%);
    transition: transform .2s ease;
    box-shadow: 12px 0 35px rgba(30, 38, 68, .25);
  }
  .sidebar.open { transform: translateX(0); }
  .workspace { min-width: 0; margin-left: 0; }
  .topbar {
    position: fixed;
    right: 0;
    left: 0;
    height: 58px;
    padding: 0 12px 0 58px;
  }
  .site-search { width: min(280px, calc(100vw - 125px)); }
  .top-actions > span,
  .top-actions > a { display: none; }
  .content { padding: 18px 12px 28px; }
  .review-content { padding-top: 18px; }
  .page-heading { align-items: flex-start; gap: 15px; }
  .page-heading h1 { font-size: 19px; }
  .page-heading div > span { display: block; }
  .page-heading .primary { display: none; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .metrics article { min-height: 92px; padding: 13px; }
  .metrics strong { font-size: 16px; }
  .metrics i { width: 34px; height: 34px; }
  .card-head { align-items: flex-start; gap: 12px; }
  .card-head p { max-width: 430px; }
  .table-tools { padding: 10px 12px; }
  .table-tools label { width: 205px; }
  .table-note { gap: 14px; }
  .ru-legend { align-items: flex-start; flex-wrap: wrap; }
  .ru-legend small { width: 100%; margin-left: 0; }
  .exchange-hero { grid-template-columns: 1fr; padding: 18px; }
  .hero-cta { grid-column: auto; }
  .exchange-title { align-items: flex-start; }
  .exchange-title h1 { font-size: 20px; }
  .hero-score { padding: 15px 0; border: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .hero-actions { grid-column: auto; }
  .anchor-nav { top: 58px; margin-inline: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .review-split-row { grid-template-columns: 1fr; }
  .review-card.wide { grid-column: auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .chain-overview { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 18px; padding: 22px 14px; }
}

@media (max-width: 480px) {
  .top-actions .avatar { display: none; }
  .site-search { width: 100%; }
  .metrics { grid-template-columns: 1fr; }
  .card-head { display: block; }
  .filters { margin-top: 12px; }
  .table-note { display: grid; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions small { grid-column: auto; }
  .review-card.summary { grid-template-columns: 1fr; }
  .feature-grid,
  .reserve-grid,
  .pros-cons,
  .russia-grid,
  .history-layout,
  .history-timeline,
  .news-grid,
  .guides-grid { grid-template-columns: 1fr; }
  .fact-list { grid-template-columns: 1fr; }
  .fact-list div:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--border); }
}

@media (hover: hover) and (pointer: fine) {
  .news-grid a:hover {
    transform: translateY(-5px);
    border-color: #c9d1e1;
    box-shadow: 0 12px 26px rgba(35, 48, 80, .14);
  }
  .guides-grid a:hover {
    transform: translateY(-5px);
    border-color: #c9d1e1;
    box-shadow: 0 12px 26px rgba(35, 48, 80, .14);
  }
}
