.counter-wrapper {
    display: flex;
    gap: 50px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
  }

  .counter-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }

  .counter-container.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .counter {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffd700, #00fff0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    cursor: default;
    transition: transform 0.3s, text-shadow 0.3s;
  }

  .counter-label {
    font-size: 1rem;
    font-weight: 600;
    color: #0d9bad;
    margin-top: 5px;
  }

  .counter:hover {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255,255,255,0.6);
  }

  @media(max-width:768px){
    .counter-wrapper {
      gap: 20px;
    }
    .counter {
      font-size: 2.5rem;
    }
  }