.statistics_container {
  display: flex;
  background: var(--card);
  border-radius: var(--br-16);
  text-align: center;
  padding: 0.5rem 1.5rem;
  flex-direction: column;
  color: var(--text-custom);
  gap: 0;
  position: relative;
  overflow: hidden;
  user-select: none;
  justify-content: center;
  transition: all 0.4 ease;
}

.statistics_container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -75%, var(--span-half) 0%, transparent 100%);
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  border-radius: var(--br-16);
}

.statistics_container:hover:before {
  opacity: 1;
}

.statistics_number {
  font-family: var(--font-family-1);
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-7);
  color: var(--span);
  height: 22px;
  margin-top: 20px;
  z-index: 2;
}

.statistics_icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  transition: var(--transition-ease-2)
}

.statistics_icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--card) 10%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.statistics_icon svg {
  width: auto;
  height: 34px;
  fill: var(--span);
  opacity: 0.5;
  transition: var(--transition-ease-2)
}

.statistics_name {
  color: var(--span-half);
  font-size: var(--font-size-m);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.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;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -75%, #f4ca8080 0%, transparent 100%);
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  border-radius: var(--br-16);
}

.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;
	left: 0;
	top: 13px;
    transition: var(--transition-ease-2)
}

.prem_icon svg {
    width: auto;
	right: 0;
	left: 0;
    height: 31px;
    fill: var(--money);
    opacity: 0;
    transition: var(--transition-ease-2)
}

.statistic__premium:hover .prem_icon {
    right: 0;
}

.statistic__premium:hover .prem_icon svg{
    opacity: 0.5;
}

.statistic__premium:hover .statistics_icon {
    right: 0;
}

.statistic__premium:hover .statistics_icon svg{
    opacity: 0;
}
.stat-number.counting {
            animation: pulse 0.5s ease-in-out infinite alternate;
            color: var(--accent-color, #2196F3);
        }
        
        @keyframes pulse {
            from {
                transform: scale(1);
                opacity: 0.8;
            }
            to {
                transform: scale(1.05);
                opacity: 1;
            }
        }
        
        .stat-number.counted {
            color: var(--success-color, #4CAF50);
            transition: color 0.3s ease;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            transition: all 0.3s ease;
        }

        /* Плавный переход при сбросе на 0 */
        .stat-number:not(.counting):not(.counted) {
            transition: all 0.5s ease;
        }
@media (max-width: 950px) {
	.statistics_podva {
		width: 33.333333%;
        max-width: 33.333333%;
        flex: auto;
	}
}
@media (max-width: 578px) {
	.statistics_podva {
		max-width: 50%;
		width: 50%;
	}
}