@media (min-width: 768px) and (max-width: 1200px){
  .row-cols-md-4>*:nth-child(n+5){
    display:none;
  }
}

.stream_list_box{
  border:1px solid rgba(255,255,255,.12);
  padding:10px;
  background:
    radial-gradient(600px 140px at 10% 0%, rgba(255,45,85,.12), transparent 55%),
    radial-gradient(600px 140px at 90% 0%, rgba(0,229,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(16,21,33,.92), rgba(7,8,11,.92));
  border-radius:16px;
  margin:6px;
  box-shadow:0 18px 45px rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
  height:99%;
}

.stream_list_box:hover{
  transform: translateY(-1px);
  border-color: rgba(255,45,85,.35);
  box-shadow: 0 0 26px rgba(255,45,85,.12), 0 22px 55px rgba(0,0,0,.72);
}

.straem_list_title{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  color:rgba(255,255,255,.92);
  letter-spacing:.01em;
}

.list_count i{
  color:rgba(255,255,255,.55);
}

.img-item{
  overflow:hidden;
  border-radius:14px;
}

.img-item img{
  transition: transform .45s ease, filter .45s ease;
  will-change: transform;
}

.img-item:hover img{
  transform: scale(1.18);
  filter: saturate(1.08) contrast(1.06);
}
