@media screen and (max-width: 1400px) {
	.sidepanel,
	.mobile-navigation {
		display: flex !important;
	}

	.header .navigation,
	.header .contact-us {
		display: none !important;
	}

	.grid:not(.splide__list).three {
		grid-template-columns: 1fr 1fr !important;
	}

	.grid:not(.splide__list).four {
		grid-template-columns: 1fr 1fr 1fr !important;
	}

	.grid:not(.splide__list).five {
		grid-template-columns: 1fr 1fr 1fr !important;
	}
}

@media screen and (max-width: 900px) {
	.main {
		padding-top: 50px !important;
	}

	.grid:not(.splide__list).two {
		grid-template-columns: 1fr !important;
	}

	.grid:not(.splide__list).three {
		grid-template-columns: 1fr !important;
	}

	.grid:not(.splide__list).four {
		grid-template-columns: 1fr 1fr !important;
	}

	.grid:not(.splide__list).five {
		grid-template-columns: 1fr 1fr !important;
	}

	.footer {
		padding: 40px 0 !important;

		.top {
			flex-direction: column !important;

			.column {
				width: 100% !important;

				.links {
					align-items: start !important;
				}
			}
		}

		.bottom {
			flex-direction: column !important;
			gap: 10px !important;
			align-items: start !important;
		}
	}

	.article .split {
		flex-direction: column;
		gap: 20px !important;
	}

	.article .content {
		margin-top: 10px !important;
	}
}

@media screen and (max-width: 600px) {
	.footer .top .column {
		flex-direction: column !important;
	}
}

:root {
	--color: #ffffff;
	--theme: #fe4024;
	--background: #18191b;
	--content-width: 90%;
	--content-max: 1010px;
}

@font-face {
	font-display: swap;
	font-family: "ClashDisplay";
	src: url(/ClashDisplay.ttf);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: "ClashDisplay";
}

body {
	color: var(--color);
	min-height: 100%;
	overflow-x: hidden;
	font-family: "ClashDisplay";
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	background-color: var(--background);
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

a {
	text-decoration: none;
	color: var(--color);
}

button {
	border: none;
	color: var(--color);
	cursor: pointer;
	padding: 11px 15px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 5px;
	background: var(--theme);
	transition: 0.5s;
}

button:hover {
	color: var(--theme) !important;
	background: var(--color) !important;
	transition: 0.5s;
}

video.background {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	opacity: 0.3;
	z-index: -1;
}

body:has(video.background) .main {
	position: relative;
	z-index: -1;
}

.app-title {
	left: -999px;
	position: absolute;
}

.header {
	display: flex;
	padding: 10px;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	position: sticky;
	top: 0;
	background-color: var(--background);
	z-index: 1;

	.inner {
		display: flex;
		width: var(--content-width);
		max-width: var(--content-max);
		justify-content: space-between;
		align-items: center;

		.logo {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 20px;

			img {
				width: 75px;
				height: 75px;
			}

			h5 {
				font-size: 16px;
				font-weight: 600;
			}
		}

		.navigation {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 25px;

			.links {
				display: flex;
				justify-content: center;
				align-items: center;
				gap: 16px;

				.link {
					font-size: 16px;
					font-weight: 600;
				}

				.link:hover {
					color: var(--theme);
				}
			}

			.buttons {
				display: flex;
				justify-content: center;
				align-items: center;
				gap: 16px;
			}
		}

		.contact-us button {
			border: none;
			width: 150px;
			color: #000;
			padding: 15px;
			font-size: 16px;
			cursor: pointer;
			transition: 0.3s;
			border-radius: 50px;
			font-family: "ClashDisplay";
			background-color: transparent;
			border: 2px solid var(--color);
		}

		.contact-us button:hover {
			color: var(--color);
			background-color: var(--color);
		}

		.mobile-navigation {
			width: 30px;
			height: 30px;
			display: none;
			align-items: center;
			background: transparent;
			transition: all 250ms ease-out;
		}

		.mobile-navigation:hover {
			cursor: pointer;
		}

		.mobile-navigation::before,
		.mobile-navigation::after {
			content: "";
			width: 30px;
			height: 2px;
			position: absolute;
			background: var(--color);
			transition: all 250ms ease-out;
		}

		.mobile-navigation::before {
			transform: translateY(-3px);
		}

		.mobile-navigation::after {
			transform: translateY(3px);
		}
	}
}

.sidepanel {
	top: 0;
	right: -300px;
	width: 300px;
	gap: 25px;
	z-index: 100;
	height: 100%;
	display: none;
	position: fixed;
	transition: 0.5s;
	padding-top: 120px;
	overflow-x: hidden;
	flex-direction: column;
	background-color: var(--background);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

	.closebtn {
		top: 20px;
		right: 35px;
		cursor: pointer;
		font-size: 28px;
		position: absolute;
		font-family: "ClashDisplay";
		transform: translate(-50%, 50%);
	}

	.group {
		display: flex;
		margin: 0 35px;
		flex-direction: column;

		.title {
			font-size: 20px;
			letter-spacing: 4px;
			margin-bottom: 10px;
			text-transform: uppercase;
		}

		.link {
			color: var(--color);
			padding: 12px 0;
			font-size: 20px;
			position: relative;
			transition: 0.1s;
		}

		.link:after {
			background: none repeat scroll 0 0 transparent;
			left: 0%;
			width: 0;
			content: "";
			height: 2px;
			bottom: 0px;
			display: block;
			position: absolute;
			border-radius: 20px;
			background: var(--theme);
			transition: width 0.3s ease 0s, left 0.3s ease 0s;
		}

		.link:hover {
			background: var(--color);
			background-clip: text;
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
		}

		.link:hover::after {
			left: 0%;
			width: 10%;
		}
	}

	.contact-us {
		display: flex;
		margin: 0 35px;

		button {
			width: 150px;
			padding: 15px;
			color: #000;
			font-size: 16px;
			transition: 0.3s;
			border-radius: 50px;
			background-color: transparent;
			border: 2px solid var(--color);
		}

		button:hover {
			color: var(--color);
			background-color: var(--color);
		}
	}
}

.main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding: 100px 0;
	width: var(--content-width);
	max-width: var(--content-max);
	overflow: hidden;
}

