body {
	overflow-x: hidden;
	background: #15151e;
}
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
ul {
	list-style: none;
}
textarea, input, a, button { 
	outline: none;
}
#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
} 

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/* latin-ext */
@font-face {
	font-family: 'Righteous';
	font-style: normal;
	font-weight: 400;
	src: local('Righteous'), url('../fonts/1cXxaUPXBpj2rGoU7C9WhnGFucE.woff2') format('woff2');
	unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
	font-display: swap;
}

/* latin */
@font-face {
	font-family: 'Righteous';
	font-style: normal;
	font-weight: 400;
	src: local('Righteous'), url('../fonts/1cXxaUPXBpj2rGoU7C9WiHGF.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	font-display: swap;
}
body {
	font-family: 'Righteous', sans-serif;
	font-size: 16px;
	color: #fff;
}
a {
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
a:hover, a:visited, a:focus, a:active, button:hover, button:visited, button:active, button:focus {
	text-decoration: none !important;
	outline: none !important;
}
::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.animation-delay-100 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.animation-delay-200 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.animation-delay-300 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.animation-delay-400 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.animation-delay-600 {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.animation-delay-800 {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.animation-delay-1000 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.animation-delay-2000 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
.d-notice-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
	text-align: center;
}
.d-notice-wrapper .mid1 {
	filter: invert(28%) sepia(95%) saturate(2260%) hue-rotate(203deg) brightness(101%) contrast(107%);
	font-size: 12em;
}
.d-notice-wrapper h1 {
	font-size: 2.8em;
	font-weight: 900;
	margin: 15px auto 0 auto;
}
.d-notice-wrapper p {
	margin: 15px auto 0 auto;
	font-size: 1.2em;
}
.d-notice {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	padding: 50px 70px;
	border-radius: 20px;
	background: #f4f4f4;
	color: #000;
}
.d-n-i {
	background: #fff;
	border-radius: 20px;
	padding: 15px 10px;
	margin: 15px auto 0 auto;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.d-notice-wrapper .mid2 {
	filter: invert(28%) sepia(95%) saturate(2260%) hue-rotate(203deg) brightness(101%) contrast(107%);
	margin-right: 10px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
	background: rgba(23, 26, 33, 1);
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #33cdff;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #33cdff;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #33cdff;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
.centered {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.3));
	filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.3));
  }
@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;        
    z-index: 1000;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;  
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateY(-100%);  /* IE 9 */
	transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
	-webkit-transition: all 0.3s 1s ease-out;  
	transition: all 0.3s 1s ease-out;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
	color: #fff;
	position: relative;
	padding: 100px 0 30px 0;
}
header:after {
	content: '';
	display: block;
	width: 100px;
	height: 10px;
	background: rgba(255, 255, 255, 0.05);
	margin: 30px auto 0 auto;
	position: relative;
}
.header-content {
	text-align: center;
}
.header-content h1 {
	font-size: 8em;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 2px 2px 0 rgba(0, 0, 0, 0.7);
}
.header-content h1 span {
	color: #33cdff;
}
.header-content b {
	font-size: 1.7em;
	font-weight: 300;
	letter-spacing: 2px;
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.game-search-wrapper {
	text-align: center;
	position: relative;
	max-width: 600px;
	margin: 0 auto 50px auto;
}
.game-search-wrapper b {
	font-size: 1.2em;
	margin: 0 0 3px 0;
	color: #33cdff;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.input-icon-wrapper {
	position: relative;
	margin: 0 auto;
	border: 1px solid #FA9F1B;
	border-radius: 5px;
}
input:focus::placeholder {
	color: #2b3856;
}
.input-icon-wrapper span.lnr {
	position: absolute;
	font-size: 30px;
	color: rgba(255,255,255,0.3);
	left: 30px;
	top: 37px;
}
.input-style {
	height: 100px;
	font-size: 1.3em;
	color: #fff;
	outline: none !important;
	width: 100%;
	padding: 0 15px 0 85px;
	border: none;
	box-shadow: none;
	background: #1d1d27;
	border-radius: 10px;
}
.input-style::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
	opacity: 1;
}
.input-style::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
	opacity: 1;
}
.input-style:-ms-input-placeholder { /* IE 10+ */
	color: #fff;
	opacity: 1;
}
.input-style:-moz-placeholder { /* Firefox 18- */
	color: #fff;
	opacity: 1;
}

