:root {
	--background-color: #121212;
	--text-color: #fff;
	--primary-color: #ef5204;
	--font-family: 'Play', sans-serif;
	--text-color-white: #f1f1f1;
	--color-secondary-text: #FFFFFF90;
	--text-color-dark-grey: #FFFFFF66;
	--section-game-color: #f0f2f5;
	--title-gradient: linear-gradient(169deg, #FFFFFF 50%, #FFFFFF45 100%);
	--button-shadow: 0px 2px 20px -7px rgba(0, 0, 0, 0.9);
	--line-gradient: linear-gradient(90deg, transparent 15%, var(--primary-color), transparent 85%);
	--gradient-block-priority: linear-gradient(270deg, #FFFFFF01 0%, #FFFFFF09 85%);
	--cookie-width: 52%
}

html {
	scroll-behavior: smooth;
	font-size: 15px
}

body {
	position: relative;
	min-height: 100vh;
	background-color: var(--background-color);
	color: var(--text-color);
	font-family: var(--font-family);
	font-weight: 400;
	overflow-x: hidden
}

a {
	font-family: var(--font-family);
	letter-spacing: .02em;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease
}

a:hover {
	color: var(--primary-color);
	transform: translateY(-2px)
}

.page__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0% 2%
}

.content__section {
	padding: 80px 0;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 0.8s ease forwards
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(50px)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

p.section__content__text {
	color: var(--color-secondary-text);
	font-size: 22px;
	line-height: 1.3em;
	letter-spacing: .02em;
	font-weight: 400;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.3s
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

body>.divider,
.mobile__nav .divider {
	width: 100%;
	overflow: hidden
}

body>.divider>span,
.mobile__nav .divider>span {
	display: block;
	height: 2px;
	background: var(--line-gradient);
	transform: scaleX(0);
	animation: scaleLine 1s ease forwards 0.5s
}

@keyframes scaleLine {
	0% {
		transform: scaleX(0)
	}

	100% {
		transform: scaleX(1)
	}
}

h1,
h2 {
	display: block;
	text-transform: uppercase;
	line-height: 1.02em;
	word-break: break-word;
	text-align: center;
	-webkit-text-stroke: 1px #fff;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.2s
}

h2 {
	font-size: 54px;
	margin: .8rem 0
}

h1>span,
h2>span {
	background-color: #fff0;
	background-image: var(--title-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: #fff0;
	transition: background-image 0.5s ease
}

h1:hover>span,
h2:hover>span {
	background-image: linear-gradient(169deg, #FFFFFF 30%, var(--primary-color) 100%)
}

a.btn__primary,
header .nav__links a.btn__primary {
	padding: 14px 26px 15px;
	background-color: var(--primary-color);
	color: var(--text-color);
	border-radius: 3px;
	box-shadow: var(--button-shadow);
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease
}

a.btn__primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
	transition: left 0.5s ease
}

a.btn__primary:hover::before {
	left: 100%
}

a.btn__primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 25px -5px rgb(0 0 0 / .7)
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff0;
	z-index: 10;
	transform: translateY(-100%);
	animation: slideInDown 0.6s ease forwards
}

@keyframes slideInDown {
	0% {
		transform: translateY(-100%)
	}

	100% {
		transform: translateY(0)
	}
}

header .page__container {
	padding: 14px 2%
}

header.dark {
	background-color: #0F0F0F;
	border-bottom: 1px solid #414141
}

header.dark .page__container {
	padding: 10px 0
}

header.dark .content__wrapper {
	max-width: 1300px;
	margin: 0 auto;
	justify-content: space-around
}

header .content__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.brand__logo {
	padding: 10px 0;
	opacity: 0;
	animation: fadeIn 0.8s ease forwards 0.4s
}

.brand__logo a {
	margin-bottom: 10px;
	margin-right: 10px
}

.brand__logo img {
	width: 180px;
	transition: transform 0.3s ease
}

.brand__logo img:hover {
	transform: scale(1.05)
}

ul,
li {
	list-style: none
}

ul {
	display: flex;
	gap: 1rem
}

header .nav__links a {
	padding: 0 .5rem;
	color: var(--primary-color);
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
	position: relative
}

header .nav__links a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease
}

header .nav__links a:hover::after {
	width: 100%
}

header .nav__links .language {
	color: var(--section-game-color);
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase
}

header .nav__links a:visited {
	color: var(--text-color-white)
}

header .menu__icon {
	cursor: pointer;
	display: none;
	width: 24px;
	height: 24px
}

header .menu__icon img {
	width: 100%;
	transition: transform 0.3s ease
}

header .menu__icon img:hover {
	transform: rotate(90deg)
}

header.dark .nav__links {
	position: relative;
	cursor: pointer
}

header.dark .language__dropdown {
	position: absolute;
	top: 110%;
	left: 0;
	width: 55px;
	background-color: rgb(16 16 16 / .4);
	display: flex;
	flex-direction: column;
	gap: .75rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease
}

header.dark .nav__links:hover .language__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

header.dark .language__dropdown:after {
	content: '';
	position: absolute;
	top: -20%;
	left: 0;
	width: 100%;
	height: 1rem
}

header.dark .language__dropdown a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1rem;
	color: #fff;
	cursor: pointer;
	transition: color 0.3s ease, transform 0.3s ease
}

header.dark .language__dropdown a:hover {
	color: #2947f1;
	transform: scale(1.05)
}

header.dark .language__dropdown img {
	width: 22px;
	aspect-ratio: 1;
	transition: transform 0.3s ease
}

header.dark .language__dropdown img:hover {
	transform: rotate(360deg)
}

.mobile__nav .mobile__nav__content {
	position: fixed;
	width: 100%;
	top: 0;
	right: -100%;
	z-index: 20;
	transform: translateX(0);
	background: radial-gradient(#431600 4%, #000 100%);
	display: flex;
	flex-direction: column;
	gap: .5rem;
	transition: transform .3s ease
}

.mobile__nav input:checked+.mobile__nav__content {
	transform: translateX(-100%);
	transition: transform .3s ease
}

.mobile__container {
	padding: 0 1rem
}

.mobile__nav .content__wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column
}

.mobile__nav .mobile__content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.mobile__nav .mobile__content label {
	cursor: pointer
}

.mobile__header {
	padding: 1.5rem 0;
	opacity: 0;
	animation: fadeIn 0.8s ease forwards 0.2s
}

.mobile__header {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.mobile__header .logo {
	width: 30%
}

.mobile__header .logo img {
	width: 100%;
	transition: transform 0.3s ease
}

.mobile__header .logo img:hover {
	transform: scale(1.1)
}

.mobile__header .icon img {
	cursor: pointer;
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease
}

.mobile__header .icon img:hover {
	transform: rotate(90deg)
}

.mobile__nav nav {
	padding: 1.5rem 0
}

.mobile__nav ul {
	flex-direction: column;
	gap: 2rem
}

.mobile__nav nav a {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-color);
	line-height: 110%;
	position: relative;
	display: inline-block
}

.mobile__nav nav a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease
}

