.all-games-sec {
	margin-top:1.875rem
}
.all-games__wrap {
	display:flex;
	flex-wrap:wrap;
	gap:12px
}
.all-games__box {
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	width:calc(16.666666% - 10px);
	height:142px;
	overflow:hidden;
	border-radius:3px;
	box-shadow:0 2px 2px 0 rgba(45,45,45,.1),0 4px 4px 0 rgba(49,49,49,.1),0 8px 8px 0 rgba(42,42,42,.1),0 16px 16px 0 rgba(32,32,32,.1)
}
.all-games__box:before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	border-radius:3px;
	width:100%;
	height:100%;
	transition:opacity .3s ease-in .1s,padding-top .3s ease-in .1s;
	opacity:0;
	background:rgba(0, 0, 0, 0.31);
	box-shadow:inset 0 0 1px 1px rgba(255,163,71,.4),inset 0 0 10px 0 rgba(255,255,255,.2);
	z-index:0
}
.all-games__box:hover:before {
	opacity:1
}
.all-games__box img {
	width:100%;
	object-fit:fill;
	border-radius:5px;
	height:100%
}
.game-inner {
	position:absolute;
	bottom:0;
	left:0;
	padding:10px;
	z-index:1;
	width:100%;
	height:100%;
	background-image:linear-gradient(0deg,#000 -20%,transparent 40%);
	box-shadow:inset 0 0 0 1px rgba(255,163,71,.2),inset 0 0 10px 0 rgba(255,255,255,.1);
	display:flex;
	align-items:end
}
.game-inner::before {
	content:"";
	display:inline-block;
	position:absolute;
	z-index:3;
	left:0;
	bottom:0;
	width:100%;
	height:6px;
	background-image:linear-gradient(0deg,rgba(255,189,122,.2) 0,transparent 100%)
}
.game-inner::after {
	content:"";
	display:inline-block;
	position:absolute;
	z-index:2;
	height:3.375rem;
	left:0;
	bottom:0;
	width:100%;
	background-image:linear-gradient(0deg,rgba(255,138,20,.5) 2%,transparent 100%)
}
.game-inner .game_name {
	color: #fff;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
	line-height: 20px;
	text-shadow: 0 2px 2px rgba(0,0,0,.2);
	position: absolute;
	bottom: 0;
	font-weight: bold;
	width: 100%;
	left: 0;
	padding: 2px 5px;
	text-align: center;
}
.playGames {
	position: absolute;
	opacity: 1;
	background: linear-gradient(to right,#f7a204 0,#ffdf18 15%,#ffdf18 30%,#f7a204 55%,#f7a204 100%);
	background-position: 50% 0;
	background-size: 200%;
	box-shadow: 0 5px 10px 0 rgba(6,8,15,.1),inset 0 0 3px 0#ffdd8f;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	overflow: hidden;
	height: 35px;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	z-index: 999999999;
	width: 60px;
	border-radius: 5px;
	transform: translate(-50% , -50%);
	transition: 0.5s;
	top: 50%;
	left: 50%;
}
.playGames:hover {
	background-position:0 0;
	box-shadow:0 2px 2px 1px rgba(6,8,15,.1),0 4px 4px 1px rgba(6,8,15,.1),0 8px 8px 1px rgba(6,8,15,.1),0 16px 16px 1px rgba(6,8,15,.1),0 32px 32px 1px rgba(6,8,15,.1),inset 0 0 3px 0#ffdd8f;
	color:#fff;
	text-shadow:0 1px 3px #936002
}
.all-games__box:hover .playGames {
	opacity:1;
}
@media (max-width: 570px) {
  .all-games__box {
    width: calc(33% - 5px);
    height: 100px;
  }
  .all-games__wrap {
    gap: 8px;
  }
}