:root {
	/* Background Colors */
	--bg: #352f1da2;
	--bg-dark: #121212c9;
	--bg-light: #2a2a2a;
	--bg-accent: #3d0f0f;

	--text: #e6e6e6;
	--text-dark: #c7c7c7;
	--text-light: #ffffffe5;
	--text-accent: #ff2800;
	--accent-yellow: #ff6600;

	--color-bg: #ffffff;
	--color-text: #4a4a4a;
	--color-accent: #00aaff;

	--success: #81c784;
	--warning: #ffb74d;
	--error: #e57373;
	--info: #64b5f6;

	--privacy-radius: 14px;
	/* Шрифты и сетка */
	--font-main: 'Roboto', sans-serif;
	--container-width: 1280px;
	--container-padding: 16px;
}

/* === RESET === */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	height: 100%;
}
body {
	font-family: var(--font-main);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	min-height: 100%;
}
img {
	max-width: 100%;
	width: 100%;
	display: block;
}
ul {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	background: none;
	border: none;
	cursor: pointer;
}
main {
	flex: 1 1 auto;
	padding-top: 80px;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h2 {
	text-wrap: balance;
}

/* === CONTAINER === */
.container {
	width: 100%;
	max-width: var(--container-width);
	padding: 0 var(--container-padding);
	margin: 0 auto;
}

/* === HEADER === */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: var(--bg-dark);
	color: var(--text);
	padding: 1rem 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.logo span {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
}
.menu-toggle span {
	width: 20px;
	height: 2px;
	background: var(--text);
}
.nav-list {
	display: flex;
	gap: 2rem;
}
.nav-link {
	transition: color 0.3s;
	width: 100%;
	display: block;
}
.nav-link:hover,
.nav-link.active {
	color: var(--accent-dark);
}

/* === FOOTER === */
.footer {
	background: var(--bg-dark);
	color: var(--text);
	padding: 2rem 0 1rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
}
.footer-title {
	font-size: 1.1rem;
	margin-bottom: 1rem;
}
.footer-list {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.footer-bottom {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.875rem;
	opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.nav-list {
		display: none;
		flex-direction: column;
		background: var(--bg-light);
		position: absolute;
		top: 100%;
		right: 0;
		padding: 1rem;
		width: 100%;
	}
	.menu-toggle {
		display: flex;
	}
	.nav.active .nav-list {
		display: flex;
	}
}

/* --------------------------------------------------------- FAQ ------------------------------------- */
.faq-section {
	background: radial-gradient(circle at top left, #0a0f1c, #070a16, #040511);
	color: #f0faff;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.faq-section::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 80%);
	filter: blur(50px);
	animation: pulseGlow 8s infinite;
	z-index: 0;
}

.faq-section__container {
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	background: rgba(20, 40, 60, 0.5);
	backdrop-filter: blur(10px);
	padding: 50px 40px;
	border-radius: 24px;
	border: 1px solid rgba(0, 255, 200, 0.25);
	box-shadow: 0 0 30px rgba(0, 255, 200, 0.1), inset 0 0 10px rgba(0, 255, 200, 0.08);
}

.faq-section__title {
	font-size: 2.5rem;
	color: #00ffe0;
	text-align: center;
	margin-bottom: 50px;
	text-shadow: 0 0 12px #00ffe099;
	letter-spacing: 1px;
	font-weight: 800;
}

.faq-item {
	margin-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 24px;
	transition: background 0.3s ease;
}

.faq-item:hover {
	background: rgba(0, 255, 200, 0.03);
	border-radius: 12px;
}

.faq-item__question {
	font-size: 1.4rem;
	font-weight: 700;
	color: #80f7ff;
	position: relative;
	margin-bottom: 14px;
	text-shadow: 0 0 8px #00ffe0cc;
}

.faq-item__question::before {
	content: '🤖';
	position: absolute;
	left: -32px;
	font-size: 1.3rem;
	opacity: 0.8;
	transform: rotate(10deg);
}

.faq-item__answer {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #c7f9ff;
	padding-left: 12px;
	border-left: 3px solid #00ffe0;
}

.faq-section__footer {
	font-size: 0.95rem;
	color: #8abbd4;
	text-align: center;
	margin-top: 60px;
}

.faq-section__footer .link {
	color: #00ffe0;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.faq-section__footer .link:hover {
	color: #fff176;
	text-decoration: underline;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.flex-end a {
	color: #00ffe0;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}

.flex-end a:hover {
	border-color: #fff176;
}

/* Glow animation */
@keyframes pulseGlow {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.6;
	}
}

/* Адаптив */
@media (max-width: 768px) {
	.faq-section__container {
		padding: 30px 25px;
	}

	.faq-section__title {
		font-size: 2.1rem;
	}

	.faq-item__question {
		font-size: 1.2rem;
	}

	.faq-item__answer {
		font-size: 1rem;
	}

	.flex-end {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.faq-section__title {
		font-size: 1.7rem;
	}

	.faq-item__question {
		font-size: 1.05rem;
	}

	.faq-item__answer {
		font-size: 0.95rem;
	}
}

/* --------------------------------------------------------- CONTACT ------------------------------------- */
.contact {
	background: linear-gradient(135deg, #1e1b3a 0%, #0f0c1e 100%);
	color: #f1f1f6;
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Segoe UI', sans-serif;
}

.contact__title {
	font-size: 2.8rem;
	font-weight: 900;
	color: #a78bfa;
	text-align: center;
	margin-bottom: 50px;
	text-shadow: 0 0 15px #a78bfa80;
	letter-spacing: 1.5px;
}

.contact__content {
	display: flex;
	flex-direction: column;
	gap: 50px;
	align-items: center;
	width: 100%;
}

.contact__info {
	display: flex;
	flex-direction: column;
	gap: 36px;
	width: 100%;
	align-items: center;
}

.contact__text {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #d1c4e9;
	font-weight: 500;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.contact__text strong {
	color: #ffd54f;
	font-weight: 700;
}

.contact__image {
	display: flex;
	justify-content: center;
	max-width: 680px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
	transition: transform 0.4s ease;
}

.contact__image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
	transition: transform 0.4s ease;
}

.contact__image img:hover {
	transform: scale(1.04) rotate(0.3deg);
}

.contact__block {
	background: #221d3a;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 10px 10px 30px #19162e, -10px -10px 30px #2b244a;
	max-width: 640px;
	margin: 0 auto;
	border: 1px solid #5e35b1;
}

.contact__subtitle {
	font-size: 1.5rem;
	font-weight: 700;
	color: #9575cd;
	margin-bottom: 20px;
	text-shadow: 0 0 10px #9575cd88;
}

.contact__line {
	font-size: 1.1rem;
	color: #e0e0f0;
	margin: 12px 0;
}

.contact__label {
	font-weight: 600;
	color: #b39ddb;
	margin-right: 6px;
}

.contact__link {
	color: #ffb74d;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact__link:hover {
	color: #ffd54f;
	text-decoration: underline;
}

.contact__socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.contact__social-link {
	color: #ffffff;
	background: #2e284a;
	border: 1px solid #5e35b1;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 50px;
	box-shadow: 0 0 15px #7e57c280;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact__social-link:hover {
	background-color: #5e35b1;
	color: #fff;
	box-shadow: 0 0 20px #b388ff;
	transform: translateY(-2px);
}

.contact__note {
	font-size: 1.05rem;
	color: #c7bfff;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.contact__note strong {
	color: #ffb74d;
	font-weight: 700;
}

/* Адаптивность */
@media (max-width: 768px) {
	.contact {
		padding: 40px 15px;
	}

	.contact__title {
		font-size: 2.4rem;
	}

	.contact__text {
		font-size: 1.1rem;
	}

	.contact__subtitle {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.contact__title {
		font-size: 2rem;
	}

	.contact__text {
		font-size: 1rem;
	}

	.contact__subtitle {
		font-size: 1.1rem;
	}

	.contact__socials {
		flex-direction: column;
		gap: 16px;
	}

	.contact__note {
		font-size: 0.95rem;
	}
}

/* --------------------------------------------------------- PRIVACY ------------------------------------- */
.privacy {
	padding: 40px 0;
	background-color: #e6f2e6;
	color: #2e4d2e;
	font-family: 'Segoe UI', sans-serif;
}

.privacy__container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

.privacy__title {
	font-size: 42px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 50px;
	color: #3b5f3b;
	text-shadow: 1px 1px 0 #d5e8d4;
}

.privacy__block {
	margin-bottom: 48px;
	background-color: #ffffff;
	border: 2px solid #c5e1a5;
	border-radius: 24px;
	padding: 36px;
	box-shadow: 0 6px 16px rgba(34, 49, 34, 0.08);
	transition: transform 0.3s ease;
}

.privacy__block:hover {
	transform: scale(1.02);
}

.privacy__heading {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #4b7b4b;
}

.privacy__subheading {
	font-size: 20px;
	font-weight: 600;
	margin: 20px 0 12px;
	color: #5d8c5d;
}

.privacy__text {
	font-size: 17px;
	line-height: 1.75;
	color: #3f6040;
	margin-bottom: 18px;
}

.privacy__list {
	list-style: circle;
	padding-left: 24px;
	margin-top: 12px;
	margin-bottom: 18px;
}

.privacy__item {
	font-size: 17px;
	color: #3f6040;
	line-height: 1.65;
	margin-bottom: 12px;
}

.privacy__text a {
	color: #7cb342;
	text-decoration: none;
	border-bottom: 1px dotted #7cb342;
	transition: all 0.3s ease;
}

.privacy__text a:hover {
	color: #558b2f;
	border-bottom: 1px solid #558b2f;
}

/* ------------------------------LINKS */
.link-wrap {
	display: flex;
	justify-content: center;
}
.link-page {
	display: block;
	color: var(--color-accent);
	background-color: var(--bg-accent);
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.3s ease-in;
}
.link-page:hover {
	color: var(--success);
}

/* -------------------------------------- SECTIONS --------------------------------------------- */
.hero {
	background: linear-gradient(to bottom, #1a1a1a, #000);
	color: #f0e6d2;
	padding: 60px 0;
	font-family: 'Georgia', serif;
	border-bottom: 4px solid #4b2e13;
}

.hero-title {
	font-size: 38px;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 2px 2px #000;
	border-left: 6px solid #b87333;
	padding-left: 20px;
	margin-bottom: 30px;
}

.img-wrap {
	margin: 40px 0;
	border: 3px solid #444;
	box-shadow: 0 0 20px #000;
}

.hero-img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.hero-text {
	font-size: 18px;
	line-height: 1.6;
	background: #2a2a2a;
	padding: 20px;
	border-left: 5px solid #996515;
	box-shadow: inset 0 0 10px #111;
	margin-bottom: 40px;
}

.hero-block {
	background: #1b1b1b;
	padding: 30px;
	border: 2px solid #5c4422;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.title-2 {
	font-size: 28px;
	color: #e8d6b9;
	margin-bottom: 20px;
	position: relative;
}

.title-2::before {
	content: '⚔️';
	margin-right: 10px;
}

.hero-block__text {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
	color: #d5c4a1;
}

.intro {
	background: #121212 url('../img/wood-texture.jpg') repeat;
	color: #e4dbcc;
	padding: 60px 0;
	border-top: 4px solid #6a4e2d;
}

.img-intro-wrap {
	margin-bottom: 30px;
	border: 4px solid #3b2a1a;
	box-shadow: 0 0 12px #000;
}

.intro-img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.intro-title {
	font-size: 32px;
	text-transform: uppercase;
	font-weight: bold;
	color: #f4e2c2;
	border-bottom: 3px dashed #a0522d;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.intro-text {
	font-size: 18px;
	line-height: 1.6;
	background: rgba(34, 24, 14, 0.9);
	padding: 20px;
	border-left: 6px solid #8b5a2b;
	margin-bottom: 40px;
}

.intro-list {
	list-style: none;
	padding: 0;
}

.intro-item {
	margin-bottom: 40px;
	background: #1e1e1e;
	border: 2px solid #4d3a1e;
	padding: 20px;
	box-shadow: inset 0 0 10px #000;
}

.intro-subtitle {
	font-size: 22px;
	color: #ffe8b0;
	margin-bottom: 15px;
	position: relative;
}

.intro-subtitle::before {
	content: '🛡️';
	margin-right: 10px;
}

.intro-item-text {
	font-size: 16px;
	line-height: 1.5;
	color: #dcd2be;
}
.defi {
	background: #1a1a1a url('../img/texture-steel.jpg') repeat;
	padding: 60px 0;
	color: #e5e2d7;
	border-top: 4px solid #8b0000;
	border-bottom: 4px solid #8b0000;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.7) inset;
}

.img-defi-wrap {
	text-align: center;
	margin-bottom: 40px;
}

.defi-img {
	max-width: 100%;
	height: auto;
	border: 3px solid #c9b37e;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.defi-title {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	color: #f4e8c1;
	text-shadow: 2px 2px 0 #6b2f2f;
	font-family: 'Merriweather', serif;
}

.defi-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.defi-item {
	background: rgba(50, 40, 30, 0.8);
	border-left: 5px solid #c9b37e;
	padding: 25px 30px;
	border-radius: 6px;
	position: relative;
}

.defi-subtitle {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #ffcc70;
	font-family: 'Merriweather', serif;
}

.defi-item-text {
	font-size: 16px;
	line-height: 1.7;
	color: #ded3bd;
}

@media (max-width: 992px) {
	.hero-title {
		font-size: 20px;
		padding-left: 10px;
		text-wrap: balance;
	}
	.title-2,
	.intro-title,
	.defi-title {
		font-size: 18px;
		text-wrap: balance;
	}
	.defi-item {
		padding: 15px 10px;
	}
	.defi-item-text,
	.intro-item-text {
		font-size: 14px;
	}
	.intro-text {
		font-size: 15px;
		padding: 12px;
	}
	.hero-block__text {
		font-size: 15px;
	}
	.hero-block {
		padding: 15px;
	}
}
