/* Game list styles */
.game-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.game-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 20px;
	width: 200px;
	height: 200px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	position: relative;
}

.game-link:hover img {
	transform: scale(1.2);
}

.game-link:hover .game-name {
	opacity: 1;
}

.game-link img {
	max-width: 100%;
	max-height: 100%;
	transition: transform 0.3s ease-in-out;
}

.game-link .game-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.8);
	font-size: 18px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}