* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: solano-gothic-pro-mvb, sans-serif;
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	background-color: #000;
	background-image: url("img/background.jpg");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	width: 100%;
	background-size: cover;
	overflow: scroll;	
}

span {
	position:absolute; 
	width:100%;
	height:100%;
	top:0;
	left: 0;
	z-index: 1;
}

p {
	font-weight: 400;
	font-style: normal;
	font-size: 1.2rem;
	line-height: 1.5rem;
	letter-spacing: 0.1rem;
	color: #a7bbc1;
	margin-bottom: 1.66rem;
}

h1 {
	font-weight: 700;
	font-style: normal;
	font-size: 4rem;
	margin-bottom: 1rem;
	color: #00ff88;
}

h2 {
	font-weight: 400;
	font-style: normal;
	font-size: 1.5rem;
	letter-spacing: 0.2rem;
	color: #a7bbc1;
	margin-bottom: 3rem;
}

h3 {
	font-weight: 600;
	font-style: normal;
	font-size: 2rem;
	letter-spacing: 0.2rem;
	color: white;
	margin-bottom: 1.5rem;
}

sline {
	font-weight: 400;
	font-style: normal;
	font-size: .85rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
	color: #a7bbc1;
	margin-bottom: 1.66rem;
}

.section-title {
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	letter-spacing: .5rem;
	font-size: 3.2rem;
	text-align: center;
	color: white;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	height: 4rem;
	padding: .15rem 2.5rem;
	background: rgba(0, 0, 0, .75);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	backdrop-filter: blur(16px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
	outline: thin solid rgba(255, 255, 255, .05);
}

.nav-logo {
	display: flex;
	gap: 2rem;
	height: 100%;
	margin-bottom: .2rem;
}

.logo {
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}

.nav-links {
	display: flex;
	height: 100%;
	text-align: center;
	gap: 2rem;
}

.nav-links a {
	font-weight: 700;
	font-style: normal;
	color: #a7bbc1;
	text-decoration: none;
	font-size: 1.25rem;
	letter-spacing: .15rem;
	transition: all .1s;
	margin-top: 1.1rem;
	border-bottom: 0rem solid;
	margin-bottom: 0px;
}

.nav-links a:hover {
	color: #fff;
	border-bottom: .33rem solid;
	margin-bottom: -1.5px;
	filter: drop-shadow(0px 0px 16px #fff);
}

.hero {
	
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;		
	padding-right: 3rem;
	padding-left: 3rem;
	padding-top: 16rem;
	padding-bottom: 16rem;
	min-height: 960px;
}

.hero-content {
	text-align: center;
	max-width: 460px;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: #000;
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .15rem;
	font-weight: 700;
	font-style: normal;
	font-size: 1.25rem;
	text-decoration: none;
	transition: transform 0.1s;
	outline: thin solid rgba(255, 255, 255, .05);
	box-shadow: 0px 0px 32px rgba(255, 255, 255, 0);
	transition: all 0.3s;
}

.cta-button:active {
	background: #fff;
	color: #000;
	transform: scale(1.05);
	box-shadow: 0px 0px 64px white;
}

.games-section {
	padding: 5rem 3rem;
	padding-bottom: 10rem;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.game-card {
	backdrop-filter: blur(16px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
	max-width: 382px;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s;
	margin: auto;
	text-align: center;
	position: relative;
	outline: thin solid rgba(255, 255, 255, .05);
	box-shadow: 0px 0px 32px rgba(255, 255, 255, 0);
}

.game-card:active {
	box-shadow: 0px 0px 64px rgba(255, 255, 255, .66);
	transform: scale(1.05);
}

.game-image {
	width: 100%;
	object-fit: cover;
}

.game-info {
	padding: 3rem;
	margin: auto;
}
.game-info-links {
	text-align: center;
}

.features-section {
	padding: 5rem 3rem;
	text-align: center;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 10rem;
}

.feature-card {
	backdrop-filter: blur(16px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
	padding: 3rem;
	padding-top: 1.5rem;
	padding-bottom: 1rem;
	border-radius: 10px;
	outline: thin solid rgba(255, 255, 255, .05);
}

footer {
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(16px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
	text-align: center;
	padding-top: .5rem;
	padding-bottom: 1.25rem;
	outline: thin solid rgba(255, 255, 255, 0.15);
}

.social-links {
	margin-top: 1rem;
	margin: auto;
	padding-top: 20px;
}

.social-links a {
	font-weight: 500;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.4rem;
	letter-spacing: .05rem;
	color: #a7bbc1;
	text-decoration: none;
	transition: all .1s;
}

.social-links a:active {
	color: #fff;
	filter: drop-shadow(0px 0px 16px #fff);
}

@media (max-width: 768px) {

	.hero {
	padding-top: 5rem;
	}

	.hero h1 {
		font-size: 2.5rem;
	}
	
	.hero p {
		font-size: 1.2rem;
	}

	.nav-links {
		display: none;
	}

	.navbar {
		display: none;
	}

	.nav-logo {
		display: none;
	}
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

@media (hover: hover) {
	.game-card:hover {
		box-shadow: 0px 0px 64px rgba(255, 255, 255, .66);
		transform: scale(1.05);
	}

	.cta-button:hover {
		background: #fff;
		color: #000;
		transform: scale(1.05);
		box-shadow: 0px 0px 64px white;
	}

	.social-links a:hover {
		color: #fff;
		filter: drop-shadow(0px 0px 16px #fff);
	}
}
