@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Exo+2&display=swap');

:root {
	--sisucraft-main: #008170;
	--move-x: 0deg;
	--move-y: 0deg;
	--transition: .28s cubic-bezier(.05, .5, 0, 1);
}

html, body {
	height: 100%;
	margin: 0;
	background: #031317;
	overflow: hidden;
}

body {
	font-family: 'Exo 2', sans-serif;
	color: #f2f6f5;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
}

.layers {
	perspective: 1000px;
	overflow: hidden;
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.layers__container {
	height: 100vh;
	min-height: 100vh;
	position: relative;
	transform-style: preserve-3d;
	transform: rotateX(var(--move-y)) rotateY(var(--move-x));
	will-change: transform;
	transition: transform var(--transition);
}

.layers__item {
	position: absolute;
	inset: -5vw;
	background-size: cover;
	background-position: center;
}

.layer-1 {
	transform: translateZ(-55px) scale(1.06);
}

.layer-2 {
	transform: translateZ(80px) scale(.88);
}

.layer-4 {
	transform: translateZ(80px) scale(.95);
}

.layer-5 {
	transform: translateX(-14vw) translateZ(300px) scale(1.1);
}

.support-content {
	position: relative;
	z-index: 2;
	margin-top: 240px;
	height: calc(100vh - 240px);
	overflow-y: auto;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	padding: 22px 18px 32px;
}

.support-content-inner {
	transform-style: preserve-3d;
	transform: rotateX(var(--move-y)) rotateY(var(--move-x));
	will-change: transform;
	transition: transform var(--transition);
	transform-origin: center top;
}

.support-content h1 {
	margin: 0 0 14px;
	font-family: 'Exo 2', sans-serif;
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 1.15;
	color: #eff8f6;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	border-left: 2px solid rgba(0, 129, 112, 0.95);
	background: rgba(3, 19, 23, 0.35);
	padding: 10px 12px;
	border-radius: 4px;
}

.faq-question {
	margin: 0 0 6px;
	font-size: clamp(18px, 1.6vw, 26px);
	font-weight: 700;
	color: #eff8f6;
}

.faq-answer {
	margin: 0;
	font-size: clamp(16px, 1.25vw, 21px);
	color: #d2dfdc;
	line-height: 1.4;
}

.faq-answer a {
	color: var(--sisucraft-main);
}

.wallet {
	display: inline-block;
	font-weight: 700;
	color: #eff8f6;
	padding: 2px 8px;
	border: 1px solid rgba(0, 129, 112, 0.95);
	border-radius: 8px;
	background: rgba(0, 129, 112, 0.16);
}

@media (max-width: 900px) {
	.support-content {
		margin-top: 0;
		height: 100dvh;
		padding: max(12px, env(safe-area-inset-top)) 12px 20px;
	}

	.support-content-inner {
		transform: none;
		transition: none;
	}

	.support-content h1 {
		font-size: clamp(18px, 10vw, 34px);
		line-height: 1.15;
		margin-bottom: 10px;
	}

	.faq-question {
		font-size: clamp(16px, 6vw, 20px);
	}

	.faq-answer {
		font-size: clamp(14px, 5vw, 17px);
		line-height: 1.35;
	}

	.faq-item {
		padding: 8px 10px;
		border-radius: 6px;
	}

	.layer-5 {
		transform: translateX(-9vw) translateZ(300px) scale(1.1);
	}
}
