html,
body {
	background: #040404 url("../images/bg-top.jpg") 50% 0 no-repeat;
	color: #fff;
	font: normal 12px/1.5 "Trebuchet MS", Arial, sans-serif;
	font-family: "Roboto";
}
.container {
	padding: 20px;
	max-width: 1100px;
	margin: 0 auto;
}
.container {
	background-color: #12151c;
	padding: 40px 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}
.games {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 2px;
}
.game-column {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border-radius: 7px;
}
.game-column__image {
	border-radius: 7px 7px 0 0;
	height: 260px;
	overflow: hidden;
	border: 1px solid #20222e;
	border-bottom: none;
}
.game-column__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: ease-in-out 0.4s;
	filter: grayscale(0.5);
}
.game-column:hover .game-column__image img {
	transform: scale(1.1);
	transition: ease-in 0.5s;
	filter: grayscale(0);
}
.rar {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	padding: 5px 10px;
	border-radius: 0 0 7px 7px;
	color: white;
	border: 1px solid #20222e;
	border-top: none;
	text-transform: capitalize;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	font-size: 10px;
	transition: ease-in-out 0.7s;
}

.rar:hover {
	background: rgb(255, 255, 255);
	transition: ease-in 0.8s;
	color: black;
}

.rar img {
	margin-right: 1rem;
	width: 2rem;
}

.highlight {
	display: block;
	color: #0e77e7;
	padding: 0.05rem 0.25rem;
	background: rgba(56, 112, 255, 0.2);
	border-radius: 0.3rem;
	font-weight: bold;
	cursor: pointer;
	transition: ease-in-out 0.7s;
}

.highlight:hover {
	color: black;
	background: #0e77e7;
	transition: ease-in 0.8s;
}

.sb-banner {
	max-width: 500px;
	margin: 30px auto;
	display: flex;
	align-items: center;
	color: #fff;
	border: 2px solid #00b4ff;
	border-radius: 10px;
	transition: ease-in-out 0.7s;
	text-decoration: none;
	padding: 10px;
}
.sb-banner:hover {
	background: rgba(0, 179, 255, 0.576);
	transition: ease-in 0.8s;
}

.sb-banner img {
	width: 10rem;
	pointer-events: none;
}

.sb-banner h1 {
	font-size: 32px;
	font-weight: 900;
	line-height: normal;
	margin: 0;
}

.sb-banner h6 {
	font-size: 10px;
	margin: 0;
	line-height: normal;
	font-weight: 100;
	text-transform: uppercase;
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-end {
	justify-content: end;
}

.text-gray {
	color: gray;
}

.text-red-500 {
	color: red;
}

.presentation {
	gap: 20px;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 16px;
}

.presentation > img {
	width: 50%;
	border-radius: 10px;
    object-fit: cover;
}

.presentation > div {
	width: 50%;
}

.presentation h1 {
	font-size: 30px;
}

.presentation span:not(.highlight) {
	color: gray;
	margin-right: 10px;
}

.mb-3 {
	margin-bottom: 0.3125rem !important;
}

.mb-8 {
	margin-bottom: 1rem !important;
}

p {
	margin: 0;
}

.presentation-content {
	font-size: 15px;
	font-weight: bold;
}

.presentation-content div {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 2px solid #1a1d26;
}
.presentation-content a {
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 0.3rem;
	transition: ease-in-out 0.7s;
}

.presentation-content a:first-child {
	background: rgb(209, 5, 5, 0.2);
	color: rgba(255, 1, 1, 1);
	text-transform: uppercase;
	margin-right: 10px;
}

.presentation-content a:last-child {
	background-color: #20222e;
	color: gray;
}
.presentation-content a:hover {
	background: red;
	color: black;
	transition: ease-in-out 0.7s;
}

#latest-version {
	font-size: 15px;
	font-weight: bold;
}

#latest-version h3 {
	margin: 0 0 10px 0;
}
#latest-version h1 {
	font-size: 20px;
}
#latest-version p {
	color: gray;
}

#latest-version > div div:first-child {
	max-width: 60%;
}
#latest-version > div div:last-child {
	max-width: 35%;
}

#latest-version .rar {
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.47);
	border-radius: 7px;
	font-size: 15px;
}
#latest-version .rar:hover {
	background: white;
}
#latest-version small {
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	.container {
		max-width: 100%;
	}
	.games {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2px;
	}
	.sb-banner {
		max-width: 100%;
	}

	.presentation {
		flex-direction: column;
	}

	.presentation > img {
		width: 100%;
	}

	.presentation > div {
		width: 100%;
	}

	#latest-version > div {
		flex-direction: column;
	}
	#latest-version > div div:first-child {
		max-width: 100%;
	}
	#latest-version > div div:last-child {
		max-width: 100%;
	}

	center a {
		overflow: hidden;
		max-width: 100vw;
		display: block;
	}
}
