@media screen and (max-width: 1400px) {
	.grid:not(.splide__list).two {
		grid-template-columns: 1fr !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;
	}

	.grid:not(.splide__list).six {
		grid-template-columns: 1fr 1fr 1fr !important;
	}
}

@media screen and (max-width: 1100px) {
	body {
		flex-direction: column !important;
	}

	aside {
		min-height: unset !important;
		gap: 10px !important;
		position: relative !important;
		padding-bottom: 25px;

		.navigation.categories {
			display: none !important;
		}

		.ad {
			display: none;
		}
	}

	.main:not(.article) {
		width: -webkit-fill-available !important;
		max-width: -webkit-fill-available !important;
	}

	.banner h1 {
		font-size: 22.5px !important;
	}
}

@media screen and (max-width: 900px) {
	.hero.full {
		padding-top: 0 !important;
	}

	.article {
		padding-top: 10px !important;
	}

	.grid:not(.splide__list).three {
		grid-template-columns: 1fr !important;
	}

	.grid:not(.splide__list).four {
		grid-template-columns: 1fr !important;
	}

	.grid:not(.splide__list).five {
		grid-template-columns: 1fr !important;
	}

	.grid:not(.splide__list).six {
		grid-template-columns: 1fr !important;
	}

	.footer {
		padding: 40px 0 !important;

		.top {
			flex-direction: column !important;

			.column {
				width: 100% !important;

				.logo h3 {
					max-width: -webkit-fill-available !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;
	}

	.banner {
		display: none !important;
	}

	.list .item {
		flex-direction: column !important;
		align-items: stretch !important;
		padding-right: 0 !important;

		> a:has(button) {
			padding: 0 0 25px 25px;
			margin-top: -50px;
		}

		.logo {
			border-top-left-radius: 7.5px !important;
			border-top-right-radius: 7.5px;
			border-bottom-left-radius: 0 !important;
			border-bottom-right-radius: 0;
		}

		.rewardInfo {
			padding: 20px 25px 5px 25px !important;
		}
	}

	.site {
		flex-direction: column;

		.siteCard {
			width: -webkit-fill-available;
		}

		.proscons {
			flex-direction: column;
		}
	}
}

@media screen and (max-width: 600px) {
	.footer .top .column {
		flex-direction: column !important;
	}
}

:root {
	--content-width: 90%;
	--content-max: 90%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: "Chakra Petch";
}

@keyframes animatedBackground {
	from {
		background-position: -1000px -500px;
	}
	to {
		background-position: 1000px 500px;
	}
}

body {
	color: var(--color);
	min-height: 100%;
	overflow-x: hidden;
	font-family: "Chakra Petch";
	background-size: cover;
	background-position: top;
	background-repeat: repeat;
	background-color: var(--background);
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	animation: animatedBackground 180s linear infinite alternate;
}

a {
	text-decoration: none;
	color: var(--color);
}

button {
	border: none;
	color: var(--background);
	cursor: pointer;
	padding: 11px 15px;
	font-size: 14px;
	font-weight: 900;
	border-radius: 5px;
	background: var(--theme);
	min-width: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7.5px;
	transition: 0.5s;
}

button:hover {
	opacity: 0.75;
	transition: 0.5s;
}

button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

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;
}

aside {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: start;
	align-self: stretch;
	gap: 20px;
	position: sticky;
	top: 0;
	background-color: var(--background);
	z-index: 1;
	min-width: min(230px, 100%);
	height: fit-content;
	min-height: 100vh;

	.logo {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
		padding: 10px 20px 10px 20px;
		box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 4px 0px;

		img {
			width: auto;
			height: 40px;
		}

		h5 {
			font-size: 25px;
			font-weight: 900;
		}
	}

	.navigation {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 25px;
		width: -webkit-fill-available;
		padding: 0 25px 0 25px;

		.links {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			width: -webkit-fill-available;

			.link {
				font-size: 16px;
				font-weight: 900;
				width: -webkit-fill-available;
				padding: 10px 15px;
				background: var(--background-light);
				display: flex;
				align-items: center;
				gap: 7.5px;
				cursor: pointer;
				transition: 0.5s;

				i {
					font-size: 12px;
				}

				img {
					height: 21px;
				}
			}

			.link:first-child {
				border-top-left-radius: 5px;
				border-top-right-radius: 5px;
			}

			.link:last-child {
				border-bottom-left-radius: 5px;
				border-bottom-right-radius: 5px;
			}

			.link:hover {
				color: var(--theme);
				background: var(--background-lighter);
				transition: 0.5s;
			}
		}

		.buttons {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			gap: 16px;
			width: -webkit-fill-available;

			a,
			button {
				width: -webkit-fill-available;
			}
		}

		> h4 {
			margin-bottom: -15px;
			margin-right: auto;
		}
	}

	.contact-us button {
		border: none;
		width: 150px;
		color: #000;
		padding: 15px;
		font-size: 16px;
		cursor: pointer;
		transition: 0.3s;
		border-radius: 50px;
		font-family: "Chakra Petch";
		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);
	}

	.ad {
		padding: 25px;
		margin-top: auto;
	}
}

.main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding-top: 50px;
	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: 900;
		}

		p {
			font-size: 17px;
			font-weight: 500;
		}

		button {
			display: flex;
			padding: 10px 20px;
			justify-content: center;
			align-items: center;
			font-size: 13px;
			font-weight: 900;
			border-radius: 6px;
			border: 1px solid var(--color);
			background: transparent;
			color: var(--color);
		}

		.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 var(--theme);
	}
	50% {
		text-shadow: 0 0 20px var(--theme);
	}
	100% {
		text-shadow: 0 0 15px var(--theme);
	}
}

