.type-filters {
  width: max-content;
  max-width: 100%;
  height: auto;
  margin: 18px 0 0;
  padding: 5px;
  border: 1px solid #312a37;
  border-radius: 13px;
  background: #100d15;
  display: flex;
  gap: 3px;
  overflow-x: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}
.type-filters a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #99919f;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .01em;
  transition: background .16s, border-color .16s, color .16s, box-shadow .16s;
}
.type-filters a:hover { border-color: transparent; background: #19141f; color: #e9e4ec; }
.type-filters a.active {
  border-color: rgba(167, 139, 250, .42);
  background: linear-gradient(135deg, rgba(139, 92, 246, .28), rgba(91, 56, 128, .2));
  color: #fff;
  box-shadow: 0 5px 16px rgba(98, 53, 145, .22);
}
.market-count { margin-top: 24px; }
@media (max-width: 720px) {
  .type-filters { width: 100%; }
  .type-filters a { flex: 1; padding-inline: 12px; }
}
