:root {
	--background: #050b07;
	--text: #fff;
	--theme: #27b56e;
	--tinted: #0d1512;
	--tinted-light: #1a2d24;
	--tinted-dark: #121e17;
	--secondary: #151715;
	--secondary-light: #272a28;
	--gradient: linear-gradient(90deg, #2fe58a 0%, #2fd3e5 100%);
}

@font-face {
	font-display: swap;
	font-family: "Clash Display";
	src: url(/ClashDisplay-Variable.ttf);
}

*,
*:not(i)::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: "Clash Display";
}

body {
	display: flex;
	padding: min(50px, 5vw) min(50px, 5vw) 0px min(50px, 5vw);
	flex-direction: column;
	align-items: center;
	gap: 75px;
	color: var(--text);
	min-height: 100vh;
	overflow-x: hidden;
	font-family: "Clash Display";
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	background-color: var(--background);
}

body:has(.hero):not(:has(.hero > img)) {
	gap: 100px;
}

body:has(.stickyTop) {
	gap: 25px;
}

body:has(.hero):not(:has(.hero > img)) main {
	gap: 50px;
}

body > * {
	width: -webkit-fill-available;
	max-width: 1250px;
}

a {
	text-decoration: none;
	color: var(--text);
}

button,
.button {
	display: flex;
	padding: 17.5px 30px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: var(--tinted);
	border-radius: 10px;
	border: 1px solid var(--tinted-light);
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	min-width: fit-content;
	transition: 0.3s;
}

button:not(:disabled):hover,
.button:not(:disabled):hover {
	background: var(--tinted-light);
	transition: 0.3s;
}

button.thin,
.button.thin {
	padding: 10px 17.5px;
}

button.secondary,
.button.secondary {
	border-color: var(--secondary-light);
	background: var(--secondary);
}

button.secondary:not(:disabled):hover,
.button.secondary:not(:disabled):hover {
	background: var(--secondary-light);
	transition: 0.3s;
}

button.theme,
.button.theme {
	border-color: var(--theme);
	background: var(--theme);
}

button.theme:not(:disabled):hover,
.button.theme:not(:disabled):hover {
	opacity: 0.75;
	transition: 0.3s;
}

button.alt,
.button.alt {
	border: 1px solid var(--theme);
	background: var(--tinted-light);
}

button.alt:not(:disabled):hover,
.button.alt:not(:disabled):hover {
	background: var(--theme);
	transition: 0.3s;
}

button:disabled,
.button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.site-title {
	left: -999px;
	position: absolute;
	z-index: -1;
}

.header {
	display: flex;
	padding: 15px;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	row-gap: 15px;
	flex-wrap: wrap;
	border-radius: 20px;
	border: 1px solid var(--tinted-dark);
	background: var(--tinted);
	box-shadow: 0px 5px 20px 0px var(--background);
	position: sticky;
	top: 50px;
	z-index: 100;
	max-width: 1300px;
}

.header .logo {
	display: flex;
	padding-left: 10px;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	flex: 1 0 0;
}

.header .navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 20px 40px;
	flex: 1 0 0;
	flex-wrap: wrap;
}

.header .navigation.buttons {
	justify-content: flex-end;
	gap: 20px 10px;
}

.header .navigation .navbar-menu:not(.button) {
	font-size: 15px;
	font-weight: 600;
	opacity: 0.75;
	position: relative;
	letter-spacing: 1px;
	transition: 0.3s;
}

.header .navigation .navbar-menu:not(.button):not(.spin):after {
	background: none repeat scroll 0 0 transparent;
	left: 0%;
	width: 0;
	content: "";
	height: 2px;
	bottom: -12px;
	display: block;
	position: absolute;
	border-radius: 20px;
	background: var(--theme);
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.header .navigation .navbar-menu:not(.button):hover {
	opacity: 1;
	transition: 0.3s;
}

.header .navigation .navbar-menu:not(.button):not(.spin):hover::after {
	left: 35%;
	width: 25%;
}

.header .contact-us button {
	border: none;
	width: 150px;
	color: #000;
	padding: 15px;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 50px;
	font-family: "Clash Display";
	background-color: transparent;
	border: 2px solid var(--text);
}

.header .contact-us button:hover {
	color: #fff;
	background-color: var(--text);
}

.header .sidepanel,
.header .mobile-navigation {
	display: none;
}

@-moz-keyframes spin {
	from {
		-moz-transform: rotate(0deg);
		-moz-scale: 1;
	}
	to {
		-moz-transform: rotate(360deg);
		-moz-scale: 1.3;
	}
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		-webkit-scale: 1;
	}
	to {
		-webkit-transform: rotate(360deg);
		-webkit-scale: 1.3;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
		scale: 1;
	}
	to {
		transform: rotate(360deg);
		scale: 1.2;
	}
}