.mobile__nav nav a:hover::after {
	width: 100%
}

.mobile__nav nav.bold a {
	font-size: 26px
}

.mobile__nav nav.bold a:hover {
	color: var(--primary-color)
}

.mobile__nav .nav__buttons nav a {
	font-size: 18px
}

.mobile__nav .nav__buttons nav a:hover {
	color: var(--text-color-dark-grey)
}

.mobile__nav a.btn__primary {
	text-align: center;
	display: block;
	position: relative;
	overflow: hidden
}

.mobile__nav a.btn__primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
	transition: left 0.5s ease
}

.mobile__nav a.btn__primary:hover::before {
	left: 100%
}

.mobile__nav .nav__buttons {
	padding: 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem
}

section.hero {
	background: url();
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 800px;
	position: relative;
	opacity: 0;
	animation: fadeIn 1.2s ease forwards
}

section.hero .content__wrapper {
	padding-top: 80px;
	padding-bottom: 0
}

h1 {
	font-size: 110px;
	transform: scale(.8);
	animation: scaleUp 1s ease forwards 0.3s
}

@keyframes scaleUp {
	0% {
		transform: scale(.8);
		opacity: 0
	}

	100% {
		transform: scale(1);
		opacity: 1
	}
}

section.hero .image__wrapper {
	padding: 1% 10%;
	text-align: center;
}

