@font-face {
  font-family: "PT Sans Narrow";
  src:
		url("./fonts/PTSansNarrow-Regular.woff2") format("woff2"),
		url("./fonts/PTSansNarrow-Regular.woff") format("woff"),
		url("./fonts/PTSansNarrow-Regular.otf") format("opentype"),
		url("./fonts/PTSansNarrow-Regular.ttf") format("truetype");
	font-weight: normal;
}
@font-face {
  font-family: "PT Sans Narrow";
  src:
		url("./fonts/PTSansNarrow-Bold.woff2") format("woff2"),
		url("./fonts/PTSansNarrow-Bold.woff") format("woff"),
		url("./fonts/PTSansNarrow-Bold.otf") format("opentype"),
		url("./fonts/PTSansNarrow-Bold.ttf") format("truetype");
	font-weight: bold;
}

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


html,
body {
	/* width: 100%; */
	font-family: "PT Sans Narrow", sans-serif;
}

body {
	background: #000000;
	color: white;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

.hidden {
	display: none;
}

.about {
	padding: 50px 0;
	position: relative;
	/* background: #000000; */
	overflow-x: clip;
}


.about-add {
	padding: 50px 0;
	position: relative;
	/* background: #000000; */
	overflow-x: clip;				
}
.about-add-02 {
	padding: 0px 0 50px;
	position: relative;
	/* background: #000000; */
	overflow-x: clip;				
}

.about-wrapper {
	/* width: 100%; */
	/* display: flex; */
	/* flex-direction: column; */
	margin: 0 auto;
	padding: 0 20px;

	/* overflow-x: clip; */
}

@media (min-width: 1024px) {
	.about-wrapper {
		width: 960px;
		padding: 20px;
	}
}

.about-wrapper img {
	max-width: 100%;
	height: auto !important;
}


.about-wrapper a,
.footer a {
	color: #74DAFF;
}
.about-wrapper a:hover,
.footer a:hover {
	opacity: 0.8;
}


footer {
	position: relative;
	margin: 0 auto;
	padding: 0 20px 50px 20px;
}

@media (min-width: 1024px) {
	footer {
		width: 960px;
	}
}

.footer {
	padding: 20px 0 0 0;
	border-top: 1px solid #fff;

	display: flex;
	flex-direction: column;
	column-gap: 2rem;
	row-gap: 1.5rem;

	font-size: 1.5rem;
}

@media (min-width: 768px) {
	.footer {
		flex-direction: row;
		justify-content: space-between;
	}
}


.copyright {
	margin: 0 0 1rem 0;
	color: #fff;
}


.cookie-container {
	font-family: "PT Sans Narrow", sans-serif;
	margin: 0 auto;
	padding: 1rem 0 0 1rem;
	position: fixed;
	bottom: 0;
	left: auto;
	right: 0;
	width: 30rem;
	max-width: 100%;
	z-index: 10;
	max-height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;

	font-size: 1.15rem;
	line-height: 1.5rem;
	color: #fff;
}

.cookie-container > div {
	width: 100%;
	margin: 0 auto;
	backdrop-filter: blur(10px);
	padding: 1.25rem 1.25rem 1.25rem 1.25rem;
	border-radius: 1rem 0 0 0;
	background: #000;
	border: 1px solid #fff;
	border-bottom: 0;
	border-right: 0;
}

.cookie-container h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

/* @media (min-width: 1024px) {
	.cookie-container > div {
		width: 960px;
		padding: 1.25rem 1.25rem 1.75rem 1.25rem;
	}
} */

.cookie-container a {
	color: #74DAFF;
}
.cookie-container a:hover {
	opacity: 0.8;
}


.cookie-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 1.5rem;
	margin-top: 1.25rem;
}
.cookie-buttons  button {
	border-radius: 0;
}

.cookie-buttons a {
	display: block;
	color: #74DAFF;
	line-height: 0;
	cursor: pointer;
}

.cookie-buttons a:hover {
	opacity: 0.8;
}

.cookie-buttons button {
	font-size: 1rem;
	padding: 10px 20px;
	background: #ab2cb2;
	color: #fff;
	box-shadow: none;
	border: none;
	outline: 0;
	cursor: pointer;
}