.basic {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: -webkit-fill-available;
	max-width: var(--content-max);

	.wide {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;

		h2 {
			font-size: 25px;
			font-weight: 600;
		}

		p {
			font-size: 17px;
			font-weight: 500;
		}

		button {
			display: flex;
			padding: 10px 20px;
			justify-content: center;
			align-items: center;
			font-size: 13px;
			font-weight: 600;
			border-radius: 6px;
			border: 1px solid #e4e4e7;
			background: transparent;
		}

		.arrows {
			display: flex;
			justify-content: flex-end;
			align-items: center;
			gap: 7px;

			button {
				display: flex;
				padding: 9.5px 17px;
				border: none;
				border-radius: 41px;
				background-color: var(--background);
				color: #68676a;
				font-size: 20px;
				font-weight: 500;
				position: unset;
				transform: unset;
				z-index: unset;
				transition: 0.1s;
			}

			button:hover {
				background: var(--theme) !important;
				color: var(--color) !important;
			}
		}
	}

	.track {
		overflow: visible;
	}
}

@keyframes glowing {
	0% {
		text-shadow: 0 0 15px #4fdc45;
	}
	50% {
		text-shadow: 0 0 20px #4fdc45;
	}
	100% {
		text-shadow: 0 0 15px #4fdc45;
	}
}

