
:root{
	--bg-color: #0d0d0d;
}

body{
    background-color: var(--bg-color);
    padding: 30px 0;
}

body > footer{
    margin-top: 10px;
    color: #5c5c5c;
    font-size: 12px;
    letter-spacing: .2px;
    font-weight: 300;
}

body > footer a{
    color: #5c5c5c;
	text-decoration: none;
}

body > footer a:hover, body > footer a:focus{
    color: #7f7b7b;
}

main > .container {
    padding: 60px 15px 0;
}

.wide .container {
    max-width: 99%;
}

header {
	background: rgb(13 13 13 / 70%);
	background: -webkit-linear-gradient(65deg, rgb(221 34 97 / 80%), rgb(37 57 202 / 80%) 80%);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px #0d0d0d;
}

header.transparent {
	background: linear-gradient(180deg, var(--bg-color) -15%, transparent 100%);;
}

header .logo{
	transition: all .5s ease-in;
    opacity: .9;
}

header .logo:hover{
    opacity: 1;
}

header .logo img{
	height: 40px;
}

header .nav-link{
	color: #ffffff;
	opacity: .7;
	transition: all .2s;
}

header .nav-link:hover, header .nav-link:focus{
	color: #eeeeee;
	opacity: .9;
}

header .nav-link.active{
	opacity: 1;
	font-weight: 600;
	text-shadow: 0 0 20px rgb(16 33 153 / 59%);
}

header .links .nav-link{
	padding: 0.5em;
}

/*
flex

.grid{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 15px;
}

.grid .grid-item{
	position: relative;
	flex: 1 1 400px;
	border-radius: 0.2vw;
	overflow: hidden;
}

*/

h2{
	font-size: 1.8rem;
    margin-bottom: 0.5em;
	color: #444444;
}

.text-gradient{
	background: -webkit-linear-gradient(45deg, #962cc9, #2539ca 80%);
	background: -webkit-linear-gradient(45deg, #dd2261, #2539ca 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.grid{
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 20px 16px;
}

.grid .grid-item{
	position: relative;
	border-radius: 0.2vw;
	overflow: hidden;
}

.grid .grid-item a{
	text-decoration: none;
}

.grid .grid-item .thumbnail{
	aspect-ratio: 16 / 9;
	background-color: #191919;
	background-size: cover;
    background-position: center;
}

.grid .grid-item .labels{
    position: absolute;
	top: 0;
	right: 0;
	padding: .6em .8em;
}

.grid .grid-item .labels .label{
    font-size: .7em;
    padding: 0.3em 0.5em;
    border-radius: 0.4em;
    text-transform: uppercase;
    font-weight: 600;
	box-shadow: 0 0 1em rgb(0 0 0 / 50%);
}

.grid .grid-item .labels .label-ongoing{
    background: #d30d0d;
	color: white;
}

.grid .grid-item .labels .label-demo{
    background: #275427;
    color: #d7d7d7;
}

.grid .grid-item .labels .label-dlc{
    background: #132e74;
    color: #abc3ff;
}

.grid .grid-item .details{
	color: #bdbdbd;
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
	padding: 0.8em 1em;
    padding-top: 1.5em;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 80%), transparent);
	opacity: 0;
	transition: all .3s ease-in;
}

.grid .grid-item:hover .details{
	opacity: 1;
}

.grid .grid-item .details .title{
    font-size: 1.5em;
	color: white;
}

.grid .grid-item .details *{
    font-size: 0.8em;
}


