:root {
	--font-family-primary: "Montserrat", serif;
	--color-primary: #ffffff;
	--color-shadow: #000324;
	--color-bonus-1: #FF00B2;
	--color-bonus-2: #00FFB2;
	--color-bonus-3: #FFEA00;
	--button-language: #52383870;
	--button-language-lighter: #545454;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {}

body {
	font-family: var(--font-family-primary);
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	font-style: normal;
	font-display: swap;
	background-image: url(../img/bg.jpg);
	background-color: #50008280;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--color-primary);
}

body:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: rgb(78 27 44 / 50%);
	bottom: 0;
}

/* HEADER */

header {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.logo {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo span {
	margin: 0px 25px;
	font-size: 24px;
	font-weight: 500;
	vertical-align: top;
}

.logo .partner-logo {
	width: 50px;
	height: 50px;
}

/* CONTENT */

main {
	display: block;
	position: relative;
	z-index: 3;
	max-width: 1080px;
	margin: 25px auto 0px auto;
}

.heroes {
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0;
	bottom: 0px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 20px;
	margin: 0 auto;
	box-sizing: border-box;
	/* z-index: 1; */
}

.hero {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 15px;
}

.hero img {
	height: 80vh;
	position: relative;
	z-index: 2;
}

.hero-left {
	width: 50vw;
	left: -12.5vw;
	align-items: start;
	align-self: flex-end;
	position: absolute;
	top: 190px;
}

.hero-right {
	width: 50vw;
	right: -15vw;
	align-items: start;
	align-self: flex-end;
	position: absolute;
	top: 190px;
}

.shadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.shadow .up {
	position: absolute;
	top: 0;
	width: 100%;
	height: 300px;
	background: linear-gradient(360deg, rgba(13, 0, 40, 0) 0%, rgb(40 32 0 / 50%) 58.48%, #282000 116.95%);
	z-index: 2;
}

.shadow .down {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 70vh;
	max-height: 427px;
	background: linear-gradient(180deg, rgba(29, 10, 10, 0) 0%, rgba(29, 10, 10, 0.5) 41.57%, #1D0A0A 83.14%);
	z-index: 4;
}

.message {
	text-align: center;
	margin: 50px 0px 40px 0px;
}

.message-title {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.instructions {
	text-align: center;
	font-size: 14px;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.instructions::-webkit-scrollbar {
	display: none;
}

.instructions-wrapper {
	display: flex;
	justify-content: space-between;
	margin: auto;
}

.instruction {
	position: relative;
	height: 130px;
	flex: 1;
	margin: 0px 10px 0px 10px;
}

.bg-blur {
	width: inherit;
	height: 100%;
	border-radius: 20px;
	margin: auto;
	background: rgba(77, 25, 16, 0.6);
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(15px);
}

.bg-border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: inherit;
	height: 100%;
	border: 1px solid #FFFFFF3D;
	border-radius: 20px;
}

.instruction-content {
	position: absolute;
	display: flex;
	z-index: 4;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: inherit;
	align-items: center;
	gap: 10px;
	padding: 0 45px;
}

.instruction-icon {
	display: flex;
	height: 46px;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.instruction-divider {
	width: 4px;
	height: 60px;
	background-image: url(../img/instruction-divider.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.instruction-text {
	text-align: left;
}

.instruction-text span {
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
}

.instruction-text p {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	margin-top: 4px;
	color: #ffffff90;
}

/* FOOTER */

footer {
	margin: 0px 0px 15px 0px;
}

.footer-text {
	font-size: 11px;
	font-weight: 100;
	text-align: center;
	margin-bottom: 15px;
	line-height: 100%;
	padding: 0 9vw;
}

.payments-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	gap: 10px;
}

.payment-logo {
	height: 30px;
}

.gradient-text {
	font-weight: 800;
	line-height: 90%;
	margin: 0px 0px 40px 0px;
	font-size: 200px;
	position: relative;
}

.gradient-text > span {
	position: relative;
	-webkit-text-fill-color: transparent;
	color: transparent;
	background: radial-gradient(circle at 50%, #30ff00, #16c618 50%);
	background-clip: text;
	text-shadow: 0px 0px 1.5px #30ff00;
}

.gradient-button {
	color: white;
	font-weight: 700;
	background: linear-gradient(180deg, #DA61FF 10.87%, #A733CA 50.48%, #730096 100%);
	display: inline-block;
	padding: 15px 50px;
	font-size: 0.9rem;
	text-decoration: none;
	border-radius: 10px;
	cursor: pointer;
	text-transform: uppercase;
}

.gradient-text .aud-text {
	width: 110px;
	height: 55px;
	font-size: 30px;
	background: #9F04CE;
	border-radius: 30px;
	transform: rotate(10deg);
	-webkit-text-fill-color: initial;
	color: white;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: -25px;
	top: 30px;
	text-shadow: none;
}

.terms {
	margin: 40px 0px 40px 0px;
}

.terms > .heading {
	text-align: center;
	font-weight: bold;
	padding: 12px 0px;
	margin: 0px 0px 15px 0px;
	background: linear-gradient(90deg, rgba(77, 25, 16, 0) 17.17%, #4D1910 50%, rgba(77, 25, 16, 0) 85.16%);
}

.terms > .text ol {
	margin: 20px 0px 0px 0px;
	padding: 0px;
	list-style: none;
	line-height: 18px;
}

ol {
	counter-reset: ol-list;
}

ol > li {
	counter-increment: ol-list;
}

ol > li:before {
	content: counter(ol-list) ". ";
}

.terms > .text {
	max-width: 500px;
	width: 100%;
	padding: 0px 25px;
	margin: 0 auto;
	font-size: 14px;
}

@media (max-width: 1000px) {
	.heroes {
		display: none;
	}
	main {
		margin: 30px 0px 0px 0px;
	}
	.gradient-text .aud-text {
		width: 15vw;
		height: 7.5vw;
		font-size: 1rem;
		top: 15px;
	}
	.message {
		margin: 30px;
	}
	.logo {
		height: auto;
	}
	.hero {
		top: auto;
		bottom: 0px;
		width: 50%;
	}
	.hero-left .hero-right {
		flex: 1;
		max-width: 300px;
		overflow: hidden;
	}
	.hero-left img {
		bottom: -110px;
		height: 50vh;
	}
	.hero-left img.second {
		width: 265px;
		position: relative;
		left: 0vw;
		top: 108px;
	}
	.hero-right {
		right: 0;
	}
	.hero-right img {
		right: 0px;
		height: 35vh;
	}
	.hero-right img.second {
		width: 522px;
		position: relative;
		right: 175px;
		top: 145px;
		display: none;
	}
	.instructions {
		scroll-snap-type: x mandatory;
		margin-bottom: 0;
	}
	.instructions-wrapper {
		display: block;
		padding: 0px 20px;
	}
	.instruction {
		margin: 0px 0px 15px 0px;
		box-sizing: border-box;
	}
	.instruction-text {
		font-size: 80%;
	}
	.footer-text {
		margin-bottom: 2vh;
		padding: 0 20vw;
		margin: 22px auto;
		width: 90%;
	}
	header .logo img {
		max-width: 40vw;
	}
	header .logo span {
		font-size: 17px;
	}
	.footer-text {
		padding: 0 2vw;
		font-size: 12px;
	}
	.message-title {
		font-size: 24px;
	}
	.gradient-text {
		font-size: 100px;
	}
}