.bg-blur {
	backdrop-filter: blur(5px);
}
.blue {
	color: #1673b1;
}
.violet {
	color: #ab2cb2;
}


.video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-bottom: 50px;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

p {
	font-size: 2rem;
	/*line-height: 1.6;*/
	margin-bottom: 20px;
}

.mt-50 {
	margin-top: 50px;
}

.pt-100 {
	padding-top: 100px;
}
.pb-100 {
	padding-bottom: 100px;
}


.tata-2 {
	/*width: 100%;*/
	height: auto;
	margin: 0 auto;
	scale: 1.5;
	display: block;
	translate: 0px -200px !important;
}

.tata-2 img {
	height: auto;
	width: 100%;
	scale: 1.5;
}

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

/* Адаптивность */

@media (max-width: 768px) {
	.mt-50 {
		display: flex;
		flex-direction: column;
		/* gap: 100px; */
		margin-top: 30px;
	}
}

@media (max-width: 480px) {
	.social-links img {
		height: 30px;
	}

	.video {
		margin-bottom: 30px;
	}
}

.main {
	position: relative;
	min-height: 100dvh;
	background: black;
	overflow-x: clip;
}

.interactive-bg {
	/* position: relative; */
	position: fixed;
	top: 0;
	left: 0;

	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.layer {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;

	/* transition: transform 2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s; */


	/* top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.15s ease-out; */

	transition: transform 1.5s ease-out;

	will-change: transform;
	user-select: none;
	pointer-events: none;
	transform-origin: center;
}

.layer img {
	width: 120%;
	height: 120%;
	object-fit: cover;
}

.layer.klyaksa {
	max-width: 75vw;
	max-height: 75vh;
	object-fit: contain;
}

.layer.klyaksa img {
	object-fit: contain;
}

.layer.tintakl {
	max-width: 40vw;
	max-height: 40vh;
	object-fit: contain;
}

.layer.tintakl.tintakl_1 {
	left: -15vw;
	bottom: -10vh;
}

.layer.tintakl.tintakl_2 {
	max-width: 30vw;
	max-height: 30vh;
	right: -15vw;
	top: 10vh;
}

.layer.tintakl img {
	object-fit: contain;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
	.interactive-bg {
		/* height: 70vh; */
		/* transform: scale(0.85); */
		transform-origin: top center;
		margin: 0 auto;
	}

	.layer {
		transform: scale(0.85) !important;
		transform-origin: center;
	}

	.layer.tintakl.tintakl_1 {
		left: -10vw;
		bottom: -5vh;
	}

	.layer.tintakl.tintakl_2 {
		right: -10vw;
		top: 5vh;
	}

	.layer img {
		width: 150%;
		height: 150%;
	}
}

/* Адаптация для маленьких экранов */
@media (max-width: 480px) {
	.interactive-bg {
		transform: scale(1);
	}

	.layer {
		transform: scale(0.75) !important;
	}

	.layer.tintakl.tintakl_1 {
		left: -8vw;
		bottom: -3vh;
	}

	.layer.tintakl.tintakl_2 {
		right: -8vw;
		top: 3vh;
	}
}

/* Внешняя обертка */
.outer {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90dvh;

	/* transform: translateY(5%) translateX(10%); */
	/* transform: translateY(5%) translateX(15%); */
	transform: translateY(0%) translateX(15%);
}

@media (max-width: 768px) {
	.outer {
		/* height: 70vh; */
		/* transform: translateY(5%) translateX(10%); */
	}
}

/* Внутренняя обертка */
.inner {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 500px;
	max-height: 500px;
	transition: scale 0.3s ease;
}

@media screen and (max-width: 1400px) {
	.inner {
		scale: 0.8;
	}
}

@media screen and (max-width: 1200px) {
	.inner {
		scale: 0.7;
		max-width: 400px;
		max-height: 400px;

	}
}

@media screen and (max-width: 768px) {
	.inner {
		scale: 1;
		max-width: 200px;
		max-height: 200px;
	}
}

@media screen and (max-width: 480px) {
	.inner {
		scale: 1;
	}
}


/* Зелёный круг по центру */
.circle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background: url("./intro/tanya-stick-009.png") no-repeat center/cover;
}

/* Левый квадрат */
.left-square {
	position: absolute;
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
}