section.hero .image__wrapper img {
	width: 80%;
	opacity: 0;
	transform: translateX(-50px);
	animation: slideInRight 0.8s ease forwards 0.5s
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		transform: translateX(-50px)
	}

	100% {
		opacity: 1;
		transform: translateX(0)
	}
}

section.hero .title__block {
	max-width: 1024px;
	margin: 0 auto
}

section.hero .description {
	width: 660px;
	margin: 1.85rem auto;
	display: flex;
	flex-direction: column;
	gap: .6rem
}

section.hero .description p {
	text-align: center;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.4s
}

section.hero .button__block,
section.parallax .button__block {
	display: flex;
	justify-content: center;
	padding-bottom: 50px;
	scale: 1;
	transition: scale .3s ease
}

section.hero .button__block:hover {
	scale: 1.03;
	transition: scale .3s ease
}

section.hero .verify__block {
	padding: 95px 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr)
}

section.hero .verify__block>div {
	padding: 10px;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards 0.6s
}

section.hero .verify__image {
	display: flex;
	align-items: center
}

section.hero .image__block {
	margin-left: 10%;
	opacity: 0;
	transform: scale(.3);
	animation: scaleUp 0.8s ease forwards 0.7s
}

section.hero h2 {
	font-size: 56px
}

.verify__text h2 {
	margin: 1.5rem 0
}

.verify__text p {
	margin: 1rem 0
}

section.priority .content__wrapper {
	display: flex;
	flex-direction: column
}

section.priority .alert h3 {
	font-size: 56px;
	line-height: 1.1em;
	color: var(--primary-color);
	text-align: center;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.3s
}

section.priority .grid__block {
	min-width: 960px;
	margin: 2rem auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem
}

section.priority .grid__item {
	background: var(--gradient-block-priority);
	border: 1px solid #FFFFFF10;
	border-radius: 7px;
	padding: 43px 60px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: calc(0.2s * var(--i))
}

section.priority .grid__item>div {
	margin-bottom: 20px;
	width: 100%
}

section.priority .grid__block .icon {
	display: flex;
	justify-content: center
}

section.priority .grid__block .icon img {
	transition: transform 0.3s ease
}

section.priority .grid__block .icon img:hover {
	transform: scale(1.1)
}

section.priority .grid__block .text>p {
	margin-bottom: 10px;
	text-align: center;
	font-size: 22px;
	font-weight: 400;
	line-height: 80%
}

section.priority .grid__block .text>p>span {
	font-weight: 700
}

section.parallax {
	padding: 140px 0;
	position: relative
}

section.parallax>.background {
	position: absolute;
	inset: 0;
	background: url(/assets/icons/section-scroll-bg.png);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .85;
	animation: fadeIn 1.5s ease forwards
}

section.parallax h2 {
	text-align: left;
	font-size: 56px;
	margin: 1.5rem 0
}

section.parallax .grid__wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	position: relative
}

section.parallax .text__block {
	display: flex;
	flex-direction: column;
	row-gap: 1.5rem
}

section.parallax .description__block {
	position: relative
}

section.parallax .wrapper__description {
	position: sticky;
	top: 0;
	left: 0;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.4s
}

section.parallax .item__block {
	display: flex;
	flex-direction: column
}

section.parallax .item__block .item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 15px;
	opacity: 0;
	transform: translateX(-50px);
	animation: slideInRight 0.8s ease forwards;
	animation-delay: calc(0.2s * var(--i))
}

section.parallax .item__block .item .icon,
section.parallax .arrow__block {
	max-width: 250px
}

section.parallax .icon>img {
	width: 100%;
	transition: transform 0.3s ease
}

section.parallax .icon>img:hover {
	transform: scale(1.1)
}

section.parallax .item__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .75rem
}

section.parallax .item__block p.step {
	color: var(--text-color-dark-grey);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase
}

section.parallax .item__block p.step__description {
	color: var(--text-color);
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase
}

section.parallax .arrow__block {
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center
}

section.parallax .arrow__block img {
	width: 32px;
	height: 32px;
	transition: transform 0.3s ease
}

