.crypto-counter {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px auto;
  padding: 40px 20px 80px;
  max-width: 1200px;
}

.counter-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  padding: 20px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.counter-item:hover { transform: translateY(-3px); }

.counter-name {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #62d3ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  line-height: 1.3;
}

.counter {
  font-size: 36px;
  font-weight: 300;
  color: #e7ecee;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

#apps::after {
  content: '+';
  font-size: 20px;
  color: #62d3ff;
  margin-left: 2px;
  opacity: 0.6;
  font-weight: 300;
}

@media (max-width: 768px) {
  .crypto-counter {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px 15px 50px;
  }
  .counter-item { min-width: 180px; max-width: 240px; }
  .counter { font-size: 28px; }
}

@media (max-width: 480px) {
  .counter { font-size: 26px; }
  .counter-name { font-size: 11px; }
}