.menu__clues {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 15px;
	transform: translateX(-50%) translateY(10%);

}

@media (max-width: 768px) {
	.menu__clues {
		gap: 10px;
		/* transform: translateX(-30%) translateY(0%); */
		transform: translateX(-31%) translateY(7%)
	}
}

.menu__clues img {
	width: 100px;
	height: 100px;
}

@media (max-width: 768px) {
	.menu__clues img {
		width: 50px;
		height: 50px;
	}
}

.menu__clues__item {
	display: flex;
	align-items: center;
	justify-items: end;
	text-align: end;
	gap: 20px;
	font-size: 30px;
	line-height: 1;
	letter-spacing: 1.3px;
	color: rgb(54, 164, 215);
}

@media (max-width: 768px) {
	.menu__clues__item {
		font-size: 16px;
	}
}

.menu__clues__item:nth-child(2) {
	transform: translateX(-20%);
}

.menu__clues__item:nth-child(3) {
	transform: translateX(-30%);
}

.menu__clues__item:nth-child(4) {
	transform: translateX(-15%);
}

.menu__clues__item:nth-child(5) {
	transform: translateX(20%);
}

.menu__clues__title {
	transform: translateX(-20%);
	font-size: 30px;
	text-transform: uppercase;
	color: rgb(171, 44, 178);
}

@media (max-width: 768px) {
	.menu__clues__title {
		font-size: 12px;
	}
}

/* Правый квадрат */
.right-square {
	position: absolute;

	right: -0.5rem;
	top: 135%;

	width: 120px;
	height: 120px;
	transform: translateY(-50%) translateX(0%);
	font-size: 1.75rem;

	border-radius: 100px;
	border: 2px solid rgb(54, 164, 215);
	background: rgba(0, 0, 0, 0.5);
	text-wrap: nowrap;
	text-transform: uppercase;
}



@media (min-width: 768px) {
	.right-square {
		right: -60px;
		top: 50%;

		width: 200px;
		height: 200px;
		transform: translateY(-50%) translateX(70%);
		font-size: 3rem;



	}
}

.main__about-link {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}


/* Верхний прямоугольник */
.top-rectangle {
	position: absolute;
	top: 5.5rem;
	left: 50%;
	aspect-ratio: 300/43;
	min-width: 300px;
	/* height: 43px; */
	transform: translateX(-50%);
	background: url("./intro/SDL-1.svg") no-repeat;
}

@media (min-width: 768px) {
	.top-rectangle {
		top: 6rem;
		min-width: 400px;
	}
}

@media (min-width: 1024px) {
	.top-rectangle {
		/* top: 2rem; */
		top: 3dvh;
		min-width: 500px;
		/* transform: translateX(-60%) translateY(-250%); */
	}
}


.bottom-links {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 1.5rem;

	position: absolute;
	bottom: 4dvh;
	left: 50%;
	transform: translateX(-50%);
}

.bottom-links a {
	display: block;
	line-height: 0;
}

.bottom-links a:hover {
	opacity: 0.8;
}


/* ------- адаптив ------- */
@media (max-width: 480px) {
	.inner {
		width: 200px;
		height: 200px;
	}

	.circle {
		width: 200px;
		height: 200px;
	}

	/*.left-square, .right-square {*/
	/*    width: 40px;*/
	/*    height: 40px;*/
	/*    left: -50px;*/
	/*    right: -50px;*/
	/*}*/

}

.logo {
	position: absolute;
	top: 20px;
	left: 20px;
	max-width: 400px;
	max-height: 400px;
	width: 30%;
	height: 30%;
	background: url("./intro/logo.svg") no-repeat center center;
}

@media (max-width: 768px) {
	.logo {
		left: 50%;
		transform: translateX(-50%);
		top: 0;
		width: 100px;
		height: 100px;
	}
}





/* Pixel */


.relative {
	position: relative;
}

.fan-club {
	position: relative;
	margin-top: 5rem;
}

.fan-club .tata-1 {
	position: absolute;
	top: -13rem;
	right: 0;
	/* translate: -50% -80px; */
	/* transform: translate(calc(80px + 50%), -80px); */
	transform: translate(calc(-2rem + 50%), 58%);
	
	z-index: 10;
	width: 12.5rem;

}