@keyframes boxGlowing {
	0% {
		box-shadow: 0 0 0px var(--theme);
	}
	50% {
		box-shadow: 0 0 0px var(--theme);
	}
	100% {
		box-shadow: 0 0 15px var(--theme);
	}
}

.glowing {
	animation: glowing 1.5s infinite alternate;
}

.boxGlowing {
	animation: boxGlowing 1.5s infinite alternate;
}

.grid {
	gap: 15px;

	.item {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		border: 1px solid transparent;
		border-radius: 0;
		margin: 0 !important;
		transition: 0.1s;

		> i {
			display: flex;
			position: absolute;
			top: -12px;
			right: -12px;
			font-size: 150px;
			opacity: 3%;
		}

		> img {
			width: 100%;
			border-radius: 6px;
			cursor: pointer;
		}

		p {
			color: var(--color);
			opacity: 0.65;
			font-size: 14px;
			font-weight: 900;
		}

		.glowing {
			color: var(--theme) !important;
		}
	}

	.item:hover {
		margin-top: -5px;
		margin-bottom: 5px;

		> i {
			opacity: 5%;
		}
	}

	.card.news {
		align-items: flex-start;
		border: none;
		border-radius: 10px;
		background: #18191b;
		background-size: cover;
		background-position: center;
		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;

			p {
				margin-top: -10px;
			}
		}
	}

	.card.news:has(img) {
		padding: 10px;

		.text {
			padding: 7.5px 10px 10px 10px;
			border-radius: 10px;
		}
	}

	.card.reviews {
		padding: 25px 30px 30px 30px;
		align-items: flex-start;
		color: #9ba3ae;
		border-radius: 6px;
		background: #18191b;
		position: relative;

		h1 {
			font-size: 70px;
			font-weight: 900;
			margin-bottom: -30px;
		}

		h2 {
			position: absolute;
			top: 20px;
			right: 25px;
			opacity: 0.5;
		}

		.inner {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 10px;

			h4 {
				font-size: 20px;
				font-weight: 500;
			}

			.info {
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: flex-start;
				gap: 10px;

				h4 {
					color: #fff;
					font-weight: 900;
				}

				.stars {
					display: flex;
					gap: 1px;
					filter: grayscale(100%);
				}
			}
		}
	}

	.card.reviews.pending {
		opacity: 0.5;
	}
}

.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;
}

.grid:not(.splide__list).six {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	white-space: nowrap;

	.item {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		border-radius: 7.5px;
		background-color: var(--background);
		padding-right: 25px;
		position: relative;

		.logo {
			display: flex;
			align-items: center;
			gap: 15px;
			padding: 15px 25px 15px 15px;
			background-color: var(--background-light);
			min-width: min(225px, 100%);
			border-top-left-radius: 7.5px;
			border-bottom-left-radius: 7.5px;

			img {
				height: 70px;
				width: 70px;
				border: 4px solid var(--background-lighter);
				border-radius: 100%;
			}

			h4 {
				font-size: 16px;
			}
		}

		.rewardInfo {
			display: flex;
			flex-direction: column;
			padding: 15px 0 15px 15px;
			width: -webkit-fill-available;

			p {
				color: var(--theme);
				font-weight: 700;
				text-shadow: 0 0 3px var(--theme);
				cursor: pointer;
			}

			p::before {
				content: "Redeem Code: ";
				color: var(--color);
				text-shadow: none;
			}
		}

		.rating {
			display: flex;
			flex-direction: column;
			align-items: flex-end;
			gap: 2px;
			padding: 15px 25px 15px 0;
			width: -webkit-fill-available;

			.stars {
				display: flex;
				gap: 1px;

				img {
					filter: grayscale(100%);
				}
			}
		}
	}

	.item .logo:hover {
		img {
			border-color: var(--theme);
		}
	}
}