.grid {
	.item {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		border: 1px solid transparent;
		border-radius: 0;
		transition: 0.1s;

		img {
			width: 100%;
			border-radius: 6px;
			cursor: pointer;
		}

		p {
			color: #b4b4b5;
			font-size: 14px;
			font-weight: 600;
		}

		.glowing {
			color: #4fdc45 !important;
			animation: glowing 1.5s infinite alternate;
		}
	}

	.item:hover {
		margin-top: -10px;
		margin-bottom: 10px;
	}

	.card.news {
		align-items: flex-start;
		border: none;
		border-radius: 10px;
		background: #18191b;
		background-size: contain;
		background-repeat: no-repeat;
		padding-top: 185px;

		.text {
			display: flex;
			padding: 20px 25px;
			flex-direction: column;
			align-items: flex-start;
			gap: 15px;
			align-self: stretch;
			background-color: var(--background);
			border-radius: 0 0 6px 6px;

			h5 {
				font-size: 20px;
				font-weight: 600;
			}
		}
	}

	.card.reviews {
		padding: 25px 30px 30px 30px;
		align-items: flex-start;
		gap: -10px;
		color: #9ba3ae;
		border-radius: 6px;
		background: #18191b;

		h1 {
			font-size: 70px;
			font-weight: 600;
		}

		.inner {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 30px;

			h4 {
				font-size: 20px;
				font-weight: 500;
			}

			.author {
				display: flex;
				align-items: center;
				gap: 16px;

				img {
					width: 67px;
					height: 67px;
					border-radius: 100px;
				}

				.info {
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: flex-start;
					gap: 10px;

					h4 {
						color: #fff;
						font-weight: 600;
					}

					.stars {
						font-size: 15px;
						letter-spacing: 6.75px;
					}
				}
			}
		}
	}
}

.grid:not(.splide__list) {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

.grid:not(.splide__list).two {
	grid-template-columns: 1fr 1fr;
}

.grid:not(.splide__list).three {
	grid-template-columns: 1fr 1fr 1fr;
}

.grid:not(.splide__list).four {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid:not(.splide__list).five {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.features {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 90%;
	gap: 30px;

	.feature {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;

		i {
			font-size: 30px;
		}

		h3 {
			font-size: x-large;
		}

		p {
			font-size: large;
		}
	}
}

.footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 50px;
	gap: 40px;
	align-self: stretch;
	background-color: var(--background);

	.top {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		gap: 50px;
		width: var(--content-width);
		max-width: var(--content-max);

		.column {
			display: flex;
			align-items: flex-start;
			gap: 50px;

			.logo {
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				gap: 5px;

				img {
					height: 75px;
				}

				h1 {
					font-size: 30px;
					font-weight: 600;
				}

				h3 {
					max-width: 400px;
					color: #71717a;
					font-size: 20px;
					font-weight: 500;
				}
			}

			.links {
				display: flex;
				flex-direction: column;
				align-items: flex-end;
				gap: 5px;

				h2 {
					color: #fff;
					font-size: 25px;
				}

				.link {
					color: #71717a;
					font-size: 20px;
					font-weight: 500;
					transition: 0.1s;
				}

				.link:hover {
					color: var(--theme);
				}
			}
		}
	}

	.bottom {
		display: flex;
		width: var(--content-width);
		max-width: var(--content-max);
		justify-content: space-between;
		align-items: center;

		p {
			color: #71717a;
			font-size: 12px;
			font-weight: 500;
		}
	}
}

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: stretch;

	h2 {
		font-size: 50px;
	}

	img {
		height: 200px;
	}
}

.article {
	gap: 20px;
	padding: 40px 0;

	img {
		width: 100%;
	}

	a {
		color: var(--theme);
	}

	.split {
		width: 100%;
		max-width: 1000px;
		display: flex;
		justify-content: space-between;
		gap: 50px;

		.left {
			display: flex;
			flex-direction: column;
			gap: 20px;

			h5:has(.date) {
				display: flex;
				align-items: flex-end;
				gap: 7px;

				.date {
					color: var(--theme);
				}
			}
		}

		.right .icons {
			display: grid;
			grid-template-columns: repeat(3, minmax(0, 1fr));
			gap: 5px;
			width: max-content;

			i {
				cursor: pointer;
				transition: 0.5s;
			}

			i:hover {
				margin-top: -4px;
				color: var(--theme);
				transition: 0.5s;
			}
		}
	}

	.content {
		width: 100%;
		max-width: 1000px;
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-top: 25px;
		line-height: 30px;
		letter-spacing: 0.5px;

		iframe {
			border: none;
			width: 100%;
			max-width: 1000px;
			height: 400px;
		}

		img {
			border-radius: 5px;
		}
	}
}