section.parallax .arrow__block img:hover {
	transform: translateY(-5px)
}

section.parallax .arrow__block:last-child {
	display: none
}

section.authentic {
	position: relative
}

section.authentic h2 {
	text-align: left
}

section.authentic .background {
	position: absolute;
	inset: 0;
	background: url(/assets/icons/section-scroll-bg.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
	animation: fadeIn 1.5s ease forwards
}

section.authentic .content__wrapper {
	display: flex;
	flex-direction: column;
	gap: 120px
}

section.authentic .grid__block {
	display: grid;
	grid-template-columns: repeat(2, 1fr)
}

section.authentic .grid__block:nth-child(2n) .image__block {
	order: 2
}

section.authentic .image__block {
	margin-right: 14%;
	opacity: 0;
	transform: scale(.2);
	animation: scaleUp 0.8s ease forwards 0.5s
}

section.authentic .image__block img {
	width: 100%;
	text-align: center;
	transition: transform 0.3s ease
}

section.authentic .image__block img:hover {
	transform: scale(1.05)
}

section.authentic .text__block {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards 0.6s
}

section.authentic .sponsor__name h3 {
	color: var(--color-secondary-text);
	font-size: 24px;
	margin: 20px 0 0 40px
}

section.authentic .sponsor__name+img {
	width: 360px;
	transition: transform 0.3s ease
}

section.authentic .sponsor__name+img:hover {
	transform: scale(1.05)
}

section.following .title__block {
	border-top: 56px
}

section.following .title__block h3 {
	font-size: 56px;
	line-height: 66px;
	color: var(--primary-color);
	text-align: center;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.3s
}

section.following .image__block {
	display: grid;
	place-content: center;
	opacity: 0;
	transform: scale(.1);
	animation: scaleUp 0.8s ease forwards 0.5s
}

section.following .image__block img {
	width: 80%;
	transition: transform 0.3s ease
}

section.following .image__block img:hover {
	transform: scale(1.05)
}

section.following .grid__wrapper {
	margin-top: 95px;
	display: flex;
	flex-direction: column;
	gap: 10rem
}

section.following .grid__block {
	display: grid;
	grid-template-columns: repeat(2, 1fr)
}

section.following .grid__block:nth-child(2n) .image__block {
	order: 2
}

section.following h2 {
	font-size: 56px;
	text-align: left
}

section.following .text__block {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards 0.6s
}

section.actions {
	padding-bottom: 50px
}

section.actions .image__block {
	text-align: center;
	margin-bottom: 2rem
}

section.actions .image__block img {
	max-width: 440px;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.5s
}

section.actions .footer__text {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: .75rem
}

section.actions .footer__text p {
	font-size: 22px;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.6s
}

section.actions .text__primary {
	font-weight: 700
}

section.actions .text__secondary {
	color: var(--color-secondary-text)
}

section.actions .button__block {
	margin: 2rem auto;
	width: 410px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .75rem
}

section.actions .button__block>div {
	transition: scale .3s ease;
	margin: 4px;
	border-radius: 2px
}

section.actions .button__block>div:hover {
	scale: 1.1;
	transition: scale .3s ease
}

section.actions .button__block>div.btn__secondary:hover {
	color: #f1f1f1;
	border-color: #f1f1f1
}

section.actions .btn__primary {
	width: 70%;
	text-align: center;
	color: #fff;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	font-weight: 700;
	position: relative;
	overflow: hidden
}

section.actions .btn__primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
	transition: left 0.5s ease
}

section.actions .btn__primary:hover::before {
	left: 100%
}

section.actions .btn__secondary {
	color: var(--color-secondary-text);
	border: 2px solid var(--text-color-dark-grey);
	font-weight: 400;
	position: relative;
	overflow: hidden
}

section.actions .btn__secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
	transition: left 0.5s ease
}

section.actions .btn__secondary:hover::before {
	left: 100%
}

section.actions .button__block a,
section.actions .popup__trigger>div {
	display: block;
	padding: 16px 26px 18px;
	color: inherit;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer
}

section.gallery .content__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 750px;
	margin: 0 auto
}

section.gallery .trade__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	padding: 1rem 0
}

