.nbelt {
  --gap: 10px;
  --row-gap: 8px;
  padding: 8px 0;
}

.nbelt__mask {
  display: grid;
  grid-auto-rows: auto;
  row-gap: var(--row-gap);
  overflow: hidden;
}

.nbelt__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}
.nbelt__row li{display: block;}
.nbelt__item {
  flex: 0 0 auto;
}

/* کمی بی‌نظمی */
.nbelt__item:nth-child(3n) { transform: translateY(-2px); }
.nbelt__item:nth-child(5n) { transform: translateY( 2px); }
.nbelt__item:nth-child(7n) { transform: translateY(-1px); }

/* کارت هر نماد */
.nbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
  text-decoration: none;
  color: inherit;
  font: 500 .9rem/1.2 system-ui;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nbadge:hover,
.nbadge:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.nbadge__logo  {
  height: 50px;
}
.nbadge__logo img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  border-radius:50%;
}
.nbadge__count {
  font-weight: 700;
  font-size: .8rem;
  padding: 3px 6px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid rgba(99,102,241,.2);
  font-family: 'Numans';
  color: #000000;
}

.nbadge__text {
    font-family: 'Days One';
    color: #1e293be0;
}

.view-symbols-data {
    background: #eceffb;
    text-align: center;
    padding: 20px 0px;
}

.view.view-symbols-trend {
    background: #fff;
    text-align: center;
    padding: 20px 0px;
}

.view-symbols-data .view-header, .view.view-symbols-trend .view-header{
    font-size: 1.2em;
    line-height: 1;
    font-family: "Days One";
    margin-bottom: 20px;
    font-size: 26px;
    color: #061c46;
}

/* موبایل */
@media (max-width:640px){
  .nbadge__logo img {
    width: 30px;
    height: 30px;
  }
  .nbadge__logo  {
    height: 30px;
  }
}