.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;
		}
	}
}

.games .item {
	padding: 25px 30px 30px 30px;
	align-items: flex-start;
	color: var(--color);
	border-radius: 6px;
	background: #18191b;
	overflow: hidden;
	margin: 0 !important;

	h3 {
		display: flex;
		align-items: center;
		gap: 5px;

		img {
			height: 21px;
			margin-left: -16px;
		}
	}
}

.sites {
	.item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		gap: 15px;
		border-radius: 7.5px;
		background-color: var(--background);
		padding-right: 25px;
		width: -webkit-fill-available;
		min-width: min(300px, 100%);
		padding: 25px;
		position: relative;

		> img {
			height: 95px;
			width: 95px;
			border: 5px solid var(--background-lighter);
			border-radius: 100%;
			cursor: pointer;
		}

		> img:hover {
			border-color: var(--theme);
		}

		h4 {
			font-size: 16px;
			text-transform: uppercase;
		}

		.rating {
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 7.5px 17.5px;
			gap: 1px;
			width: -webkit-fill-available;
			background: radial-gradient(
				circle,
				var(--background-light) 0,
				var(--background) 100%
			);
			border: 1px dashed var(--background-lighter);

			img {
				filter: grayscale(100%);
				width: 15px;
			}
		}

		.rewardInfo {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 5px;
			padding: 15px 25px;
			width: -webkit-fill-available;
			background: radial-gradient(
				circle,
				var(--background-light) 0,
				var(--background) 100%
			);
			border: 1px dashed var(--background-lighter);
			text-align: center;
			margin-top: -10px;

			p {
				color: var(--theme);
				font-weight: 700;
				text-shadow: 0 0 3px var(--theme);
				cursor: pointer;
			}

			p::before {
				content: "Redeem Code: ";
				color: var(--color);
				text-shadow: none;
			}

			p:hover {
				opacity: 1;
			}
		}

		a,
		button {
			width: -webkit-fill-available;
		}
	}
}

.sites.featured {
	.rating {
		padding: 0;
		width: unset;
		background: none;
		border: none;
	}

	.rewardInfo {
		margin-top: 0;
	}
}

