.home-market-hero {
  margin-bottom: 22px;
  padding: 8px 0 4px;
}

.home-market-hero h1 {
  max-width: 760px;
}

.home-global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, #10192a, #0d1422);
}

.home-global-stats a {
  padding: 17px 19px;
  border-right: 1px solid var(--line);
}

.home-global-stats a:last-child {
  border-right: 0;
}

.home-global-stats span,
.home-global-stats strong,
.home-global-stats small {
  display: block;
}

.home-global-stats span,
.home-global-stats small {
  color: var(--muted);
  font-size: 11px;
}

.home-global-stats strong {
  margin: 7px 0 5px;
  font-size: 21px;
}

.home-market-links {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
  overflow: auto;
  scrollbar-width: none;
}

.home-market-links a {
  padding: 8px 11px;
  white-space: nowrap;
  color: #9aa9bf;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e1625;
  font-size: 12px;
  font-weight: 700;
}

.home-market-links a:hover,
.home-market-links a.active {
  color: #fff;
  border-color: #365994;
  background: #182844;
}

.home-ecosystem-strip {
  margin-bottom: 18px;
  padding: 17px;
  border: 1px solid #283b5d;
  border-radius: 13px;
  background: linear-gradient(120deg, #101c31, #0d1524);
}

.home-ecosystem-strip > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.home-ecosystem-strip header span {
  color: #6d9df2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.home-ecosystem-strip header h2 {
  margin-top: 4px;
  font-size: 17px;
}

.home-ecosystem-strip header a {
  color: #a7c2f2;
  font-size: 11px;
  font-weight: 700;
}

.home-ecosystem-strip > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.home-ecosystem-strip > div > a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid #263653;
  border-radius: 9px;
  background: #0c1422;
}

.home-ecosystem-strip > div > a:hover {
  border-color: #4974b8;
}

.home-ecosystem-strip small,
.home-ecosystem-price strong,
.home-ecosystem-price > span {
  display: block;
}

.home-ecosystem-strip small {
  margin-top: 2px;
  color: var(--muted);
}

.home-ecosystem-price {
  text-align: right;
}

.home-ecosystem-price > span {
  margin-top: 3px;
}

.home-top100 {
  margin-bottom: 18px;
}

.home-table-actions {
  display: flex;
  gap: 8px;
}

.home-table-actions a {
  padding: 7px 10px;
  color: #abc4ef;
  border: 1px solid #30415e;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
}

.home-table-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 19px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.home-table-footer a {
  color: #a9c4f5;
  font-weight: 700;
}

.home-market-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-market-about article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
}

.home-market-about p {
  margin: 8px 0 14px;
}

.home-market-about a {
  color: #9ebdf3;
  font-weight: 700;
}

@media (max-width: 900px) {
  .home-global-stats {
    grid-template-columns: 1fr 1fr;
  }

  .home-global-stats a:nth-child(2) {
    border-right: 0;
  }

  .home-global-stats a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .home-ecosystem-strip > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .home-global-stats {
    grid-template-columns: 1fr 1fr;
  }

  .home-global-stats a {
    padding: 14px;
  }

  .home-global-stats strong {
    font-size: 17px;
  }

  .home-ecosystem-strip > header,
  .home-table-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-table-actions {
    flex-wrap: wrap;
  }

  .home-market-about {
    grid-template-columns: 1fr;
  }
}