section.gallery .trade__block p {
	font-size: 1.5rem;
	letter-spacing: .02em;
	line-height: 110%;
	color: var(--color-secondary-text);
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.4s
}

section.gallery .image__block a {
	display: block
}

section.gallery .image__block img {
	display: block;
	width: 80%;
	margin: 0 auto;
	opacity: 0;
	transform: scale(.8);
	animation: scaleUp 0.8s ease forwards 0.5s
}

section.gallery .arrow__block img {
	width: 24px;
	height: 24px;
	text-align: center;
	transition: transform 0.3s ease
}

section.gallery .arrow__block img:hover {
	transform: translateY(-5px)
}

section.gallery .trade__block:last-child .arrow__block {
	display: none
}

section.privacy {
	width: var(--cookie-width);
	min-width: 300px;
	position: fixed;
	z-index: 11;
	right: calc((100% - var(--cookie-width)) / 2);
	bottom: 4rem;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 0.8s ease forwards 1s
}

section.privacy .cookie__block {
	padding: 1.2rem;
	box-shadow: 0 0 20px #00000090, inset 1px 1px #FFFFFF55, inset -1px -1px #FFFFFF20;
	background-color: var(--background-color);
	border-radius: 4px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: .7rem;
	transition: transform 0.3s ease
}

section.privacy .cookie__block:hover {
	transform: translateY(-5px)
}

section.privacy .cookie__block .title {
	font-size: 1rem;
	color: #FFF;
	font-weight: 700
}

section.privacy .cookie__block .text {
	font-weight: 400;
	color: dimgray;
	font-size: 14px
}

section.privacy .accept__block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem
}

section.privacy .accept__block .text {
	flex-grow: 1
}

section.privacy .button__block {
	display: flex;
	gap: .65rem
}

section.privacy .button__block .btn__primary {
	padding: 8px 25px;
	border-radius: 4px;
	background-color: var(--primary-color);
	cursor: pointer;
	position: relative;
	overflow: hidden
}

section.privacy .button__block .btn__primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
	transition: left 0.5s ease
}

section.privacy .button__block .btn__primary:hover::before {
	left: 100%
}

section.game {
	background-color: #191919
}

section.game .content__wrapper {
	min-height: calc(100vh - 160px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 3rem
}

section.game .main {
	padding-top: 5rem
}

section.game h1 {
	font-size: 2.1rem;
	line-height: 95%;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.3s
}

section.game .title__block {
	width: 500px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 3rem
}

section.game .content__block {
	display: flex;
	flex-direction: column;
	gap: 2.5rem
}

section.game .item {
	display: flex;
	gap: 1.1rem;
	opacity: 0;
	transform: translateX(-50px);
	animation: slideInRight 0.8s ease forwards;
	animation-delay: calc(0.2s * var(--i))
}

section.game .text__block {
	display: flex;
	flex-direction: column;
	gap: .5rem
}

section.game .title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff
}

section.game .text {
	font-size: .95rem;
	color: var(--section-game-color);
	font-weight: 400
}

section.game .fixed__height {
	min-height: 2.5rem
}

section.game .circle {
	width: 50px;
	height: 50px;
	position: relative;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgb(255 85 0 / .08);
	border: 1px solid rgb(255 85 0 / .24);
	border-radius: 50%;
	transition: transform 0.3s ease
}

section.game .circle:hover {
	transform: scale(1.1)
}

section.game .item:not(:last-child) .circle:after {
	content: "";
	position: absolute;
	top: 115%;
	width: 1px;
	height: 37px;
	background: rgb(255 85 0 / .24)
}

section.game .qr__block {
	width: 500px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.2rem
}

section.game .qr__block .logo__svg {
	width: 100px;
	margin: 0 auto
}

section.game .logo__svg img {
	width: 100%;
	transition: transform 0.3s ease
}

section.game .logo__svg img:hover {
	transform: scale(1.1)
}

section.game .qr {
	margin: 0 auto;
	width: 200px;
	height: 200px;
	border: 8px solid #8B360C;
	overflow: hidden;
	position: relative;
	touch-action: none;
	background-color: rgb(255 255 255 / .01);
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.5s
}

section.game .qr iframe {
	overflow: hidden !important;
	pointer-events: none;
	touch-action: none
}