.spin {
	animation: 1s spin infinite;
	width: max-content;
}

.hero {
	display: flex;
	align-items: center;
	align-content: center;
	gap: 30px;
	width: -webkit-fill-available;
	flex-wrap: wrap;
}

.hero .inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 25px;
	flex: 1 0 0;
	min-width: 45%;
}

.hero .title {
	font-size: 75px;
	font-weight: 700;
	line-height: 80px;
	width: -webkit-fill-available;
	overflow-wrap: anywhere;
}

.hero .description {
	font-size: 20px;
	font-weight: 500;
	line-height: 25px;
	opacity: 0.5;
}

.hero gradient {
	background: var(
		--gradient,
		linear-gradient(90deg, #2fe58a 0%, #2fd3e5 100%)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-underline-position: from-font;
}

.hero > img {
	width: 100%;
	max-width: 600px;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 75px;
	margin: auto;
}

main > * {
	width: -webkit-fill-available;
	max-width: 1250px;
}

.games {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 25px;
}

.games .title {
	letter-spacing: 1px;
	text-align: center;
	font-size: 35px;
	font-weight: 700;
	line-height: 37px;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: -webkit-fill-available;
}

.games .wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
	align-items: flex-start;
	align-content: flex-start;
	gap: 15px;
	width: -webkit-fill-available;
}

.card {
	display: flex;
	padding: 35px 20px 20px 20px;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 7px;
	border-radius: 7.5px;
	border: 1px solid var(--tinted-light);
	background: var(--tinted);
	position: relative;
	height: -webkit-fill-available;
	min-height: 275px;
}

.card:not(:has(.badge)) {
	padding-top: 25px;
}

.card.glow {
	--glow: var(--theme);
	border-color: var(--glow);
	box-shadow: 0 0 15px 0 var(--glow);
}

.card .number {
	display: flex;
	padding: 3px 5px;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	opacity: 0.75;
	background: var(--tinted-light);
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 12px;
	font-weight: 600;
	line-height: 12px;
	min-width: 17.5px;
}

.card:nth-child(1) .number {
	background: gold;
	color: black;
	opacity: 1;
}

.card:nth-child(2) .number {
	background: silver;
	color: black;
	opacity: 1;
}

.card:nth-child(3) .number {
	background: #cd7f32;
	color: white;
	opacity: 1;
}

.card .description {
	display: flex;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: -webkit-fill-available;
	border-radius: 5px;
	border: 1px solid var(--tinted-light);
	opacity: 0.75;
	background: var(--tinted-dark);
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 15px;
	margin-top: auto;
}

.card a:has(button),
.card button {
	width: -webkit-fill-available;
}

.card .group {
	display: flex;
	padding: 10px 0px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 7.5px;
}

.card .group > img {
	min-height: 40px;
	max-height: 45px;
	width: auto;
	max-width: 90%;
	padding-bottom: 10px;
}

.card .group h4 {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	line-height: 22px;
	width: -webkit-fill-available;
}

.card .group .rating {
	gap: 5px;
	display: flex;
	justify-content: center;
	filter: hue-rotate(345deg);
}

.card .group .review {
	cursor: pointer;
	position: relative;
}

.card .group .review .tooltip {
	z-index: 1;
	top: -65px;
	min-width: 500px;
	width: max-content;
	color: #fff;
	padding: 20px;
	text-align: center;
	border-radius: 6px;
	visibility: hidden;
	position: absolute;
	transform: translate(-40%, 50%);
	background-color: var(--tinted-dark);
	border: 1px solid var(--tinted-light);
}

.card .group .review .tooltip .tooltip-title {
	font-size: 18px;
	margin-bottom: 20px;
}

.card .group .review .tooltip .tooltip-list {
	gap: 5px;
	display: flex;
	flex-direction: column;
}

.card .group .review .tooltip .tooltip-list span {
	display: flex;
	font-size: 14px;
	align-items: center;
}

.card .group .review .tooltip .tooltip-list span img {
	margin: 0 2.5px;
	width: 25px;
}

.card .group .review:hover .tooltip {
	visibility: visible;
}

.card .code {
	cursor: pointer;
	position: relative;
	width: -webkit-fill-available;
}

.card .code .modal {
	top: 0;
	left: 0;
	z-index: 101;
	width: 100%;
	height: 100%;
	display: none;
	overflow: auto;
	position: fixed;
	cursor: default;
	padding-top: 100px;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.card .code .modal .modal-content {
	gap: 10px;
	border: 1px solid var(--tinted-light);
	border-radius: 5px;
	width: 500px;
	margin: auto;
	padding: 20px;
	color: var(--text);
	display: flex;
	background: var(--secondary);
	align-items: center;
	flex-direction: column;
}

.card .code .modal .modal-content .title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.card .code .modal .modal-content .close {
	cursor: pointer;
	font-size: 14px;
	width: -moz-fit-content;
	width: fit-content;
	border-bottom: 1px dashed var(--theme);
}

.card .badge {
	display: flex;
	height: 25px;
	min-width: 35px;
	padding: 0px 12.5px;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: auto;
	right: auto;
	border-radius: 0px 0px 5px 5px;
	--badge: var(--gradient);
	background: var(--badge);
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	line-height: 23px;
}

.card .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 7.5px;
}

.card .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.games .view-more {
	display: flex;
	justify-content: center;
	background: linear-gradient(
		180.51deg,
		rgb(0, 0, 0, 0) 0,
		rgba(19, 29, 44, 99) 80%,
		rgba(19, 29, 44, 0) 100%
	);
	height: 400px;
	width: -webkit-fill-available;
	align-items: flex-end;
	padding: 100px;
	position: absolute;
	bottom: 0;
	font-size: 20px;
}

.games .view-more a {
	cursor: n-resize;
}

.faq {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
	max-width: 1300px;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid var(--tinted-dark);
	background: var(--tinted);
}

.faq .question {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 10px;
}

.faq .question .question-title {
	font-size: 18px;
}

.faq .question .question-description {
	font-size: 16px;
}

.footer {
	margin-top: auto;
	padding: 28px;
	width: -webkit-fill-available;
	max-width: 1250px;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
}

.footer .row {
	gap: 35px;
	display: flex;
	margin: 20px 0;
	align-items: center;
	justify-content: center;
}

.footer .wrapper {
	gap: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog {
	margin: auto;
	padding: 50px 0;
	text-align: left;
}

.blog > .title {
	gap: 10px;
	display: flex;
	font-size: 22px;
	letter-spacing: 1px;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.blog .wrapper {
	gap: 20px;
	display: flex;
	flex-direction: column;
}

.blog .wrapper .card {
	flex-direction: row;
	min-height: unset;
	gap: 15px;
}

.stickyTop {
	gap: 35px;
	padding: 20px 25px;
	display: flex;
	align-items: center;
	background-color: var(--tinted);
	border: 1px solid var(--tinted-light);
	border-radius: 5px;
	justify-content: space-between;
	position: sticky;
	top: 110px;
	z-index: 99;
	margin-bottom: 25px;
}

.stickyTop .number {
	height: 100%;
	display: flex;
	font-size: 16px;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	background: var(--theme);
}

.stickyTop .logo {
	height: 40px;
	width: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stickyTop .logo img {
	height: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.stickyTop .description {
	font-size: 16px;
	text-align: center;
}

.stickyTop .rating-box {
	gap: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 20px;
}

.stickyTop .rating-box .stars {
	display: flex;
	gap: 2px;
}

.article {
	gap: 20px;
	padding: min(40px, 5vw);
}

.article .date,
.article a {
	color: var(--theme);
}

.article .navbar {
	width: -webkit-fill-available;
	max-width: 1250px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.article .navbar h5 {
	font-size: 15px;
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.split {
	width: -webkit-fill-available;
	max-width: 1250px;
	display: flex;
	justify-content: space-between;
	gap: 50px;
}

.split .right .icons {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 5px;
	width: max-content;
}

.split .right .icons i {
	cursor: pointer;
	transition: 0.5s;
}

.split .right .icons i:hover {
	margin-top: -4px;
	transition: 0.5s;
}

.article .content {
	width: -webkit-fill-available;
	max-width: 1250px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 25px;
}

.article .content img {
	width: 100%;
}

.article iframe {
	border: none;
	width: -webkit-fill-available;
	max-width: 1250px;
	height: 400px;
}

.article .rating {
	width: -webkit-fill-available;
	max-width: 1250px;
	background-color: #2b2b2b;
	padding: 30px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.article .rating .ratings {
	display: flex;
	gap: 20px;
}

.article .rating .ratings > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	font-size: 20px;
}

.article .rating .ratings > div .stars {
	display: flex;
	gap: 2px;
}

.giveaway .spinner {
	height: 100px;
	position: relative;
	margin-bottom: 30px;
}

.giveaway .spinner-holder {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100px;
	width: 100%;
}

.giveaway .spinner-holder {
	overflow: hidden;
	border: 1px solid var(--tinted-light);
	border-radius: 10px;
}

.giveaway .spinner-holder {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100px;
	width: 100%;
}

.giveaway .container {
	width: 9999999999999999999px;
	max-width: 999999999999999999px;
	height: 100px;
	background: var(--tinted-dark);
	margin-left: 0;
	transition: all 8s cubic-bezier(0.08, 0.6, 0, 1);
}

.giveaway .spinner-holder:before {
	content: "";
	position: absolute;
	border: none;
	z-index: 12222225;
	width: 5px;
	height: 100%;
	left: 50%;
	background: var(--theme);
	-webkit-box-shadow: 0px 0px 70px 9px var(--theme);
}

.giveaway .item {
	display: inline-block;
	float: left;
	margin: 4px 0px 0.5px 5px;
	width: 85px;
	height: 88px;
	float: left;
	border: 1px solid var(--tinted-light);
	background: var(--tinted-dark);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.giveaway .red {
	border-bottom: 4px solid var(--theme);
}

.giveaway img {
	border: 0;
	vertical-align: middle;
}

.giveaway .won {
	border: 3px solid var(--theme);
	position: relative;
	border-bottom: 4px solid var(--theme);
}

.giveaway .tasks {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.giveaway .tasks button {
	width: unset;
	min-width: 200px;
}

.giveaway .collected {
	padding: 15px;
	height: auto;
	border: 2px solid var(--tinted-light);
	background: var(--tinted-dark);
	border-radius: 10px;
	text-align: center;
}

.giveaway .collected > .item {
	float: none;
	cursor: pointer;
	margin: 4px 2px 0.5px 2px;
	transition: 0.1s;
}

.giveaway .collected > .item:hover {
	background-size: 85%;
	background-color: var(--tinted-light);
}

.giveaway .collected > .item:active {
	position: relative;
	border: 10px solid transparent;
}

.modal {
	position: fixed;
	top: 25%;
	left: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 5px;
	width: 50%;
	height: 50%;
	background: var(--background);
	border: 1px solid var(--tinted-light);
	border-radius: 5px;
	z-index: 100000000;

	.modal-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;

		.title {
			font-size: 25px;
			font-weight: 700;
		}

		.close {
			position: absolute;
			top: 15px;
			right: 30px;
			font-size: 40px;
			cursor: pointer;
		}
	}
}

form {
	background: var(--tinted);
	border: 1px solid var(--tinted-light);
	padding: 20px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	gap: 20px;

	.field {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 15px;

		input,
		textarea {
			background: var(--tinted);
			border: 1px solid var(--tinted-light);
			padding: 10px;
			color: var(--text);
		}
	}

	button {
		width: -webkit-fill-available;
	}
}

.alert {
	width: min(90%, 600px);
	background: var(--tinted-dark);
	border: 1px solid var(--tinted-light);
	padding: 20px;
	border-radius: 10px;
}

.alert.success {
	background: #25ffbc1a;
	border: 1px solid #25d9ff4d;
}

.alert.error {
	background: #ff25251a;
	border: 1px solid #ff25254d;
}

.split:has(.contactOptions) .right {
	width: -webkit-fill-available;
}

.contactOptions {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border-radius: 10px;
	border: 1px solid var(--tinted-light);
	background: var(--tinted);
	padding: 25px;
}

.contactOptions .contactOption {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
	border-radius: 10px;
}

.contactOptions .contactOption h1 {
	font-size: 25px;
	padding: 10px;
	height: 50px;
	width: 50px;
	background: var(--tinted-dark);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.contactOptions .contactOption .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 10px;
}

.contactOptions .contactOption .inner h3 {
	font-weight: 600;
}

.contactOptions .contactOption .inner a {
	color: var(--theme);
}

@media screen and (max-width: 1400px) {
	.header {
		padding-right: 25px;
	}

	.header .mobile-navigation {
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		background: transparent;
		transition: all 250ms ease-out;
	}

	.header .mobile-navigation:hover {
		cursor: pointer;
	}

	.header .mobile-navigation::before,
	.header .mobile-navigation::after {
		content: "";
		width: 30px;
		height: 2px;
		position: absolute;
		background: #fff;
		transition: all 250ms ease-out;
	}

	.header .mobile-navigation::before {
		transform: translateY(-3px);
	}

	.header .mobile-navigation::after {
		transform: translateY(3px);
	}

	.header .sidepanel {
		top: 0;
		right: 0;
		width: 0;
		gap: 25px;
		z-index: 1;
		height: 100%;
		color: var(--text);
		display: flex;
		position: fixed;
		transition: 0.5s;
		padding-top: 120px;
		overflow-x: hidden;
		flex-direction: column;
		background-color: var(--secondary);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	}

	.header .sidepanel .closebtn {
		top: 20px;
		right: 50px;
		cursor: pointer;
		font-size: 28px;
		position: absolute;
		font-family: "Clash Display";
		transform: translate(-50%, 50%);
	}

	.header .sidepanel .group {
		display: flex;
		margin: 0 35px;
		flex-direction: column;
	}

	.header .sidepanel .group .group-title {
		font-size: 20px;
		letter-spacing: 4px;
		margin-bottom: 10px;
		font-family: "Clash Display";
		text-transform: uppercase;
	}

	.header .sidepanel .group .group-link {
		color: var(--text);
		padding: 12px 0;
		font-size: 20px;
		position: relative;
		transition: 0.3s;
	}

	.header .sidepanel .group .group-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;
	}

	.header .sidepanel .group .group-link:hover {
		opacity: 0.75;
		transition: 0.3s;
	}

	.header .sidepanel .group .group-link:hover::after {
		left: 0%;
		width: 10%;
	}

	.header .sidepanel .contact-us {
		display: flex;
		margin: 0 35px;
	}

	.header .sidepanel .contact-us button {
		border: none;
		width: 150px;
		padding: 15px;
		color: #000;
		font-size: 16px;
		cursor: pointer;
		transition: 0.3s;
		border-radius: 50px;
		font-family: "Clash Display";
		background-color: transparent;
		border: 2px solid var(--text);
	}

	.header .sidepanel .contact-us button:hover {
		color: #fff;
		background-color: var(--text);
	}

	.header .navigation,
	.header .contact-us {
		display: none;
	}
}

@media screen and (max-width: 1100px) {
	.hero,
	.faq,
	.games,
	.footer,
	.reward-sites,
	.blog {
		width: 90%;
	}
}

@media screen and (max-width: 900px) {
	.hero {
		justify-content: center !important;
	}

	.hero .inner {
		align-items: center !important;
	}

	.hero .description {
		text-align: center;
	}

	.wrapper .card {
		padding: 12px;
		text-align: center;
		height: -moz-fit-content;
		height: fit-content !important;
		min-height: unset !important;
		flex-direction: column !important;
		align-items: stretch;
	}

	.wrapper .card:has(.badge) {
		padding-top: 35px !important;
	}

	.wrapper .card .text {
		align-items: center;
		gap: 10px !important;
	}

	.wrapper .card .logo {
		flex-direction: column;
		margin-left: unset !important;
		gap: 0px !important;
	}

	.hero,
	.faq,
	.games,
	.footer,
	.reward-sites,
	.blog {
		text-align: center !important;
	}

	.stickyTop {
		flex-direction: column;
		padding: 30px !important;
		gap: 10px !important;
	}

	.stickyTop .rating-box {
		flex-direction: row !important;
	}

	.stickyTop a,
	.stickyTop .text,
	.stickyTop .rating {
		display: none !important;
	}

	.article .navbar {
		flex-direction: column;
		align-items: flex-start !important;
	}

	.split {
		flex-direction: column;
		gap: 20px !important;
	}

	.article .content {
		margin-top: 10px !important;
	}

	.giveaway {
		text-align: center;
	}

	.giveaway .tasks {
		justify-content: center;
	}
}

@media screen and (max-width: 600px) {
	.wrapper .card .group .review .tooltip {
		left: 20px;
		width: 250px;
	}

	form {
		.field {
			flex-direction: column;
			align-items: flex-start;

			input,
			textarea {
				width: -webkit-fill-available;
			}
		}
	}
}

@media screen and (max-width: 400px) {
	.wrapper .card .name,
	.wrapper .card .rating,
	.wrapper .card .description {
		width: -moz-fit-content;
		width: fit-content;
	}
}
