/*Google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@font-face
{
	font-family: "Payday";
    src: url('../Fonts/Payday.ttf') format('truetype');
}

*
{
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	scroll-padding-top: 2rem;
}


/*Variables*/
:root
{
	--main-color: #fa5353;
	--dark-color: #1b182b;
	--light-color: #322f40;
	--text-color: hsl(0, 0%, 91%);
}

::selection	
{
	color: var(--text-color);
	background: var(--main-color);
}

img
{
	width: 100%;
}

section 
{
	padding: 4rem 0 3rem;
}

body
{
	color: var(--text-color);
	background: var(--dark-color);
	padding: 45px 2rem;
}

.container
{
	max-width: 1068px;
	margin: auto;
	width: 100%;
}

/*Header*/

header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--dark-color);
	z-index: 100;
}

/*Navbar*/

.largeNavbar
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 0;
}

.logo 
{
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-color);
	text-transform: uppercase;
	margin: 0 auto 0 0;
}

.logo span
{
	color: var(--main-color);
}

/*Navigation bar icons*/

.nav-icons
{
	display: flex;
	allign-items: center;
	column-gap: 1rem;
}

.nav-icons .bx
{
	font-size: 20px;
	height: 44px;
	width: 44px;
	display: grid;
	place-items: center;
	color: var(--text-color);
	background: var(--light-color);
	border-radius: 50%;
	cursor: pointer;
}

#bellIcon
{
	position: relative;
}

#bellIcon span
{
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--main-color);
	position: absolute;
	top: 10px;
	right: 14px;
}

.menuIcon
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 5px;
	height: 44px;
	width: 44px;
	border-radius: 50%;
	background: var(--light-color);
	cursor: pointer;
	z-index: 200;
	transition: 0.3s;
}

.menuIcon div
{
	display: block;
	background: var(--text-color);
	height: 2px;
	width: 25px;
	transition: 0.3s;
}

.move .Line1
{
	transform: rotate(-45deg) translate(-5px, 5px);
}
.move .Line2
{
	opacity: 0;
}
.move .Line3
{
	transform: rotate(45deg) translate(-5px, -5px);
}

/*Menu*/

.menu
{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 14, 0.9);
	z-index: 106;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: 0.5s;
	clip-path: circle(0% at 100% 0%);
}

.menu.active
{
	clip-path: circle(144% at 100% 0%);
}

.menu img
{
	width: 800px;
}

.smallNavbar
{
	display: grid;
	row-gap: 1rem;
	text-align: right;
	padding-right: 2rem;
}

.smallNavbar a
{
	font-size: 1.6rem;
	color: var(--text-color);
	font-weight: 500;
	transition: 0.2s;
}

.smallNavbar a:hover
{
	border-bottom: 4px solid var(--main-color);
	font-size: 1.8rem;
}

/*Notifcation*/

.notification
{
	position: absolute;
	top: 110%;
	right: 5rem;
	background: var(--light-color);
	width: 300px;
	height: 350px;
	border-radius: 0.5rem;
	padding: 10px;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	clip-path: circle(0% at 100% 0%);
}

.notification.active
{
	clip-path: circle(144% at 100% 0%);
	transition: 0.3s;
}

.notificationBox
{
	display: flex;
	align-items: baseline;
	column-gap: 1rem;
	border-radius: 0.5rem;
	background: hsl(0, 0%, 100%, 0.4);
	padding: 10px;
}

.notificationBox .bx
{
	color: var(--main-color);
}

.boxColour
{
	background: var(--dark-color);
}

.boxColour .bx
{
	color: #5dfa02; 
}

/*Index*/

.home 
{
	position: relative;
	min-height: 540px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.home img
{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1.4rem;
	z-index: -1;
}

.homeText
{
	padding-right: 4rem;
	text-align: center;
}

.homeText h1
{
	font-size: 3rem;
	text-transform: uppercase;
	color: var(--dark-color);
	margin-bottom: 1rem;
	font-family: "Payday";
}

.button
{
	background: var(--main-color);
	padding: 15px 20px;
	color: var(--text-color);
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 1px;
	font-weight: 500;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%, 0% 68%);
}

.button:hover
{
	background: var(--light-color);
	transition: 0.3s all linear;
}

.heading
{
	display: flex;
	align-items: center;
	column-gap: 1rem;
	margin-bottom: 2rem;
}