section.game .qr img {
	position: absolute;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	display: block;
	inset: -1px;
	z-index: 22;
	border: 7px solid #fff;
	filter: blur(3px);
	transition: filter 0.3s ease
}

section.game .qr img:hover {
	filter: blur(0)
}

section.game .overlay__wrapper {
	position: absolute;
	top: -560px;
	right: -205px;
	width: 600px;
	height: 1000px;
	pointer-events: none;
	touch-action: none;
	overflow: hidden;
	z-index: 21;
	opacity: 0;
	animation: fadeIn 1.5s ease forwards 0.7s
}

@media screen and (max-width:550px) {
	section.game .overlay__wrapper {
		right: -198px;
		top: -603px
	}
}

section.game .qr__block>p {
	text-align: center;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.6s
}

section.game .button__block {
	display: flex;
	justify-content: center
}

section.game .btn__primary span {
	padding: .7rem 1.1rem;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	background-color: var(--primary-color);
	border-radius: 8px;
	position: relative;
	overflow: hidden
}

section.game .btn__primary span::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
	transition: left 0.5s ease
}

section.game .btn__primary span:hover::before {
	left: 100%
}

section.game .footer__text {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: .65rem
}

section.game .footer__text p {
	color: var(--section-game-color);
	font-size: 15px;
	font-weight: 400;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.6s
}

section.game .footer__text a {
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	font-weight: 700;
	position: relative
}

section.game .footer__text a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease
}

section.game .footer__text a:hover::after {
	width: 100%
}

section.game .popup__trigger {
	cursor: pointer
}

section.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 800px;
	background-color: rgb(16 16 16 / .9);
	z-index: 30;
	visibility: hidden;
	opacity: 0;
	padding-top: 5rem;
	transform: translateY(-300px)
}

section.popup.active {
	visibility: visible;
	opacity: 1;
	animation: modalShow .55s forwards
}

@keyframes modalShow {
	0% {
		transform: translateY(-300px);
		opacity: 0
	}

	100% {
		transform: translateY(0);
		opacity: 1
	}
}

section.popup .modal__content {
	margin: 0 auto;
	width: 900px
}

section.popup.active .spinner {
	position: relative;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 0 auto
}

.spinner svg {
	margin: 1rem auto;
	width: 180px;
	height: 180px;
	transform: rotate(-90deg)
}

.spinner svg circle {
	fill: none;
	stroke-width: 5px;
	stroke-linecap: butt
}

.spinner svg circle.bg {
	stroke: #4e4e4e
}

.spinner svg circle.meter {
	stroke: var(--primary-color);
	stroke-dashoffset: 300px;
	stroke-dasharray: 300px;
	animation: prog 6s ease forwards;
	animation-delay: .5s
}

@keyframes prog {
	0% {
		stroke-dashoffset: 300px
	}

	10% {
		stroke-dashoffset: 290px
	}

	20% {
		stroke-dashoffset: 200px
	}

	30% {
		stroke-dashoffset: 190px
	}

	50% {
		stroke-dashoffset: 130px
	}

	80% {
		stroke-dashoffset: 100px
	}

	100% {
		stroke-dashoffset: 0
	}
}

section.popup .modal__header {
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	opacity: 0;
	animation: fadeIn 0.8s ease forwards 0.3s
}

section.popup .modal__header span {
	font-size: 1.1rem;
	color: grey;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.3s ease
}

section.popup .modal__header span:hover {
	color: var(--primary-color)
}

section.popup .modal__header .logo__block {
	width: 115px
}

section.popup .modal__header .logo__block img {
	width: 100%;
	transition: transform 0.3s ease
}

section.popup .modal__header .logo__block img:hover {
	transform: scale(1.05)
}

section.popup .modal__body {
	background-color: #191919;
	padding: 3.5rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards 0.4s
}

section.popup .modal__content__block {
	display: flex;
	flex-direction: column;
	gap: 3rem
}

section.popup .sub__title {
	text-align: center;
	font-size: 1.8rem;
	color: #fff;
	font-weight: 700
}

section.popup .item__block {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: calc(0.2s * var(--i))
}

