:root {
	--header-height: 70px;
	--color-bg: #1a1c2c;
	--color-text: #e0e0e0;
	--color-text-active: #db6060;
	--color-title: #ffffff;
	--color-accent: #ff6f61;

	--accent-color-faq: #9c27b0;

	--main-bg: #f9fafb;
	--card-bg: #ffffff;
	--accent: #6366f1;
	--accent-light: #a5b4fc;
	--text-dark: #111827;
	--text-light: #6b7280;
	--border-color: #e5e7eb;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

	--radius: 8px;

	--container-width: 1200px;
	--padding: 16px;

	--font-main: 'Montserrat', sans-serif;
	--font-second: 'Merriweather', sans-serif;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
	text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-second);
}

ul,
ul li {
	list-style: none;
	font-family: var(--font-second);
}

img {
	vertical-align: top;
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

address {
	font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button,
input[type='submit'] {
	display: inline-block;
	box-shadow: none;
	background-color: transparent;
	background: none;
	cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
	outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}

html,
body {
	height: 100%;
	font-family: Arial, sans-serif;
	background-color: var(--bg-color-light);
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-main);
}

.wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding-top: 70px;
}

.main {
	flex: 1 0 auto;
}

.container {
	max-width: 1280px;
	padding: 0 10px;
	margin: 0 auto;
	height: 100%;
}

/* HEADER */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background-color: var(--color-bg);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header__inner {
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	align-items: center;
	height: 70px;
	width: 100%;
}

.nav {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.nav-list {
	display: flex;
	justify-content: space-evenly;
	gap: 30px;
	list-style: none;
}

.nav-link {
	text-decoration: none;
	color: var(--color-text);
	font-weight: 500;
	position: relative;
	transition: var(--transition);
	display: block;
	padding: 5px;
	border-radius: 5px;
}
.nav-link.active {
	color: var(--color-text-active);
}

/* Бургер меню */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--color-text);
	border-radius: 3px;
	transition: var(--transition);
}

/* Адаптивность */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-list {
		position: absolute;
		top: var(--header-height);
		right: 0;
		background-color: var(--color-bg);
		flex-direction: column;
		width: 100%;
		padding: 20px;
		gap: 20px;
		transform: translateX(100%);
		opacity: 0;
		pointer-events: none;
		transition: var(--transition);
	}

	.nav-list.active {
		transform: translateX(0%);
		opacity: 1;
		pointer-events: all;
	}
}

/* Footer */

/* Футер */
.footer {
	background-color: #0a0f1a;
	color: #fff;
	flex-shrink: 0; /* не сжимается */
}

.footer .container {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.footer-links ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #2454f1;
}

.footer-bottom {
	margin-top: 10px;
	font-size: 14px;
	color: #eec5c5;
	text-align: center;
}

@media (max-width: 768px) {
	.footer .container {
		display: flex;
		flex-direction: column;
	}
}

/* ==================================================== FAQ */
.faq-section {
	background-color: #f9faff;
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	color: #2c2c2c;
}

.faq-title {
	font-size: 32px;
	text-align: center;
	margin-bottom: 40px;
	color: #5a3ea3;
	font-weight: 700;
}

.faq-item {
	margin-bottom: 32px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 24px;
}

.faq-question {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.faq-answer {
	font-size: 16px;
	line-height: 1.7;
	color: #555;
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 26px;
	}

	.faq-question {
		font-size: 17px;
	}

	.faq-answer {
		font-size: 15px;
	}
}

.faq-footer {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	color: #999;
}

.privacy-link {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.privacy-link:hover {
	color: var(--primary-color);
}

/* PRIVaCY ==================================================================== */
.privacy {
	background: var(--main-bg);
	color: var(--text-dark);
	padding: 4rem 2rem;
}

.privacy__header {
	background: var(--card-bg);
	padding: 1.5rem;
	text-align: center;
	border: 2px solid var(--border-color);
	border-radius: 16px;
	margin-bottom: 3rem;
	box-shadow: var(--shadow);
	position: relative;
}

.privacy__header::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: repeating-linear-gradient(
		45deg,
		rgba(99, 102, 241, 0.05),
		rgba(99, 102, 241, 0.05) 10px,
		transparent 10px,
		transparent 20px
	);
	pointer-events: none;
}

.privacy__title {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--accent);
	text-transform: none;
}

.privacy__intro {
	font-size: 1.2rem;
	margin-top: 0.75rem;
	font-weight: 400;
	color: var(--text-light);
}

