@import url(http://fonts.googleapis.com/css?family=Titillium+Web:200,200italic,700);

* {
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust:none;
	-webkit-appearance: none;
	outline: none;
}

html {
	font: 16px helvetica rounded, arial rounded, arial rounded mt bold, sans-serif;
}

body {
	background: #2b2727;
}

.c {
	visibility: hidden;
}

.header {
	display: block;
	background: #00cb4b url(gradient.png);
	border-bottom: 1px solid #1f1c1a;
	box-shadow: 0 2px 0 0 rgba(0,0,0,.2);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 60px;
	overflow: hidden;
	padding: 0 10px;
	z-index: 99999;
}

.header .logo {
	display: inline;
}

.header .logo a {
	display: block;
	width: 120px;
	height: 60px;
	background: url(sprite.png) 0px 0px;
	float: left;
}

.header .nav, .header .nav li {
	display: inline;
}

.header .nav li a {
	float: right;
	width: 60px;
	height: 60px;
	background: url(sprite.png) -120px 0px;
	transition: transform 50ms ease-in-out;
	-webkit-transition: -webkit-transform 50ms ease-in-out;
}

.header .nav li.home a {
	background-position: -120px 0px;
}

.header .nav li.favs a {
	background-position: -180px 0px;
}

.header .nav li.profile a {
	background-position: -240px 0px;
}

.header .nav li a:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.search {
	height: 40px;
	margin: 10px auto;
	float: right;
	overflow: hidden;
	position: relative;
	margin-right: 15px;
}

.search .text {
	border-radius: 99px;
	height: 40px;
	padding: 4px 20px;
	border: 1px solid rgba(0,0,0,.2);
	width: auto;
	background: rgba(0,0,0,.1);
	box-shadow: inset 0 2px 2px 0 rgba(0,0,0,.1);
	width: 160px;
	box-sizing: border-box;
	color: rgba(0,0,0,.5);
	transition: all 200ms ease-in-out;
	-webkit-transition: all 200ms ease-in-out;
}

.search .button {
	position: absolute;
	right: -5px;
	width: 60px;
	height: 60px;
	padding: 0;
	border: none;
	background: transparent;
	display: block;
	top: -10px;
	bottom: 0;
	cursor: pointer;
	background: url(sprite.png) -300px 0px;
	opacity: .2;
}

.search .text:active,
.search .text:focus {
	background: #fff;
	width: 250px;
	color: #000;
	border-color: rgba(0,0,0,.4);
}

.grid {
	margin-top: 60px;
	padding: 15px;
}

.grid .col-ct {
	float: left;
	width: 21%;
	height: 10000px;
}

.grid .col-games {
	float: right;
	width: 78%;
	margin-top: -5px;
	height: 10000px;
}

.category {
	overflow: hidden;
	height: 60px;
	width:100%;
	background: #00cb4b;
	border-radius: 3px;
	display: block;
	position: relative;
	border: 2px solid #009c3c;
	margin-bottom: 10px;
	box-shadow: 0 1px 2px #000;
}

.category img {
	width: 100%;
}

.category span {
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	padding: 10px;
	color: #fff;
	text-shadow: 0 1px 2px #000;
}

.game {
	width: 19.9%;
	float: left;
	display: block;
}

.game .w {
	border-radius: 3px;
	position: relative;
	display: block;
	margin: 5px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 1px 2px #000;
	height: 100px;
}

.game.is-huge {
	width: 39.95%;
}

.game.is-huge .w {
	height: 210px;
}

.game .img {
	overflow: hidden;
	border-radius: 3px;
}

.game .img img {
	width: 100%;
}

.game span {
	position: absolute;
	display: block;
	bottom: -60px;
	left: 0;
	right: 0;
	padding: 10px;
	color: #fff;
	background: rgba(0,0,0,.5);
	text-shadow: 0 1px 2px #000;
	transition: bottom 100ms linear;
}

.game:hover span {
	bottom: 0;
}