@font-face {
	font-family: 'Druk';
	src: url('../fonts/Druk-Bold-Trial.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Druk';
	src: url('../fonts/Druk-Heavy-Trial.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Druk';
	src: url('../fonts/Druk-Medium-Trial.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

:root {
	--index: calc(1vw + 1vh);
	--items-gap: 40px;
	--section-title-margin: 48px;
	--section-bottom-margin: 80px;
	--main-transition: 250ms ease-in-out;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-size: 18px;
	background-image: url('../img/bg_desk.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
}

.body__wrapper {
	position: relative;
	overflow-x: hidden;
}

/* properties */
@property --card-light-color {
	syntax: '<color>';
	initial-value: #be00e3;
	inherits: false;
}

@property --card-dark-color {
	syntax: '<color>';
	initial-value: #7f00ee;
	inherits: false;
}

@property --card-face-light-color {
	syntax: '<color>';
	initial-value: #0a0a18;
	inherits: true;
}

@property --card-face-dark-color {
	syntax: '<color>';
	initial-value: #0a0a18;
	inherits: true;
}

@property --card-face-gradient-angle {
	syntax: '<angle>';
	initial-value: 295deg;
	inherits: true;
}

@property --card-face-dark-color--hover {
	syntax: '<color>';
	initial-value: #7f00ee;
	inherits: true;
}

@property --card-face-light-color--hover {
	syntax: '<color>';
	initial-value: #8300a3;
	inherits: true;
}

/* cards */

.card {
	background: rgba(196, 196, 196, 0.01);
	border-radius: 16px;
	border-top: 2px solid rgba(255, 255, 255, 0.5);
	border-left: 2px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(75px);
	padding: 15px;
	gap: 4px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 5;
	box-shadow: -2px -1px 12px 0 rgba(188, 72, 255, 0.43) inset,
		0 147px 150px -72px rgba(202, 172, 255, 0.3) inset,
		0 6px 27px 0 rgba(154, 146, 210, 0.3) inset,
		0 1.5px 60px 0 rgba(227, 222, 255, 0.2) inset;
	transition: --card-dark-color var(--main-transition),
		--card-light-color var(--main-transition);
}

.card:hover {
	--card-light-color: #fff;
	--card-dark-color: #fff;
	--card-face-dark-color: var(--card-face-dark-color--hover, #009);
	--card-face-light-color: var(--card-face-light-color--hover, #00f);
}

.card__info {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	align-items: center;
}

.card__info>.text {
	text-transform: uppercase;
	font-weight: 600;
}

.card .icon circle {
	stroke-dashoffset: 50;
	stroke-dasharray: 150;
	stroke-linecap: round;
}

.card .icon circle.inner-circle {
	stroke-dashoffset: 50;
	stroke-dasharray: 150;
}

.card .icon * {
	transition: all 1s ease;
}

.card:hover circle {
	stroke-dashoffset: 0;
}

.card:hover circle.inner-circle {
	stroke-dashoffset: 0;
	stroke: #fff;
}

.card:hover defs stop {
	stop-color: #fff;
}

.arrow-icon {
	transition: transform 350ms ease-in;
	width: 27px;
	height: 27px;
}

.card:hover .arrow-icon {
	transform: scale(1.2) rotateZ(-45deg);
}

/* Socials */

.socials__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: var(--items-gap);
}

.socials__item {
	flex: 0 0 260px;
	display: flex;
	flex-direction: column;
	align-items: normal;
	height: 156px;
}

.socials__item .card__info {
	max-width: unset;
}

#socials-telegram {
	--card-face-gradient-angle: 253deg;
	--card-face-dark-color--hover: #00f;
	--card-face-light-color--hover: #589bd8;
}

#socials-instagram {
	--card-face-gradient-angle: 232deg;
	--card-face-dark-color--hover: #ed6d47;
	--card-face-light-color--hover: #943697;
}

#socials-facebook {
	--card-face-gradient-angle: 119deg;
	--card-face-dark-color--hover: #0a0a18;
	--card-face-light-color--hover: #0345ae;
}

#socials-x {
	--card-face-gradient-angle: 238deg;
	--card-face-dark-color--hover: #000;
	--card-face-light-color--hover: #0d1130;
}

#socials-youtube {
	--card-face-gradient-angle: 249deg;
	--card-face-dark-color--hover: #e13838;
	--card-face-light-color--hover: #991f1f;
}

#socials-discord {
	--card-face-gradient-angle: 250deg;
	--card-face-dark-color--hover: #8310dd;
	--card-face-light-color--hover: #0b0977;
}

#socials-quiz {
	--card-face-gradient-angle: 249deg;
	--card-face-dark-color--hover: #ff4500;
	--card-face-light-color--hover: #900;
}

#socials-twitch {
	--card-face-gradient-angle: 336deg;
	--card-face-dark-color--hover: #bd9afc;
	--card-face-light-color--hover: #502999;
}

#socials-pinterest {
	--card-face-gradient-angle: 253deg;
	--card-face-dark-color--hover: #e60023;
	--card-face-light-color--hover: #ff7287;
}

#socials-snapchat {
	--card-face-gradient-angle: 253deg;
	--card-face-dark-color--hover: #fc8a26;
	--card-face-light-color--hover: #fdfb54;
}

#socials-reddit {
	--card-face-gradient-angle: 253deg;
	--card-face-dark-color--hover: #ff4500;
	--card-face-light-color--hover: #671c00;
}

#socials-tiktok {
	--card-face-gradient-angle: 90deg;
	--card-face-dark-color--hover: #25f4ee;
	--card-face-light-color--hover: #fe2c55;
}