.privacy__container {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.privacy__sidebar {
	flex: 1 1 260px;
	background-color: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.25rem;
	position: sticky;
	top: 80px;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
	box-shadow: var(--shadow);
}

.privacy__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.privacy__nav li {
	margin-bottom: 1rem;
}

.privacy__nav a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: 0.2s;
	padding-left: 10px;
	border-left: 3px solid transparent;
}

.privacy__nav a:hover,
.privacy__nav a:focus {
	color: var(--accent);
	border-color: var(--accent-light);
	background-color: rgba(99, 102, 241, 0.05);
	border-radius: 6px;
}

.privacy__content {
	flex: 3 1 640px;
	background-color: var(--card-bg);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.privacy__content section {
	margin-bottom: 2rem;
}

.privacy__content h2 {
	font-size: 1.75rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
	color: var(--accent);
	position: relative;
	padding-left: 1rem;
}

.privacy__content h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.4rem;
	width: 6px;
	height: 80%;
	background-color: var(--accent-light);
	border-radius: 4px;
}

.privacy__content h3 {
	font-size: 1.25rem;
	margin-top: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
}

.privacy__content ul {
	margin-left: 1.5rem;
	padding-left: 0.5rem;
	list-style-type: circle;
	color: var(--text-light);
	line-height: 1.7;
}

.privacy__content address {
	font-style: normal;
	color: var(--text-light);
	font-weight: 400;
	margin-top: 2rem;
}

#contact-us a {
	color: var(--accent);
	text-decoration: underline;
}

section[id] {
	scroll-margin-top: 90px;
}

/* Responsive */
@media (max-width: 768px) {
	.privacy {
		padding: 2.5rem 1rem;
	}

	.privacy__header {
		padding: 1.25rem 1rem;
		margin-bottom: 2rem;
	}

	.privacy__title {
		font-size: 1.6rem;
	}

	.privacy__intro {
		font-size: 1rem;
	}

	.privacy__container {
		flex-direction: column;
	}

	.privacy__sidebar {
		position: static;
		max-height: none;
		box-shadow: none;
	}

	.privacy__content {
		padding: 2rem 1rem;
	}

	.privacy__content h2 {
		font-size: 1.4rem;
	}

	.privacy__content h3 {
		font-size: 1.1rem;
	}
}
/* Enhanced Contacts Section =====================================================*/
.contact-section {
	padding: 5rem 3rem;
	background: linear-gradient(120deg, #2e2e2e, #6e5c4d);
	min-height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #f2e8dc;
}

.contact-section__container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-section__card {
	background: #3a3a3a;
	border: 1px solid #605b56;
	padding: 2.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
	transition: background 0.4s ease, transform 0.3s ease;
}

.contact-section__card:hover {
	background: #4a423a;
	transform: translateY(-8px);
}

.contact-section__image-wrapper {
	border: 1px solid #776f66;
	overflow: hidden;
	border-radius: 0;
	aspect-ratio: 4/3;
}

.contact-section__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.1) brightness(0.9);
	transition: filter 0.3s ease;
}

.contact-section__image:hover {
	filter: grayscale(0) brightness(1);
}

.contact-section__heading {
	font-size: 2rem;
	color: #f8d5b8;
	margin-bottom: 1.5rem;
	text-transform: none;
	font-family: 'Georgia', serif;
}

.contact-section__description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #dbcbbd;
	margin-bottom: 2rem;
}

.contact-section__subtitle {
	font-size: 1.25rem;
	color: #e0b98f;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.contact-section__block {
	font-size: 1rem;
	color: #cbbeb3;
	line-height: 1.6;
	margin-bottom: 1rem;
	text-align: left;
}

.contact-section__block a {
	color: #f4a261;
	text-decoration: underline;
}

