.game {
	padding: 16px;
	border-radius: 8px;
	background-color: #f9f9f9;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 15px;
	margin: 0 0 10px 0;
}
.game__item {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
}

.game__logo {
	width: 150px;
	height: 150px;
}
.game__logo img {
	width: 100%;
	height: 100%;
}

.game__info {
}

.game__title {
	color: #2e2e2e;
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
	margin: 0 0 16px 0;
}

.game__rating {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	margin: 0 0 16px 0;
}
.game__rating span {
	font-size: 16px;
	line-height: 18px;
	font-weight: 600;
	color: #2e2e2e;
}

.game__descr {
	margin: 0 !important;
	font-size: 24px;
	line-height: 26px;
	font-weight: 800;
	color: #2e2e2e;
	max-width: 400px;
}

.game__dep {
	border-radius: 6px;
	background: #f1f1f1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	height: 100%;
}

.game__dep-item p {
	color: #9a9a9a;
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
	margin: 0 !important;
	white-space: nowrap;
	text-transform: uppercase;
}
.game__dep-item p span {
	display: block;
	color: #2e2e2e;
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
}

.game__link {
}

.game__btn {
	width: 240px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: #28c527;
	color: #fff;
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	margin: 0 0 16px 0;
}
.game__btn:hover {
	background: #116e11;
	text-decoration: none;
	color: #fff;
}

.game__crypto {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
}
@media (max-width: 768px) {
	.game {
		flex-direction: column;
		gap: 50px;
	}
	.game__item:last-child {
		flex-direction: column;
	}
	.game__item:first-child {
		position: relative;
	}
	.game__logo {
		width: 60px;
		height: 60px;
		min-width: 60px;
	}
	.game__descr {
		position: absolute;
		left: 0;
		font-size: 16px;
		line-height: 18px;
		max-width: 100%;
	}
	.game__dep {
		flex-direction: row;
		width: 100%;
		justify-content: flex-start;
		gap: 24px;
	}
	.game__link {
		width: 100%;
	}
	.game__btn {
		width: 100%;
		height: 32px;
		font-size: 14px;
		line-height: 16px;
	}
	.game__crypto {
		justify-content: center;
	}
	.game__title {
		font-size: 14px;
		line-height: 16px;
	}
}
