.statistics_container {
  display: flex;
  background: var(--card);
  border-radius: var(--br-16);
  padding: 1rem 1.5rem;
  flex-direction: column;
  color: var(--text-custom);
  gap: 0;
  position: relative;
  overflow: hidden;
  justify-content: center;
}

.statistics_number {
  font-family: var(--font-family-1);
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-7);
  color: var(--span);
}

.statistics_icon {
  position: absolute;
  right: 1rem;
  transition: var(--transition-ease-2)
}

.statistics_icon svg {
  width: 30px;
  height: auto;
  fill: var(--span);
  opacity: 1;
  transition: var(--transition-ease-2)
}

.statistics_name {
  color: var(--span-half);
  font-size: var(--font-size-m);
}

.statistic__premium .statistics_name {
  color: var(--money);
}

.statistic__premium .statistics_number {
  color: var(--money);
}

.statistic__premium .statistics_icon svg {
  fill: var(--money);
}

.statistic__premium {
  outline: 2px solid var(--money);
  transition: var(--transition-ease-2)
}

.statistic__premium:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top left, var(--money-bg), transparent);
  opacity: 0.1;
  pointer-events: none;
  transition: all .25s ease;
}

.statistic__premium:hover:before {
    opacity: 1;
}

.pulse_prem {
  animation: pulse-prem 2s infinite;
}

@keyframes pulse-prem {
  0% {
    box-shadow: 0 0 0 0px var(--money);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 87, 105, 0);
  }
}

.prem_icon {
    position: absolute;
    right: 3rem;
    transition: var(--transition-ease-2)
}

.prem_icon svg {
    width: 20px;
    height: auto;
    fill: var(--money);
    opacity: 0;
    transition: var(--transition-ease-2)
}

.statistic__premium:hover .prem_icon {
    right: 1rem;
}

.statistic__premium:hover .prem_icon svg{
    opacity: 1;
}

.statistic__premium:hover .statistics_icon {
    right: 0;
}

.statistic__premium:hover .statistics_icon svg{
    opacity: 0;
}

/* ===== AXON neon restyle (под мокап: иконка-бокс сверху, светящееся число) ===== */
.statistics_container {
  align-items: flex-start;
  gap: 6px;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(41,163,171,.18);
  box-shadow: inset 0 0 26px rgba(41,163,171,.06);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.statistics_container:hover {
  border-color: rgba(95,227,255,.5);
  box-shadow: 0 0 22px rgba(41,163,171,.3);
  transform: translateY(-2px);
}
.statistics_icon {
  position: static;
  right: auto;
  order: -1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(41,163,171,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.statistics_icon svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 7px var(--span));
}
.statistics_name { order: 0; }
.statistics_number {
  order: 0;
  font-size: 1.7rem;
  color: var(--text-default);
  text-shadow: 0 0 16px rgba(41,163,171,.45);
  margin-top: 2px;
}
.statistic__premium { outline: none; border-color: rgba(244,202,128,.5); box-shadow: 0 0 24px rgba(244,202,128,.22); }
.statistic__premium .statistics_number { color: var(--money); text-shadow: 0 0 16px rgba(244,202,128,.4); }
.statistic__premium .statistics_icon { background: rgba(244,202,128,.12); }
.statistic__premium .statistics_icon svg { filter: drop-shadow(0 0 7px var(--money)); }
.prem_icon { display: none; }

/* ===== Spotlight stat refinement ===== */
.statistics_container {
  border-radius: 20px;
  padding: 26px 22px;
}
/* gradient-линия сверху, появляется при наведении */
.statistics_container::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(120deg, #29a3ab, #2b7fff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.statistics_container:hover::after { transform: scaleX(1); }
.statistics_number {
  font-family: var(--font-family-1, "Unbounded"), sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.statistics_icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--transparent-5-w);
}