.contact-section__socials {
	margin-top: 2.5rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.contact-section__socials a {
	background-color: #f4a261;
	color: #1f1f1f;
	padding: 0.75rem 1.5rem;
	border-radius: 0;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background 0.3s ease;
}

.contact-section__socials a:hover {
	background-color: #e76f51;
}

.link-wrap {
	margin-top: 3rem;
	text-align: center;
}

.link-page {
	background-color: #fff3e0;
	color: #2e2e2e;
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 4px;
	display: inline-block;
	transition: background 0.3s ease;
	text-decoration: none;
	text-transform: uppercase;
}

.link-page:hover {
	background-color: #ffe0b2;
}

/* ================================================================================= SECTIONS */
.defi-adventure {
	background-color: #f3efe0;
	padding: 60px 20px;
	color: #2b2b2b;
	line-height: 1.8;
}

.defi-adventure__container {
	max-width: 900px;
	margin: 0 auto;
	background-color: #fffdf5;
	padding: 40px;
	border: 3px solid #c29f5d;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.defi-adventure__title {
	font-size: 28px;
	color: #3b2600;
	margin-bottom: 30px;
	text-shadow: 1px 1px 0 #e0d5b7;
}

.defi-adventure__image {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	margin-bottom: 30px;
	border: 2px solid #c29f5d;
}

.defi-adventure__intro {
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 25px;
	background: #fff8dc;
	padding: 15px;
	border-left: 5px solid #d4af37;
}

.defi-adventure__subtitle {
	font-size: 22px;
	margin-top: 40px;
	color: #5a3b1e;
	border-bottom: 2px solid #c29f5d;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.defi-adventure h3 {
	margin-top: 40px;
	font-size: 20px;
	color: #6a4d2f;
	border-left: 4px solid #b58b4c;
	padding-left: 12px;
}
.defi-strategy {
	background-color: #0c0c0c;
	color: #e0e0e0;
	padding: 60px 20px;
}

.defi-strategy__container {
	max-width: 1260px;
	margin: 0 auto;
}

.defi-strategy__title {
	font-size: 32px;
	text-align: center;
	color: #f4e04d;
	margin-bottom: 40px;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.defi-strategy__image-wrapper {
	text-align: center;
	margin-bottom: 40px;
}

.defi-strategy__image {
	max-width: 60%;
	height: auto;
	border: 2px solid #444;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.defi-strategy__content {
	line-height: 1.7;
	font-size: 17px;
}

.defi-strategy__text {
	margin-bottom: 20px;
}

.defi-strategy__subtitle {
	font-size: 24px;
	margin-top: 40px;
	color: #ffffff;
	border-left: 5px solid #f4e04d;
	padding-left: 10px;
}

.defi-strategy__subsubtitle {
	font-size: 20px;
	margin-top: 30px;
	color: #ccc;
	font-style: italic;
}

@media (max-width: 768px) {
	.defi-strategy__title {
		font-size: 26px;
	}
	.defi-strategy__subtitle {
		font-size: 20px;
	}
	.defi-strategy__subsubtitle {
		font-size: 18px;
	}
}
.lending-analysis {
	background-color: #0b0b0e;
	color: #dcdcdc;
	padding: 60px 20px;
}

.lending-analysis__container {
	max-width: 1160px;
	margin: 0 auto;
}

.lending-analysis__title {
	font-size: 30px;
	text-align: center;
	color: #f0c03f;
	margin-bottom: 40px;
	text-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.lending-analysis__image-wrapper {
	text-align: center;
	margin-bottom: 40px;
}

.lending-analysis__image {
	max-width: 100%;
	height: auto;
	border: 1px solid #333;
	box-shadow: 0 0 16px rgba(255, 255, 255, 0.05);
}

.lending-analysis__content {
	font-size: 16.5px;
	line-height: 1.75;
}

.lending-analysis__subtitle {
	font-size: 22px;
	margin-top: 35px;
	color: #ffffff;
	border-left: 4px solid #f0c03f;
	padding-left: 12px;
}

.lending-analysis__text {
	margin-bottom: 18px;
	color: #ccc;
}

@media (max-width: 768px) {
	.lending-analysis__title {
		font-size: 26px;
	}
	.lending-analysis__subtitle {
		font-size: 19px;
	}
}
.governance-section {
	background: linear-gradient(135deg, #f3f4ff, #ffffff);
	color: #3b3b3b;
	padding: 60px 20px;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(143, 156, 255, 0.15);
}

.governance-section__container {
	max-width: 1000px;
	margin: 0 auto;
}

.governance-section__title {
	font-size: 32px;
	text-align: center;
	color: #5a3ea3;
	margin-bottom: 40px;
	font-weight: 700;
}

.governance-section__image-wrapper {
	text-align: center;
	margin-bottom: 40px;
}

.governance-section__image {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.governance-section__content {
	font-size: 17px;
	line-height: 1.75;
	color: #4d4d4d;
}

.governance-section__subtitle {
	font-size: 22px;
	margin-top: 40px;
	color: #7d53c0;
	background: linear-gradient(to right, #e8ddff 0%, #fefefe 100%);
	padding: 10px 15px;
	border-left: 4px solid #b597ff;
	border-radius: 8px;
}

.governance-section__text {
	margin-bottom: 18px;
}

@media (max-width: 768px) {
	.governance-section__title {
		font-size: 26px;
	}
	.governance-section__subtitle {
		font-size: 19px;
	}
}

@media (max-width: 992px) {
	.defi-adventure {
		padding: 40px 5px;
	}
	.defi-adventure__container {
		padding: 20px 10px;
	}
	.defi-adventure__title {
		font-size: 22px;
		text-wrap: balance;
	}
}