section.popup .item__block .line {
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	line-height: 12px
}

section.popup .line img {
	margin: 0 6px;
	width: 12px;
	aspect-ratio: 1;
	transition: transform 0.3s ease
}

section.popup .line img:hover {
	transform: scale(1.2)
}

section.popup .item__block p {
	color: #fff;
	font-weight: 700
}

section.popup .item__block .line>span {
	font-weight: 700
}

section.popup .item__block span.error {
	color: #C3303E
}

section.popup .item__block span.green {
	color: #6BA064
}

section.popup .item__block span.grey {
	color: #A0A0A0
}

section.popup .item__block span.yellow {
	color: #D5C24F
}

section.popup .link__primary {
	padding: .3rem .7rem;
	border-radius: 6px;
	background-color: #222;
	color: var(--primary-color);
	font-weight: 400;
	text-decoration: underline;
	position: relative
}

section.popup .link__primary::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease
}

section.popup .link__primary:hover::after {
	width: 100%
}

section.popup p.text {
	display: block;
	width: 570px;
	margin: 0 auto;
	color: #70747F;
	font-size: 17px;
	font-weight: 400;
	text-align: center;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.5s
}

section.popup .dots {
	padding: 0 6px;
	display: flex;
	gap: 12px;
	height: 90%;
	align-items: center
}

section.popup span.dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--primary-color);
	opacity: .9;
	animation: dotsFlash 1.5s ease infinite;
	animation-delay: calc(var(--i) / 2)
}

@keyframes dotsFlash {
	0% {
		transform: scale(1);
		opacity: .9
	}

	80% {
		transform: scale(1.5);
		opacity: .75
	}

	100% {
		transform: scale(1);
		opacity: .9
	}
}

footer {
	padding: 3% 0;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards 0.5s
}

footer .logo img {
	width: 32px;
	height: 32px;
	transition: transform 0.3s ease
}

footer .logo img:hover {
	transform: rotate(360deg)
}

footer .footer__content {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}

footer .footer__content>div {
	display: flex;
	justify-content: center;
	gap: 1rem
}

footer .social img {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease
}

footer .social img:hover {
	transform: scale(1.2)
}

footer .nav>a {
	line-height: 30px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .03em;
	vertical-align: middle;
	text-transform: uppercase;
	position: relative
}

footer .nav>a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease
}

footer .nav>a:hover::after {
	width: 100%
}

footer .nav__primary>a {
	color: var(--color-secondary-text)
}

footer .nav__secondary>a {
	color: var(--text-color-dark-grey)
}

section.error__page {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center
}

section.error__page .error__block {
	text-align: center
}

section.error__page .error__block p {
	font-size: 22px;
	text-transform: uppercase;
	opacity: 0;
	animation: fadeIn 1s ease forwards 0.5s
}

header.bg__shadow {
	background-color: rgb(20 20 20 / .85);
	border-bottom: 1px solid #FFFFFF24;
	backdrop-filter: saturate(180%) blur(94px);
	animation: header-show .3s ease;
	animation-fill-mode: forwards
}

@keyframes header-show {
	0% {
		background-color: rgb(20 20 20 / .1);
		border-color: #FFF0
	}

	100% {
		background-color: rgb(20 20 20 / .85);
		border-color: #FFFFFF24
	}
}

section .image__block.element-show {
	opacity: 1;
	scale: 1;
	transition: opacity .5s ease, scale .75s ease
}

@media screen and (max-width:990px) {
	html {
		font-size: 15px
	}

	section.hero .content__wrapper {
		padding-top: 50px
	}

	section.hero .image__wrapper {
		padding: 0 2%
	}

	h1 {
		font-size: 62px
	}

	h2 {
		text-align: left;
		line-height: 75%
	}

	h1>span,
	h2>span {
		font-size: 36px
	}

	section.authentic .sponsor__name+img {
		width: 70%
	}

	section.priority .grid__block {
		min-width: auto
	}

	section.actions .image__block img {
		width: 100%
	}

	footer .footer__content {
		row-gap: .8rem
	}

	footer .footer__content .nav {
		width: 100%;
		order: 3;
		justify-content: start;
		flex-wrap: wrap
	}

	footer .footer__content .social {
		width: 80%;
		justify-content: end
	}

	header nav.nav__links {
		display: none
	}

	header .menu__icon {
		display: block
	}

	section.privacy .accept__block .text {
		width: 100%
	}

	section.privacy .button__block {
		margin: 10px auto 0;
		flex-wrap: wrap
	}

	section.popup .modal__content {
		width: 650px
	}

	section.popup .modal__body {
		padding: 2.5rem .5rem
	}
}

