
.wins{
    width: 100%;
    height: auto;
    margin-top:40px;
  }
  
  .wins_rect{
    width: 100%;
    height: auto;
    border-radius: 16px;
  background: #0D0D0D;
  }
  
  .wins_rect_content{
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .wins_rect_items{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }

  /* Градиенты по краям для эффекта скрытия */
  .wins_rect_items::before,
  .wins_rect_items::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .wins_rect_items::before {
    left: 0;
    background: linear-gradient(to right, #0D0D0D 0%, rgba(13, 13, 13, 0.8) 50%, transparent 100%);
  }

  .wins_rect_items::after {
    right: 0;
    background: linear-gradient(to left, #0D0D0D 0%, rgba(13, 13, 13, 0.8) 50%, transparent 100%);
  }

  .wins_rect_items_wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    animation: wins_marquee 30s linear infinite;
    will-change: transform;
    width: fit-content;
  }

  .wins_rect_items_wrapper:hover {
    animation-play-state: paused;
  }

  @keyframes wins_marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 9px));
    }
  }

  .wins_rect_item {
    flex-shrink: 0;
  }
  
  .wins_rect_item_rect{
    height: 70px;
    border-radius: 12px;
    background: #191919;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
  }
  
  .wins_rect_item_rect_image{
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: cover;
    display: block;
  }
  
  .wins_rect_item_rect_texts{
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-right: 17px;
  }
  
  .wins_rect_item_rect_tittle{
    color: #FFF;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.32px;
    white-space: nowrap;
  }
  
  .wins_rect_item_rect_x{
    color: #E8FF00;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
  white-space: nowrap;
  }

  @media (min-width: 320px) and (max-width: 499px){
    .wins_rect_content {
      padding-top: 14px;
      padding-bottom: 14px;
    }

    .wins_rect_item_rect {
      height: 48px;
    }
    .wins_rect_item_rect_image {
      width: 48px;
      height: 48px;
      min-width: 48px;
      min-height: 48px;
    }
  .wins_rect_item_rect_tittle{
    font-size: 14px;
  }
  .wins_rect_item_rect_x{
    font-size: 12px;
  }
  .wins_rect_item_rect_texts{
    gap: 3px;
  }
  .wins_rect_items:before, .wins_rect_items:after{
    width: 50px;
  }
  }

  @media (min-width: 500px) and (max-width: 799px){
    .wins_rect_content {
      padding-top: 16px;
      padding-bottom: 16px;
    }

    .wins_rect_item_rect {
      height: 60px;
    }
    .wins_rect_item_rect_image {
      width: 60px;
      height: 60px;
      min-width: 60px;
      min-height: 60px;
    }

  .wins_rect_items:before, .wins_rect_items:after{
    width: 80px;
  }
  }