/*--------------------------------------------------------------
# App Grid
--------------------------------------------------------------*/

.app-grid-section .container {
	max-width: 800px;
}
.app-item {
	padding: 15px 15px;
	width: 25%;
}
.app-item-content {
	position: relative;
	padding: 15px;
	border-radius: 20px;
	background: #1d1d27;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.8);	
	-webkit-transition: -webkit-transform 300ms cubic-bezier(0.225, 3, 0.485, 0.895);
	transition: -webkit-transform 300ms cubic-bezier(0.225, 3, 0.485, 0.895);
	transition: transform 300ms cubic-bezier(0.225, 3, 0.485, 0.895);
	transition: transform 300ms cubic-bezier(0.225, 3, 0.485, 0.895), -webkit-transform 300ms cubic-bezier(0.225, 3, 0.485, 0.895);
}
.app-item-content:hover {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}
.app-item img {
	display: table;
	margin: 0 auto;
	max-width: 70%;
	border-radius: 30%;
}
.app-title {
	color: #fff;
	text-align: center;
	margin: 5px 0 0 0;
}
.app-link-wrapper {
	position: relative;
	text-align: center;
	margin: 10px 0 0 0;
}
.app-link-wrapper h2{
	font-size: 1em;
}
.app-link-wrapper a {
	background: #fff;
	display: table;
	margin: 0 auto;
	padding: 10px 10px 10px 10px;
	color: #db1010;
	border-radius: 10px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
	text-decoration: none !important;
	border: 2px solid #eee;
	position: relative;
}
.app-link-wrapper a:hover {
	background: #db1010;
	color: #fff;
}
.app-link-wrapper a span.lnr {
	position: absolute;
	left: 12px;
	top: 6px;
	font-size: 1.2em;
	color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.app-link-wrapper a:hover span.lnr {
	color: rgba(0, 0, 0, 0.5);
}
.no-result-found-wrapper {
	text-align: center;
	font-size: 2.4em;
	display: none;
	color: #fff;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
	z-index: 50;
	margin: 80px 0 0 0;
}
.no-result-found-wrapper span.lnr {
	font-size: 5em;
	display: block;
	margin: 0 0 20px 0;
	color: #1d1d27;
}
.no-result-found-wrapper p {
	font-size: 0.4em;
	max-width: 600px;
	margin: 20px auto 0 auto;
	color: #999;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	margin-top: 120px;
	text-align: center;
	padding: 5px 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 1em;
	position: relative;
	z-index: 10;
}
/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 1920px) {
	.header-content h1 {
		font-size: 7em;
	}
	.header-content b {
		font-size: 1.6em;
	}
	.container {
		max-width: 800px;
	}
	.app-link-wrapper a span.lnr {
		top: 15px;
	}
}
@media screen and (max-width: 767px) {
	.header-content h1 {
		font-size: 5em;
	}
	.header-content b {
		font-size: 1.2em;
	}	
	.app-item {
		padding: 10px 10px;
		width: 33%;
	}
	.app-link-wrapper a span.lnr {
		font-size: 1em;
		left: 12px;
	}
}
@media screen and (max-width: 500px) {
	.app-item {
		padding: 7px;
		width: 50%;
	}
	.header-content, .footer-content {
		padding: 0 25px;
	}
	header {
		padding-top: 50px;
	}
	.header-content h1 {
		font-size: 3.2em;
	}
	.header-content b {
		font-size: 1em;
	}
	.app-link-wrapper a span.lnr {
		font-size: 1em;
		left: 12px;
	}
}
@media screen and (max-width: 350px) {
	.header-content h1 {
		font-size: 2.7em;
	}
	.header-content b {
		font-size: 0.8em;
	}
}