.page .game {
	position: relative;
	width: 100%;
	float: left;
	margin-right: 40px;
	margin-bottom: 40px;
	box-shadow: 8px 8px 0px #ecc547;
	border-radius: 2px;
}

.page .game:nth-child(even) {
	margin-right: 0;
}

.page .game .preview {
	position: relative;
	width: 100%;
	height: 260px;
	float: left;
	overflow: hidden;
	border-radius: 2px;
}

.page .game .preview .img {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-size: cover;
	background-position: center center;
	float: left;
	transition: left 0.25s, right 0.25s, top 0.25s, bottom 0.25s;
	border-radius: 2px;
}

.page .game .preview .fade {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	float: left;
	border-radius: 2px;
	background: linear-gradient(180deg, rgba(255,255,255,0) 25%, rgba(0,0,0,0.7) 100%);
}

.page .game .preview .border {
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-radius: 2px;
	display: block;
	transition: all 0.25s;
}

.page .game .title {
	position: absolute;
	left: 32px;
	bottom: 20px;
	color: #fff;
	font-weight: bold;
	font-size: 2.0em;
}

.page .game .publisher {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 48px;
	height: 48px;
}

.page .game:hover .preview .img {
	left: -32px;
	right: -32px;
	top: -32px;
	bottom: -32px;
}
.page .game:hover .preview .border {
	border: 8px solid rgba(255, 255, 255, 0.25);
	left: 7px; right: 7px; top: 7px; bottom: 7px;
}

.celeste-classic {
	width: 100%;
	height: 76px;
	display: block;
	float: left;
	background: #ea92d1;
	border-radius: 4px;
	padding: 4px 16px 4px 16px;
	box-sizing: border-box;
	white-space: nowrap;
	border: 4px solid #344599;
	box-sizing: border-box;
}

.celeste-classic img {
	height: 80%;
	margin-right: 12px;
	vertical-align: middle;
	display: inline-block;
}

.celeste-classic span {
	position: relative;
	display: inline-block;

	font-weight: bold;
	font-size: 1.2em;
	text-decoration: none;

	height: 60px;
	line-height: 60px;
	vertical-align: middle;

	transition: color 0.1s;
	color: #344599;
}

.celeste-classic:hover {
	background: #344599;
}
.celeste-classic:hover span {
	color: #ea92d1;
}