@media screen and (max-width:690px) {
	:root {
		--cookie-width: 80%
	}

	h1,
	h2 {
		line-height: 75%;
		text-align: center !important
	}

	section.hero .verify__block,
	section.parallax .grid__wrapper,
	section.authentic .grid__block,
	section.following .grid__block,
	section.priority .grid__block {
		grid-template-columns: repeat(1, 1fr);
		gap: 2rem
	}

	section.hero .verify__block>img,
	section.parallax .grid__wrapper>img,
	section.authentic .grid__block>img,
	section.following .grid__block>img,
	section.priority .grid__block>img {
		width: 100%
	}

	section.hero .description {
		width: auto
	}

	section.authentic .grid__block:nth-child(2n) .image__block {
		order: 0
	}

	section.hero .image__block,
	section.authentic .image__block {
		width: 65%;
		margin: 2% auto;
		display: flex;
		justify-content: center
	}

	p.section__content__text {
		font-size: 18px
	}

	section.parallax {
		padding: 60px 0
	}

	section.parallax .item__block .item {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		text-align: center
	}

	section.parallax .item__block .item .icon,
	section.parallax .arrow__block {
		max-width: 100%;
		display: flex;
		justify-content: center
	}

	section.parallax .icon>img {
		width: 180px;
		height: 180px
	}

	section.authentic .grid__block .about__block {
		order: -1
	}

	section.authentic .content__wrapper {
		gap: 50px
	}

	section.following .image__block img {
		width: 70%;
		margin: 0 auto
	}

	section.authentic .sponsor .image__block {
		width: 100%;
		display: flex;
		justify-content: start;
		flex-wrap: wrap
	}

	section.authentic .sponsor .image__block>div {
		width: 100%
	}

	section.authentic .sponsor .image__block>img {
		width: 220px
	}

	section.authentic .sponsor__name h3 {
		margin: 15px 0
	}

	section.actions .button__block {
		width: 300px
	}

	section.game .title__block,
	section.game .qr__block {
		width: 100%;
		padding: 0 1rem
	}

	section.popup .modal__content {
		width: 420px
	}

	section.popup .item__block .line {
		font-size: 14px
	}

	section.popup p.text {
		padding: 0 .5rem;
		width: 100%
	}

	section.popup .item__block .line:last-child {
		flex-wrap: wrap
	}

	section.priority .grid__block .text>p {
		line-height: 95%
	}
}

.spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid #fff;
	border-radius: 50%;
	border-top-color: #ef5204;
	animation: spin 1s ease-in-out infinite;
	vertical-align: middle
}

@keyframes spin {
	to {
		transform: rotate(360deg)
	}
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / .8);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1000
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.7);
	opacity: 0;
	visibility: hidden;
	z-index: 1001;
	transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	background: #1a1a1aed;
	padding: 20px;
	border-radius: 8px;
	width: 600px;
	color: #fff;
	font-family: var(--font-family);
	font-size: 16px;
	box-shadow: 0 10px 20px rgb(0 0 0 / .3)
}

.modal.active {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	visibility: visible
}

.modal_content {
	text-align: left
}

.modal_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px
}

.modal_header img {
	width: 150px
}

.modal-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer
}

.modal_content .hub-id-line {
	text-align: center;
	margin: 5px 0;
	font-size: 18px
}

.modal_content .hub-id {
	color: #ef5204
}

.modal_content .status {
	color: lime
}

.modal_content .error {
	color: red
}

.modal_content .warning {
	color: #ef5204
}

.modal_info {
	padding: 50px;
	font-size: 16px;
	font-weight: 600
}

.modal_warning {
	background: #1e1e1e;
	padding: 20px;
	border-radius: 10px;
	display: none
}

.modal_warning.visible {
	display: block
}