.title {
	font-size: 2.25rem;
	margin-bottom: 1.25rem;
	/* color: rgb(54, 164, 215); */
	color: #ab2cb2;
	text-transform: uppercase;
	font-weight: 700;
}
@media (min-width: 768px) {
	.title {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}
}

.h2 {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
	color: #ab2cb2;
	text-transform: uppercase;
	font-weight: 700;	
}


/* .more-link {
	text-align: start;
	margin: 1.25rem 0 2rem 0;
	font-size: 2rem;
} */


.posters-set {
	position: relative;
	overflow-x: clip;
}
.shirts-set {
	position: relative;
	overflow-x: clip;
}

.posters-set img {
	display: block;
	width: 900px;
	aspect-ratio: 1600/533;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.shirts-set img {
	display: block;
	width: 800px;
	aspect-ratio: 1600/600;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width: 768px) {
	.posters-set img {
		width: 1200px;
	}
	.shirts-set img {
		width: 1100px;
	}
}
@media (min-width: 1024px) {
	.posters-set img {
		width: 1600px;
	}
	.shirts-set img {
		width: 1500px;
	}	
}


.kts-world-set {
	position: relative;
	overflow-x: clip;	
}

.kts-world-set img {
	display: block;
	width: 700px;
	aspect-ratio: 1071/563;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width: 768px) {
	.kts-world-set img {
		width: 1040px;
	}
}
@media (min-width: 1024px) {
	.kts-world-set img {
		width: 1071px;
	}
}



.kts-contacts-set {
	position: relative;
	overflow-x: clip;	
}

.kts-contacts-set img {
	display: block;
	width: 1040px;
	aspect-ratio: 1400/632;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width: 768px) {
	.kts-contacts-set img {
		width: 1200px;
	}
}
@media (min-width: 1024px) {
	.kts-contacts-set img {
		width: 1400px;
	}
}




.merch-images.posters {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 0px;
	position: relative;
	margin-bottom: 30px;
}

.merch-images.posters img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Поворот постеров */
.merch-images.posters img:nth-child(odd) {
	transform: rotate(-5deg);
}

.merch-images.posters img:nth-child(even) {
	transform: rotate(5deg);
}

/* Адаптивность для постеров */
@media (min-width: 768px) {

	.merch-images.posters {
		display: grid;
		/* grid-template-columns: 1fr 1fr; */
		gap: 20px 0px;
	}

	/* .merch-images.posters div {
		display: flex;
	} */
}

@media (min-width: 1024px) {
	.merch-images.posters {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 20px 0px;
	}
}


.merch-images img {
	height: auto;
	border-radius: 5px;
	transition: transform 0.3s ease;
}

.merch-images img:hover {
	transform: scale(1.05);
}

.merch-content {
	justify-items: center;
	position: relative;
	margin-top: 20px;
	z-index: 10;
	/* text-align: left; */

}

.merch-content>div {
	width: 100%;
	backdrop-filter: blur(10px);
	padding: 1.25rem 1.25rem 1.75rem 1.25rem;
	border-radius: 1.25rem;
	background: #00000088;

	border: 1px solid #fff; 
	border-radius: 1rem; 
	text-align: center;
	
	margin-bottom: 5rem;
}


.social-links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	margin-top: 1.75rem;
}

.social-links img {
	height: 36px;
	transition: opacity 0.3s;
}

.social-links img:hover {
	opacity: 0.8;
}


/* Адаптивность снизу вверх */

@media (min-width: 540px) {
	.interactive-bg {
		
	}

	.outer {
		transform: translateY(0) translateX(0);
	}

}

@media (min-width: 768px) {
	.outer {
		/* height: 70vh; */
		transform: translateY(0) translateX(0%);
	}

	.fan-club .tata-1 {
		translate: none;
	}

}

@media (min-width: 1024px) {
	.fan-club {
		/* margin-top: 3.5rem; */

		/* margin-top: 17rem; */
		margin-top: 8rem;
	}

	.fan-club .tata-1 {
		top: 0;
		left: auto;
		width: 18.75rem;
		/* transform: translate(calc(4rem + 50%), -50%); */
		transform: translate(calc(2rem + 50%), -52%);
	}
}

/* end: Адаптивность снизу вверх */