@font-face {
	font-family: 'Work Sans';
	src: url('../fonts/work-sans/WorkSans-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Work Sans 800";
	src: url('../fonts/work-sans/WorkSans-VariableFont_wght.ttf');
	font-weight: 800;
}

@font-face {
	font-family: "Work Sans 700";
	src: url('../fonts/work-sans/WorkSans-VariableFont_wght.ttf');
	font-weight: 700;
}

@font-face {
	font-family: "Work Sans 500";
	src: url('../fonts/work-sans/WorkSans-VariableFont_wght.ttf');
	font-weight: 500;
}

@font-face {
	font-family: "Work Sans 400";
	src: url('../fonts/work-sans/WorkSans-VariableFont_wght.ttf');
	font-weight: 400;
}

@font-face {
	font-family: "Work Sans 300";
	src: url('../fonts/work-sans/WorkSans-VariableFont_wght.ttf');
	font-weight: 300;
}

* {
	font-family: 'Work Sans', sans-serif;
}

body {
	background: linear-gradient(360deg, #040209 0%, #290050 100%);
}

.title {
	line-height: 100%;
}

.header_container {
	padding: 30px 0 0 0;
	justify-content: center;
}

@media screen and (max-width: 1100px) {
	.header_container {
		justify-content: space-between;
	}
}

@media (max-width: 480px) {
	.header_container {
		padding: 30px 5px 0 5px;
	}
}

.header_logo {
	z-index: 3;
}

.header_logo a {
	width: 140px;
	height: 40px;
}

.header_logo a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header_nav {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 48px;
	padding-right: 176px;
}

@media screen and (max-width: 1439px) {
	.header_nav {
		padding-right: 0px;
	}
}

.header_nav_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header_nav_list.mobile {
	gap: 32px;
	flex-direction: column;
	margin-top: 50px;
}

@media screen and (max-width: 1100px) {
	.header_nav_list {
		display: none;
	}

	.header_nav_list.mobile {
		display: flex;
	}

}

.header_nav_list a.tab-btn {
	width: 148px;
	height: 46px;
	padding: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	color: #b5a8e6;
	cursor: pointer;
	user-select: none;

	background-image: url("/img/icons/nav-tab.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;

	transition: color 0.25s ease;
}

.header_nav_list a.tab-btn:hover {
	color: #fff;
}

.header_nav_list a.tab-btn.active {
	background-image: url("/img/icons/nav-tab-active.svg");
	color: #fff;
	cursor: default;
}

.header_nav_list a.tab-btn.disabled {
	pointer-events: none;
	cursor: not-allowed;
	opacity: 0.6;
}

@media (max-width: 768px) {
	.header_nav_list:not(.mobile) a.tab-btn {
		width: 120px;
		height: 40px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.header_nav_list:not(.mobile) a.tab-btn {
		width: 90px;
		height: 36px;
		font-size: 12px;
	}
}

.header_socials_list {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header_socials_list.mobile {
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	align-items: center;
	gap: 25px 25px;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	padding-top: 30px;
	position: relative;
	border-top: 1px solid;
	border-image: radial-gradient(55% 13350% at 50% 50%, #c590ff 0, #1f003c 100%) 1;
}

@media screen and (max-width: 1439px) {
	.header_socials_list {
		display: none;
	}

	.header_socials_list.mobile {
		display: grid;
	}
}

@media (max-width: 480px) {
	.header_socials_list.mobile {
		max-width: 250px;
		gap: 15px 5px;
	}
}

.header_socials_list_item {
	height: 28px;
	width: 28px;
	transition: filter 0.01s ease;
}

.header_socials_list_item:hover {
	filter: brightness(0) saturate(100%) invert(84%) sepia(83%) saturate(723%) hue-rotate(7deg) brightness(108%) contrast(104%);
}

.header_socials_list_item img {
	width: 100%;
	height: 100%;
}

.Header_nav_mobile_wrapper {
	width: 400px;
	height: 600px;
	position: absolute;
	top: 100px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	background: rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
}

@media (max-width: 480px) {
	.Header_nav_mobile_wrapper {
		width: 300px;
	}
}

.hamburger div {
	background: #f1f304;
}

.info {
	position: relative;
	min-height: 100vh;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.5s;
}

.info::before {
	content: "";
	background-image: url(/img/info/info-bg.png);
	background-repeat: no-repeat;
	mask-composite: intersect;
	mask-image: linear-gradient(to bottom, black 90%, transparent 95%), linear-gradient(to top, black 90%, transparent 95%);
	position: absolute;
	top: 0%;
	width: 100%;
	height: 100%;
	right: 0;
	width: 1150px !important;
	background-size: contain;
	background-position: right;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 2000px) {
	.info::before {
		background-position: center;
	}
}

@media (max-width: 1500px) {
	.info::before {
		background-image: radial-gradient(circle at right center, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 35%), url(/img/info/info-bg-mobile.png);
		width: calc(1150px - 460px) !important;
	}
}


@media (max-width: 1100px) {
	.info::before {
		width: 100% !important;
		mask-image: linear-gradient(to bottom, black 70%, transparent 85%);
		background-position: center;
		height: calc(100% - 270px);
	}
}

@media (min-width: 768px) and (max-width: 1099px) {
	.info::before {
		background-image: radial-gradient(ellipse 30% 80% at 80% center,
				rgba(255, 255, 255, 0.6) 0%,
				rgba(255, 255, 255, 0) 55%),
			url(/img/info/info-bg-mobile.png);
	}
}



@media (max-width: 767px) {
	.info::before {
		/* background-size: 100% 60%;
		mask-image: linear-gradient(to bottom, black 50%, transparent 60%); */
		mask-composite: intersect;
		mask-image: linear-gradient(to bottom, black 90%, transparent 95%),
			linear-gradient(to top, black 90%, transparent 95%);

		/* ⬇ додаємо білий еліпс */
		box-shadow: 300px 0 400px 200px rgba(255, 255, 255, 1);
	}
}

.info_container {
	position: absolute;
	left: 30%;
	transform: translate(-50%, -50%);
	top: 37.5%;
	padding: 0px;
}


@media (max-width: 2000px) {
	.info_container {
		/* left: 35%; */
		top: 47.5%;
	}
}


@media (max-width: 1400px) {
	.info_container {
		left: 25%;
	}
}

@media (max-width: 1100px) {
	.info_container {
		left: 50%;
		top: 75%;
	}
}

.info_tags {
	display: flex;
	gap: 12px;
	/* flex-wrap: wrap; */
}

.info_tags span {
	display: inline-block;
	border: 0.5px solid #f1f304;
	background: rgba(241, 243, 4, 0.24);
	color: #f1f304;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	height: 32px;
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: 2px;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	text-wrap-mode: nowrap;
}

/* .info_tags span:hover {
	background: rgb(241 243 4 / 24%);
	cursor: pointer;
} */

@media (max-width: 767px) {
	.info_tags {
		justify-content: center;
		gap: 6px;
	}

	.info_tags span {
		font-size: 12px;
		padding: 8px 8px;
		letter-spacing: 0;
		height: 28px;
	}
}

@media (max-width: 480px) {
	.info_tags {
		gap: 4px;
	}

	.info_tags span {
		font-size: 11px;
		padding: 6px 4px;
		height: 24px;
	}
}

.info_container .info_description {
	padding: 0px;
	gap: 36px;

}

@media (max-width: 480px) {
	.info_container .info_description {
		gap: 24px;
	}
}

.info_description_title {
	text-wrap-mode: nowrap;
}

.info_description_title_bottom span {
	font-weight: 800;
}

.info_description_text {
	font-weight: 500;
}

.info_container .button-play {
	font-size: 20px;
	font-weight: 700;
	width: 270px;
	height: 65px;
	background-image: url(/img/icons/boost-building.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	color: #F1F304;
	background-color: transparent;
	text-transform: uppercase;
	transition: all 0.5s ease;
	text-align: center;
	line-height: 65px;
}

.info_container .button-play:hover {
	opacity: 0.9;
	transform: scale(1.025);
	filter: drop-shadow(0 0 10px rgba(241, 243, 4, 0.5));
}


.gameDescription {
	position: relative;
	margin-top: 0px;
	padding-bottom: 50px;
}

@media (max-width: 767px) {
	.gameDescription {
		margin-top: 25px;
	}
}

#About .title {
	text-align: left;
	font-size: 62px;
}

@media (max-width: 767px) {

	#About .title {
		font-size: 32px;
	}
}

.gameDescription::before,
.gameDescription::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 400px;
	opacity: 0.9;
	/* height: 1000px; */
	background-repeat: no-repeat;
	background-size: contain;
	/* background-position: center; */
	pointer-events: none;
	z-index: 0;
	filter: drop-shadow(0 0 40px rgba(255, 247, 60, 0.15));
	mask-composite: intersect;
}

.gameDescription::before {
	left: 0px;
	top: -75px;
	background-image: url(../img/gameDescription/about_left_balls.png), url(../img/gameDescription/about_left_stars.png);
	background-position: left top, left top;
	background-size: 375px auto, 500px auto;
	mask-image: linear-gradient(to right, black 70%, transparent 100%),
		linear-gradient(to top, black 95%, transparent 100%),
		linear-gradient(to bottom, black 80%, transparent 90%);
}

.gameDescription::after {
	right: 0;
	top: -50px;
	background-image: url(../img/gameDescription/about_right_balls.png), url(../img/gameDescription/about_right_stars.png);
	background-position: right top, right top;
	background-size: 375px auto, 425px auto;
	filter: drop-shadow(0 0 40px rgba(255, 247, 60, 0.15));
	mask-image: linear-gradient(to left, black 80%, transparent 100%),
		linear-gradient(to top, black 97%, transparent 100%),
		linear-gradient(to bottom, black 85%, transparent 100%)
}

.gameDescription .container,
.gameDescription .gameDescription__list_container {
	position: relative;
	z-index: 2;
}

@media (max-width: 992px) {

	.gameDescription::before {
		width: 0;
	}

	.gameDescription::after {
		width: 100%;
	}
}

.gameDescription__item_container {
	height: 425px;
	/* height: 100%; */
	margin: 75px 0;
}

.gameDescription_title {
	margin-bottom: 100px;
}

@media (max-width: 767px) {
	.gameDescription_title {
		margin-bottom: 0px;
	}

	.gameDescription__list_container {
		margin-top: 0px;
		gap: 0px;
	}
}

.gameDescription_content_title {
	color: #FFFFFF;
}

.gameDescription__descr_container {
	height: auto;
}

@media (max-width: 767px) {
	.gameDescription__descr_container {
		background: linear-gradient(270deg, #290050 0%, #ffffff03 100%);
	}
}

.gameDescription_img {
	position: relative;
	width: calc(100% - 725px);
	height: 100%;
	max-width: 550px;
}

.gameDescription_img img {
	object-fit: contain;
	position: absolute;
	width: 100%;
	height: auto;
	top: -100px;
	left: 0px;
	z-index: 1;
}

.gameDescription_img_bg_1 {
	z-index: 0;
	top: 100px;
	left: 125px;
}

.collections_alpha_img_bg {
	filter: blur(50px);
	width: 325px;
	height: 200px;
}

.gameInfo__container {
	margin-top: 100px;
	background-image: url(/img/gameDescription/game_info_bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: color 0.25s ease;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	width: 100%;
	padding: 40px 40px;
	/* border-radius: 16px; */
	border-radius: 32px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}


@media screen and (max-width: 767px) {
	.gameInfo__container {
		flex-direction: column;
		margin-top: 75px;
	}
}

.gameInfo__container::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(/img/gameDescription/game_info_right_balls.svg);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
	width: 400px;
	/* height: 155px; */
	height: 100%;
}

.gameInfo__container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(/img/gameDescription/game_info_left_balls.svg);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
	width: 225px;
	height: 100%;
}

.gameInfo__content h2 {
	font-size: 42px;
	font-family: "Work Sans 700";
	color: #FFFFFF;
	line-height: 100%;
	margin-bottom: 10px;
}

.gameInfo__content p {
	font-size: 17px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
}

.gameInfo__button {
	z-index: 1;
}

.gameInfo__button a {
	color: #F1F304;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	/* transition: 0.3s; */
	background-image: url(/img/gameDescription/game_info_button.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 30px;
	width: 285px;
	height: 55px;
	transition: all 0.5s ease;
}

.gameInfo__button a:hover {
	opacity: 0.9;
	/* transform: scale(1.025); */
	filter: drop-shadow(0 0 10px rgba(241, 243, 4, 0.5));
}


@media screen and (max-width: 767px) {
	.gameInfo__button {
		margin: 20px 0 50px;
	}

	.gameInfo__button a {
		width: 225px;
		font-size: 16px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1439px) {
	.gameDescription__descr_container {
		width: 50%;
	}

	.gameDescription_img {
		width: 50%;
	}

	.gameDescription_img_bg_1 {
		top: 75px;
		left: 55px;
	}

	.collections_alpha_img_bg {
		width: 250px;
	}

	/* .gameDescription_img img {
		left: -250px;
	} */
}


@media (max-width: 767px) {
	.gameDescription__item_container {
		flex-wrap: wrap;
		margin: 25px 0;
		height: 100%;
	}

	.gameDescription_img {
		width: 100%;
	}

	.gameDescription_img img {
		position: sticky;
		width: 100%;
		height: 100%;
	}

	.collections_alpha_img_bg {
		filter: blur(50px);
		width: 225px;
		height: 175px;
	}

	.gameDescription_img_bg_1 {
		top: 175px;
		left: 40px;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(60px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gameDescription__item_container {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.gameDescription__item_container.visible {
	opacity: 1;
	transform: translateY(0);
}

#About .gameDescription_title {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

#About .gameDescription_title.visible {
	opacity: 1;
	transform: translateY(0);
}

.gameInfo__container {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.gameInfo__container.visible {
	opacity: 1;
	transform: translateY(0);
}


.screenshots-section {
	position: relative;
	/* padding: 50px 0; */
}

.screenshots-wrapper {
	width: 100%;
	overflow: hidden;
}

.screenshots-track {
	display: flex;
	margin: 20px 0;
	gap: 32px;
	animation: scroll-screens 25s linear infinite;
	cursor: pointer;
	height: 420px;
}

.screenshots-track:hover {
	animation-play-state: paused;
}

.screenshots-track img:hover {
	transform: scale(1.05) !important;
}

.screenshots-track img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes scroll-screens {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.screenshots-track {
		height: 320px;
	}

	.screenshots-track {
		gap: 24px;
		animation-duration: 35s;
	}
}

/* === Анімація появлення секції === */
.screenshots-section {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 1s ease, transform 1s ease;
}

.screenshots-section.visible {
	opacity: 1;
	transform: scale(1);
}

/* Плавна поява самих картинок після появи секції */
.screenshots-track img {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.screenshots-section.visible .screenshots-track img {
	opacity: 1;
	transform: translateY(0);
}

/* Затримка по черзі для ефекту “кадру появи” */
.screenshots-section.visible .screenshots-track img:nth-child(1) {
	transition-delay: 0.1s;
}

.screenshots-section.visible .screenshots-track img:nth-child(2) {
	transition-delay: 0.2s;
}

.screenshots-section.visible .screenshots-track img:nth-child(3) {
	transition-delay: 0.3s;
}

.screenshots-section.visible .screenshots-track img:nth-child(4) {
	transition-delay: 0.4s;
}

.screenshots-section.visible .screenshots-track img:nth-child(5) {
	transition-delay: 0.5s;
}

.screenshots-section.visible .screenshots-track img:nth-child(6) {
	transition-delay: 0.6s;
}

.screenshots-section.visible .screenshots-track img:nth-child(7) {
	transition-delay: 0.7s;
}


.trailer {
	position: relative;
	margin: 50px 0 125px;
}

.trailer_container {
	position: relative;
	z-index: 1;
	max-width: 1100px;
}

.trailer .title {
	color: #fff;
	text-align: center;
	margin-bottom: 25px;
}

.trailer .video__iframe_wrap {
	margin: 0;
	padding: 30px;
	background: linear-gradient(190.13deg, rgba(27, 0, 56, 0.34) 40.49%, rgba(189, 38, 234, 0.34) 95.7%);
	border: 1px solid #A350FF;
	box-shadow: 0px 0px 32.95px 0px #9930B84A;
	backdrop-filter: blur(45px);
	width: 100%;
	height: 600px;
}

@media (max-width: 768px) {
	.trailer .video__iframe_wrap {
		height: 350px;
		margin: 10px;
		width: auto;
		padding: 15px;
	}
}

.trailer .video__iframe {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}


.trailer {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 1s ease, transform 1s ease;
}

.trailer.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Для iframe — легка затримка появи */
.trailer.visible .video__iframe_wrap {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.video__iframe_wrap {
	opacity: 0;
	transform: translateY(40px);
}

.rarity_title {
	font-size: 62px;
	text-transform: uppercase;
	color: #ffc700;
}

.rarity_title span {
	font-size: 62px;
	font-weight: 800;
	text-transform: uppercase;
	color: #ffffff;
}

@media screen and (max-width: 767px) {

	.rarity_title,
	.rarity_title span {
		line-height: 100%;
		font-size: 42px;
		max-width: none;
	}
}

.rarityChecker {
	background: linear-gradient(32.53deg, rgba(241, 243, 4, 0.25) 24.66%, rgba(241, 243, 4, 0) 106.27%);
	border: 2px solid #F1F304;
	border-radius: 0;
	padding: 0 50px;
}

.rarityCheckerTitleContainer {
	border-right: 2px solid #F1F304;
	justify-content: space-evenly;
	gap: 20px;
}

.rarityCheckerTitleHalf {
	gap: 5px;
	justify-content: space-evenly;
}

.rarityCheckerButtons {
	/* flex-wrap: wrap; */
	width: 100%;
}

.rarityCheckerTitle {
	color: #FFFFFF;
	line-height: 100%;
	font-size: 30px;
	font-weight: 700;
	max-width: 230px;
}

.rarityCheckerSubtitle {
	color: rgb(255 255 255 / 90%);
	font-size: 15px;
	max-width: 250px;
	left: 0;
}

.rarityCheckInputContainer {
	width: 230px;
	background: transparent;
	border: 1px solid rgb(255 255 255 / 25%);
	border-radius: 1px;
	align-items: center;
	margin: 0;
}

.rarityCheckInputContainer:hover {
	border: 1px solid #F1F304;
}

.inputPrevalue {
	margin-left: 0;
	font-size: 14px;
	color: #FFFFFF80;
}

.rarityCheckerInput {
	background: transparent;
	color: #FFFFFF80;
	width: 80%;
	font-size: 16px;
	top: 0;
}

.rarityCheckerBtn {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
	color: #F1F304;
	cursor: pointer;
	background: transparent;
	background-image: url(/img/rarity/rarity_check_button_bg.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: color 0.25s ease;
	width: 270px;
	transition: all 0.5s ease;
}

.rarityCheckerBtn:hover {
	opacity: 0.9;
	transform: scale(1.025);
	filter: drop-shadow(0 0 10px rgba(241, 243, 4, 0.5));
}

@media only screen and (max-width: 1439px) {
	.rarityChecker {
		padding: 0 25px;

	}

	.rarityCheckInputContainer {
		width: 90%;
		margin: 0;
	}

	.rarityCheckerBtn {
		width: 90%;
	}
}

@media (max-width: 767px) {

	.rarityChecker {
		padding: 25px;
		height: 100%;
	}

	.rarityCheckerTitleContainer {
		flex-wrap: wrap;
		border-right: none;
		border-bottom: 2px solid #F1F304;
	}

	.rarityCheckerTitle {
		left: 0;
		max-width: none;
	}

	.rarityCheckerButtons {
		flex-wrap: wrap;
		gap: 10px;
	}

	.rarityCheckInputContainer {
		width: 100%;
	}

}


.tokenInfoText {
	border-bottom: none;
}

.tokenInfoText_title {
	color: #FFFFFF80;
	font-family: "Work Sans 500";
}

.statisticValue {
	color: #ffffff;
}

.tokenInfoText_title.tokenInfoText_title_bottom {
	color: rgb(255 255 255 / 90%);
}

.traitTitle {
	color: #FFFFFF80;
}

.traitValue {
	border: 1px solid #FFFFFF80;
	color: #ffffff;
}

.Legendary {
	background: #FF8401;
	backdrop-filter: blur(24px);
	box-shadow: 0px 0px 19px 0px #FF8401;
	border-radius: 0;
	color: #2B2806;
	font-size: 13px;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
}

.groupTitle {
	font-size: 32px;
	color: rgb(255 255 255 / 90%);
	font-weight: 500;
	line-height: 100%;
}

.token {
	background: #1E004C;
	background-image: none;
}


.roadmap_container {
	z-index: 1;
	margin-top: 100px;
}

.roadmap_title {
	text-align: center;
	line-height: 100%;
}

.roadmap_mobile_wrapper {
	left: 70px;
	gap: 39px;
}

.roadmap_mobile_content_title {
	font-size: 18px;
	text-align: center;
}

.roadmap_mobile_content_data {
	width: 100%;
	text-align: center;
}

/* --- Початковий стан --- */
.roadmap {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.roadmap.visible {
	opacity: 1;
	transform: translateY(0);
}

/* --- Заголовок --- */
.roadmap_title {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.roadap_content_title {
	font-family: "Work Sans 500";
}

.roadmap.visible .roadmap_title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.1s;
}

/* --- Основна ілюстрація --- */
.roadmap_content_img {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.roadmap.visible .roadmap_content_img {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}

/* --- Текстові блоки --- */
.roadmap_content_wrapper {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.roadmap.visible .roadmap_content_wrapper {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

/* --- Mobile roadmap --- */
.roadmap_content_container_mobile {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.roadmap.visible .roadmap_content_container_mobile {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}


.twits {
	z-index: 1;
	margin-top: 200px;
}

@media screen and (max-width: 770px) {
	.roadmap {
		margin-top: 50px;
	}

	.roadmap_content_container_mobile {
		height: 100%;
	}

}

.marketplaces_title {
	text-align: center;
	line-height: 100%;
	font-size: 62px;
}

.marketplaces_title span {
	font-family: "Work Sans 800";
	color: #FFFFFF;
}

.footer {
	position: relative;
}

.footer::before {
	content: "";
	position: absolute;
	top: -300px;
	bottom: 0;
	width: 100%;
	min-height: 100%;
	background-image: url(/img/footer_bg.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.footer::after {
	content: "";
	position: absolute;
	top: -100px;
	left: -10px;
	width: 100%;
	min-height: 100%;
	background-image: url(/img/footer_logo_text_bg.png);
	background-repeat: no-repeat;
	background-position: top;
	z-index: -1;
}

@media (max-width: 768px) {
	.footer::after {
		background-size: contain;
		background-position: center;
	}
}

.footer_container {
	margin-top: 125px;
}


.footer_socials_list {
	display: flex;
	align-items: center;
	gap: 60px;
}

.footer_socials_list_item {
	height: 36px;
	width: 36px;
	transition: filter 0.01s ease;
}

.footer_socials_list_item:hover {
	filter: brightness(0) saturate(100%) invert(84%) sepia(83%) saturate(723%) hue-rotate(7deg) brightness(108%) contrast(104%);
}

.footer_socials_list_item img {
	position: relative;
	width: 100%;
	height: 100%;
}


.footer-link a {
	font-family: 'Work Sans 700';
	font-size: 14px;
	line-height: 24px;
	color: #D9D9D9;
	opacity: 0.4;
	transition: 0.3s ease;
}

.footer-link a:hover,
.footer_description a:hover {
	color: #F1F304;
	opacity: 0.8;
}

@media (max-width: 480px) {
	.footer_socials_list {
		gap: 20px;
	}

	.footer_socials_list_item {
		height: 28px;
		width: 28px;
	}

	.footer-link a {
		font-size: 12px;
	}

}