.heading .bx
{
	font-size: 21px;
	color: var(--text-color);
	background: var(--main-color);
	padding: 10px;
	border-radius: 5rem;
}

.heading h2
{
	font-size: 1.2rem;
	font-weight: 500;
}

.box
{
	position: relative;
	width: 100%;
	height: 350px;
	border-radius: 0.5rem;
}

.box img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}

.box .box-text
{
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	padding: 10px;
	background: hsl(227, 14%, 20%, 0.8);
	border-radius: 0.5rem;
}

.box .box-text h2
{
	font-size: 1rem;
	font-weight: 500;
}

.box .box-text h3
{
	font-size: 0.9rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.rating-download
{
	display: flex;
	justify-content: space-between;
}

.rating
{
	display: flex;
	align-items: center;
	column-gap: 4px;
	background: hsl(0, 0%, 100%, 0.4);
	padding: 4px 10px;
	border-radius: 0.5;
}

.rating .bx 
{
	color: #faf102;
	font-size: 0.9rem;
}

.rating span 
{
	color: #faf102;
	font-size: 0.9rem;
}

.box-btn .bx 
{
	padding: 8px;
	background: var(--text-color);
	border-radius: 5rem;
	color: var(--main-color);
	font-weight: 400;
	font-size: 20px;
}

.box-btn .bx:hover
{
	background: var(--dark-color);
}

.RecentlyAdded-content
{
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(240px,auto));
	gap: 1.2rem;
}

.next-page
{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3rem;
}

.next-page a
{
	background: var(--main-color);
	padding: 12px 20px;
	color: var(--text-color);
	letter-spacing: 1px;
	font-weight: 500;
}

.next-page a:hover	
{
	background: var(--light-color);
	transition: 0.3s all linear;

}

.copyright
{
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

/*
.copyright p
{
	font-size: 0.9rem;
}
*/

.videoContainer iframe
{
	width: 100%;
	aspect-ratio: 16/9;
}

.videoContainer
{
	margin-top: 1rem;
}

.about
{
	margin-top: 2rem;
}

.about h2, .title
{
	display: inline-flex;
	font-size: 1.4rem;
	font-weight: 500;
	border-bottom: 4px solid var(--main-color);
}

.about p
{
	font-size: 0.938rem;
	margin-top: 1rem;
	text-align: justify;
}

.screenshots h2
{
	margin: 1.6rem 0;
}

.screenshotContent
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px,auto));
	gap: 10px;
	justify-content: center;
	max-width: 800px;
	margin: auto;
	width: 100%;
}

.screenshotContent img
{
	width: 100%;
	height: 440px;
	object-fit: cover;
}

.gameIcon
{
	max-width: 800px;
	margin: auto;
	width: 100%;
	display: grid;
	justify-content: center;
	margin-top: 2rem;
}

.download h2
{
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	margin: 1.6rem 0;
}

.downloadLinks
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 2rem;
}

.downloadLinks a
{
	text-align: center;
	background: var(--main-color);
	padding: 12px 20px;
	color: var(--text-color);
	letter-spacing: 1px;
	font-weight: 500;
}

.downloadLinks a:hover
{
	background: var(--light-color);
	transition: 0.5s all linear;
}

/*Scroll Bar*/

html::-webkit-scrollbar
{
	display: none;
}

html
{
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.progress
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	z-index: 300;
}

.progressBar
{
	height: 4px;
	background: var(--main-color);
	width: 100%;
}

span.swiper-pagination-bullet
{
	border-radius: 0;
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,20px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,20px));
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction
{
	bottom: -230px !important;
}

#iIcon
{
	background: black;
}

#RecentlyAdded
{
	margin-bottom: 5rem;
}

.indexTitle
{
	margin-top: 3rem;
	text-align: center;
	font-size: 1.4rem;
}

.index
{
	color: var(--main-color);
}

.Seperator 
{
	margin-top: 4rem;
}

/*Screen Sizes*/

/*Small devices (landscape phones, 576px and up)*/
/*@media (min-width: 576px) {}*/

/*Medium devices (tablets, 768px and up)*/
/*@media (min-width: 768px) {}*/

/*Large devices (desktops, 992px and up)*/
/*@media (min-width: 992px) {}*/

/*Extra large devices (large desktops, 1200px and up)*/
/*@media (min-width: 1200px) {}*/