.site {
	display: flex;
	align-items: flex-start;
	gap: 50px;
	width: var(--content-width);
	max-width: var(--content-max);

	.siteCard {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		gap: 15px;
		border-radius: 7.5px;
		background-color: var(--background);
		padding-right: 25px;
		min-width: min(300px, 100%);
		padding: 25px;
		position: relative;

		> img {
			height: 95px;
			width: 95px;
			border: 5px solid var(--background-lighter);
			border-radius: 100%;
			cursor: pointer;
		}

		> img:hover {
			border-color: var(--theme);
		}

		h4 {
			font-size: 16px;
			text-transform: uppercase;
			text-align: center;
		}

		.rating {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 1px;

			img {
				filter: grayscale(100%);
				width: 15px;
			}
		}

		.rewardInfo {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 10px;
			padding: 15px;
			width: -webkit-fill-available;
			background: radial-gradient(
				circle,
				var(--background-light) 0,
				var(--background) 100%
			);
			border: 1px dashed var(--background-lighter);
			text-align: center;

			p {
				color: var(--theme);
				font-weight: 700;
				text-shadow: 0 0 3px var(--theme);
				cursor: pointer;
			}

			p:hover {
				opacity: 1;
			}
		}

		a,
		button {
			width: -webkit-fill-available;
		}
	}

	.siteDetails {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		width: -webkit-fill-available;

		.tab {
			display: none;
			flex-direction: column;
			align-items: flex-start;
			gap: 16px;
			width: -webkit-fill-available;

			.playerReview {
				display: flex;
				align-items: center;
				gap: 15px;

				.rating {
					padding: 12.5px 17.5px 15px 17.5px;
					background: var(--background-light);
					border-radius: 5px;
					display: flex;
					flex-direction: column;
					gap: 5px;
					border: 1px solid var(--background-lighter);

					.stars {
						display: flex;
						gap: 1px;

						img {
							filter: grayscale(100%);
						}
					}
				}

				.text {
					display: flex;
					flex-direction: column;
				}
			}

			.proscons {
				display: flex;
				gap: 7.5px;
				width: -webkit-fill-available;
				margin-bottom: 10px;

				div {
					width: -webkit-fill-available;
					display: flex;
					flex-direction: column;
					gap: 7.5px;
					padding: 30px;
					background: var(--background);
					list-style-position: inside;
					border-radius: 7.5px;
					position: relative;
					border: 1px solid var(--background);

					h3 {
						font-size: 22.5px;
					}
				}

				.pros {
					background: linear-gradient(
							210deg,
							rgba(0, 255, 106, 0.05),
							rgba(0, 255, 157, 0.05)
						),
						var(--background);
				}

				.pros::after {
					content: "\f058";
					font-family: "Font Awesome 6 Free";
					font-weight: 900;
					font-size: 40px;
					position: absolute;
					top: 25px;
					right: 25px;
					opacity: 0.1;
				}

				.cons {
					background: linear-gradient(
							210deg,
							rgba(255, 51, 0, 0.05),
							rgba(255, 0, 0, 0.05)
						),
						var(--background);
				}

				.cons::after {
					content: "\f057";
					font-family: "Font Awesome 6 Free";
					font-weight: 900;
					font-size: 40px;
					position: absolute;
					top: 25px;
					right: 25px;
					opacity: 0.1;
				}
			}

			.images {
				width: -webkit-fill-available;

				.grid {
					gap: 0;
				}

				img {
					width: 100%;
				}
			}

			.grid {
				width: -webkit-fill-available;
			}

			.information {
				width: -webkit-fill-available;
				display: flex;
				flex-direction: column;
				gap: 10px;

				.boxes {
					display: flex;
					flex-direction: column;
					align-items: stretch;
					gap: 5px;

					.box {
						display: flex;
						align-items: stretch;
						gap: 10px;
						background: var(--background);
						padding: 10px 15px;
						border-radius: 5px;

						h3 {
							font-size: 17.5px;
							display: flex;
							align-items: center;
							gap: 10px;
							min-width: 30%;

							i {
								font-size: 15px;
							}
						}

						.tags {
							display: flex;
							gap: 5px;
							flex-wrap: wrap;

							span {
								padding: 7.5px 10px;
								background: var(--background-light);
								border-radius: 5px;
							}
						}
					}
				}
			}

			form {
				background: var(--background);
				padding: 25px;
				border-radius: 7.5px;
				display: flex;
				flex-direction: column;
				align-items: stretch;
				width: -webkit-fill-available;
				gap: 10px;

				input,
				textarea {
					background: var(--background-light);
					border: none;
					outline: none;
					color: var(--color);
					padding: 10px 12.5px;
					border-radius: 5px;
				}

				.stars {
					display: flex;
					gap: 1px;
					filter: grayscale(100%);

					img {
						content: url("/empty-star.webp");
						cursor: pointer;
					}

					img.active {
						content: url("/star.webp");
					}

					img:hover ~ img {
						content: url("/empty-star.webp") !important;
					}
				}

				.stars:has(img:hover) img {
					content: url("/star.webp");
				}
			}
		}

		.tab.active {
			display: flex;
		}
	}
}

.tabs {
	display: flex;
	align-items: flex-start;
	gap: 7.5px;
	padding: 7.5px;
	background: var(--background);
	border-radius: 7.5px;
	width: fit-content;
	overflow: scroll;
	position: relative;

	button {
		background-color: transparent;
		color: var(--color);
	}

	button.active {
		background-color: var(--background-light);
	}
}

.tabs.filters {
	margin-right: auto;
	margin-left: calc((100% - var(--content-width)) / 2);
	max-width: var(--content-max);
}

.tabs.filters.game {
	margin-top: -25px;
	width: 107.5px;
	transition: 0.5s;
}

.tabs.filters.game.expanded {
	width: 100% !important;
	transition: 0.5s;
}

.tabs::-webkit-scrollbar {
	display: none;
}

.item .upvotes,
.siteCard .upvotes {
	position: absolute;
	top: 5px;
	right: 5px;
	background: var(--background-light);
	padding: 1px 3px;
	border: 0.5px solid var(--background-lighter);
	border-radius: 2.5px;
	font-size: 12.5px;
	cursor: pointer;

	i {
		font-size: 10px;
	}
}

.footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 50px;
	gap: 40px;
	align-self: stretch;
	background-color: var(--background);
	margin-top: 20px;

	.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: 15px;

				img {
					height: 75px;
				}

				div {
					display: flex;
					flex-direction: column;
					align-items: flex-start;
					gap: 5px;
				}

				h1 {
					font-size: 30px;
					font-weight: 900;
				}

				h3 {
					max-width: min(750px, 40vw);
					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;
					text-align: right;
					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;
	margin-top: auto;
	margin-bottom: auto;

	h2 {
		font-size: 50px;
	}

	img {
		height: 200px;
	}
}

.hero.full {
	display: flex;
	align-items: flex-start;
	width: -webkit-fill-available;
	padding-top: 50px;
	padding-right: calc((100% - var(--content-width)) / 2);
	padding-left: calc((100% - var(--content-width)) / 2);

	img {
		height: 50px;
	}
}

.article {
	gap: 20px;
	padding: 75px 0 0 0;
	align-self: center;

	> 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;
		}
	}
}

.ad {
	display: flex;
	justify-content: center;
	width: -webkit-fill-available;

	img {
		width: auto;
		max-width: var(--content-max);
		height: auto;
		max-height: 200px;
	}
}

.banner {
	border-radius: 10px;
	position: relative;
	width: var(--content-width);
	max-width: var(--content-max);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--background);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	video {
		border-radius: 10px;
		width: -webkit-fill-available;
	}

	div {
		position: absolute;
		top: 0;
		left: 0;
		width: -webkit-fill-available;
		height: -webkit-fill-available;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	h1 {
		text-align: center;
		max-width: min(500px, 90%);
	}
}

.banner:not(:has(video)) {
	padding: 50px;
}

@keyframes blinking {
	0% {
		color: var(--color);
	}
	100% {
		color: var(--theme);
	}
}

.modal {
	display: flex;
	position: fixed;
	z-index: 100;
	left: calc((100% - var(--content-width)) / 4);
	bottom: calc((100% - var(--content-width)) / 4);
	width: calc(100% - ((100% - var(--content-width)) / 2));
	background: var(--background);
	border: 1px solid var(--background-light);
	border-radius: 7.5px;
	padding: 25px;
	gap: 15px;
	height: fit-content;
	margin-bottom: -100vh;
	transition: 2.5s;

	i {
		font-size: 40px;
		animation: blinking 0.25s linear infinite alternate;
	}

	.content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 2.5px;

		button {
			margin-top: 5px;
		}
	}
}

.modal.active {
	margin-bottom: 0vh;
	transition: 0.5s;
}

.search {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	padding: 10vh 1vw;
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);

	input {
		width: -webkit-fill-available;
		max-width: 500px;
		padding: 15px;
		font-size: 20px;
		border: none;
		border-radius: 5px;
		outline: none;
		background: var(--background);
		color: var(--color);
	}

	.results {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: start;
		gap: 15px;
		width: -webkit-fill-available;
		max-width: 500px;
		padding: 15px;
		background: var(--background);
		border-radius: 5px;
		margin-top: -50px;
		z-index: -1;
		max-height: -webkit-fill-available;
		overflow: scroll;
		transition: 0.5s;

		.result {
			display: flex;
			align-items: center;
			gap: 10px;

			img {
				width: 50px;
				height: 50px;
				border-radius: 100%;
			}

			i {
				margin-right: 5px;
			}

			h5 {
				margin-left: auto;
			}
		}
	}

	.results:not(:empty) {
		margin-top: 0;
		transition: 0.5s;
	}

	.results::-webkit-scrollbar {
		display: none;
	}
}

.search.active {
	display: flex;
}

.accordion {
	width: -webkit-fill-available;
	border: 1px solid var(--background-light);
	border-radius: 10px;
	overflow: hidden;

	.item {
		border-bottom: 1px solid var(--background-light);

		.header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			background-color: var(--background);
			padding: 15px;
			cursor: pointer;
			font-weight: bold;
			transition: 0.25;
		}

		.header:hover {
			background-color: var(--background-light);
			transition: 0.25;
		}

		.content {
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.3s ease;
			background-color: var(--background);
			padding: 0 15px;
			transition: 0.25;

			p {
				padding: 15px 0;
				margin: 0;
			}
		}

		.header::after {
			content: "\f0d7";
			font-family: "Font Awesome 6 Free";
			font-size: 15px;
			transition: transform 0.3s ease;
		}
	}

	.item:last-child {
		border-bottom: none;
	}

	.item.active .content {
		max-height: 200px;
	}

	.item.active .header {
		background-color: var(--background-light);
	}

	.item.active .header::after {
		transform: rotate(180deg);
	}
}