#socials-kick {
	--card-face-gradient-angle: 90deg;
	--card-face-dark-color--hover: #11be34;
	--card-face-light-color--hover: #156a04;
}

/* entities */
.absolute {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.relative {
	position: relative;
}

.grid-2c {
	display: flex;
	gap: var(--items-gap);
}

.grid-2c>* {
	flex: 1;
}

section {
	margin-bottom: var(--section-bottom-margin);
	width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

.section__title {
	font-size: 36px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: var(--section-title-margin);
}

.icon {
	width: 40px;
	height: 40px;
}

/* !entities */

.main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
	position: relative;
}

/* Hero section */
#hero {
	position: relative;
	height: clamp(600px, calc(100vh - 70px), 803px);
	margin-top: 50px;
}

.hero__logo {
	display: block;
	width: clamp(120px, calc(30% - 40px), 300px);
	position: absolute;
	left: 15px;
	top: 30px;
	z-index: 15;
	transition: var(--main-transition);
}

.hero__logo img {
	width: 80%;
	height: auto;
}

.hero__logo:hover {
	transform: scale(1.08);
}

.hero__wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 16px;
	z-index: 1;
}

.hero__wrapper>.hero-card_background {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/* height: 100%; */
	z-index: -1;
}

.hero__info-mob {
	display: none;
}

.hero__info {
	position: relative;
	max-width: 342px;
	margin-inline: auto;
	text-align: center;
}

.hero__button {
	text-transform: uppercase;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-image: url('../img/button-bg.webp');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 286px;
	height: 68px;
	font-family: 'Druk', sans-serif;
	font-size: 26px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.05em;
	filter: drop-shadow(14.392px 28.785px 115.138px rgba(169, 33, 237, 0.3)) drop-shadow(-28.785px -14px 71.961px rgba(114, 42, 142, 0.5)) drop-shadow(0 28.785px 43.177px rgba(215, 64, 228, 0.3));
}

.hero__button:hover {
	background-position-x: 100%;
}

.hero__info .title {
	font-family: 'Druk', sans-serif;
	font-size: clamp(24px, calc(var(--index) * 2.65), 50px);
	font-weight: 700;
	color: #fff;
	text-align: center;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
	background: linear-gradient(91deg,
			#bdbdbd -5.21%,
			#f1f1f1 26.9%,
			#bebebe 51.68%,
			#fff 74.22%,
			#868686 107.45%);
	filter: drop-shadow(0 0 8px rgba(174, 1, 254, 0.5));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.hero__info .title span {
	background: linear-gradient(91deg,
			#bdbdbd -5.21%,
			#f1f1f1 26.9%,
			#bebebe 51.68%,
			#fff 74.22%,
			#868686 107.45%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 100px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
}

.hero__subtitle {
	color: #fff;
	text-align: center;
	font-family: 'Druk', sans-serif;
	font-size: clamp(16px, calc(var(--index) * 2.65), 28px);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	/* filter: drop-shadow(0 0 8px rgba(174, 1, 254, 0.5)); */
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.hero__subtitle span {
	color: #fff;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}

#hero_image-bg {
	position: absolute;
	z-index: -1;
}

#hero_image-face-back,
#hero_image-face-x {
	position: absolute;
	mix-blend-mode: color-dodge;
}

#hero_image-face-back {
	left: 15%;
	top: 14%;
	height: 70%;
	z-index: -1;
}

#hero_image-face-x {
	left: 0;
	height: 29%;
}

/* Bonuses and downloads */

.bonuses__item .card__info,
.downloads__item .card__info {
	display: grid;
	grid-template-columns: 46px 1fr;
}

.bonuses__item.card,
.downloads__item.card {
	justify-content: center;
	border-radius: 20px;
	border-top: 2px solid rgba(255, 255, 255, 0.5);
	border-left: 2px solid rgba(255, 255, 255, 0.5);
	background: linear-gradient(90deg,
			rgba(133, 40, 251, 0) 0%,
			rgba(40, 40, 251, 0.06) 100%),
		linear-gradient(0deg,
			rgba(255, 255, 255, 0.04) 0%,
			rgba(255, 255, 255, 0.04) 100%),
		linear-gradient(0deg,
			rgba(29, 29, 29, 0.2) 0%,
			rgba(29, 29, 29, 0.2) 100%),
		rgba(29, 29, 29, 0.1);
	box-shadow: -9px -9px 3px -10px rgba(255, 255, 255, 0.1) inset,
		9px 9px 3px -10px rgba(255, 255, 255, 0.5) inset,
		6px 9px 3px -6px rgba(179, 179, 179, 0.2) inset,
		-6px -9px 3px -6px rgba(179, 179, 179, 0.5) inset,
		0 0 68px 0 rgba(242, 242, 242, 0.1) inset;
	backdrop-filter: blur(37px);
	padding-top: 30px;
	padding-bottom: 30px;
}

/* Footer */
.footer {
	height: 205px;
	/* box-shadow: 0px 4px 40px 0px rgba(0, 0, 26, 0.5); */
	margin-top: 20px;
	padding-block: 25px;
}

.footer__wrapper {
	display: flex;
	place-items: center;
	justify-content: space-between;
	height: 100%;
	max-width: 1160px;
	margin: 0 auto;
}

.links {
	display: flex;
	gap: var(--items-gap);
}

.links__item {
	transition: var(--main-transition);
}

.links__item:hover {
	color: #6a6acb;
}

/* .bg-circle {
	position: absolute;
	background-color: #e5004c;
	border-radius: 50%;
	filter: blur(100px);
	z-index: -1;
}

.bg-circle--top {
	top: -10%;
	right: -10%;
	width: 60%;
	aspect-ratio: 1/1;
}
.bg-circle--bottom {
	bottom: 0;
	left: 0;
} */