.banner{
  display:flex;
  width:100%;
  margin-bottom: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}

.banner img{
  width:100%;
}


 
.filter_item{
  margin-left: 10px;
  min-width: 100px;
  text-align: center;
  font-size: 12px;
  background: radial-gradient(circle at left,  rgb(30,30,30), black);
  padding:8px 10px;
  transform:skewX(5deg);
  cursor:pointer;
  text-transform: uppercase;
  font-weight: bold;
}

.filter_item:hover, .filter_active{
  background: radial-gradient(circle at left, rgb(241, 217, 123), rgb(168, 121, 47));
  color:black;
  font-weight: bold;
}



.game_list{
  display:grid;
  grid-template-columns: repeat(auto-fit, 180px);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  overflow-y: auto;
}

.game{
  display:flex;
  flex-direction: column;
  background: black;
  border:2px solid white;
  border-radius: 5px;
  overflow:hidden;
  position:relative;
}

.game img{
  height:130px;
  width:100%;
}

.game_name{
  padding:10px 0;
  text-align: center;
  color:white;
  font-family:system-ui;
  font-size: 14px;
}

.game_hover{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.8);
  display:flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}


.play_btn{
  background: radial-gradient(circle at bottom, rgb(241, 217, 123), rgb(168, 121, 47));
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  color:black !important;
  padding:5px 10px;
  border-radius: 3px;
  display:flex;
  align-items: center;
  margin-bottom: 10px;
}


.play_btn::after{
  content:"";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid black;
  margin-left: 10px;
}

.play_btn:hover{
  background: radial-gradient(circle at bottom,  rgb(30,30,30), black);
  color:rgb(168, 121, 47) !important;
}

.play_btn:hover::after{
  border-left: 10px solid rgb(168, 121, 47);
}


.game:hover .game_hover{
  opacity: 1;
}

.game_list::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.game_list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.5);
}

/* Handle */
.game_list::-webkit-scrollbar-thumb {
  background: rgb(30,30,30);
}

/* Handle on hover */
.game_list::-webkit-scrollbar-thumb:hover {
  background: #555;
}
