:root {
	/* Background Colors */
	--bg: #121619;
	--bg-dark: #141a20;
	--bg-light: #2a2f36;
	--bg-accent: #313841;

	--text: #e0e3e8;
	--text-dark: #7f8c99;
	--text-light: #ffffff;
	--text-accent: #ffb300;
	--accent-yellow: #d4a017;

	--success: #27ae60;
	--warning: #ffb74d;
	--error: #c0392b;
	--info: #2980b9;

	--privacy-radius: 14px;
	/* Шрифты и сетка */
	--font-main: 'Merriweather', 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-light);
	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-light);
}
.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: linear-gradient(145deg, #eaf3f9, #ffffff);
	color: #1c2a38;
	padding: 2.5rem var(--container-padding);
	max-width: var(--container-width);
	margin: 0 auto;
	border-radius: 20px;
	box-shadow: 0 0 60px rgba(0, 60, 100, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #d4e3ee;
}

.faq-section__title {
	font-size: 2.2rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #003d5b;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-shadow: 0 1px 1px #fff;
}

.faq-item {
	margin-bottom: 2.2rem;
	padding: 1.75rem 2rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 8px 24px rgba(0, 45, 75, 0.05);
	border: 1px solid #d0e0ec;
	backdrop-filter: blur(8px);
	transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 45, 75, 0.12);
}

.faq-item__question {
	font-size: 1.15rem;
	font-weight: 600;
	color: #003049;
	margin-bottom: 1rem;
	position: relative;
	padding-left: 1.7rem;
}

.faq-item__question::before {
	content: 'Q';
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	color: #0088a9;
	font-size: 1.1rem;
}

.faq-item__answer {
	font-size: 1rem;
	line-height: 1.7;
	color: #34495e;
	padding-left: 1.7rem;
}

.faq-section__footer {
	text-align: center;
	margin-top: 3.5rem;
	font-size: 0.875rem;
	color: #607d8b;
	opacity: 0.9;
}

/* Адаптивность */
@media (max-width: 768px) {
	.faq-section {
		padding: 2rem 1rem;
	}

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

	.faq-item {
		padding: 1.4rem 1.5rem;
	}

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

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

.link {
	color: #006aaf;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.link:hover {
	color: #004e7c;
}

.flex-end {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	color: #005b96;
	font-size: 14px;
	margin: 20px 0;
}

/* --------------------------------------------------------- CONTACT ------------------------------------- */
.contact {
	background: linear-gradient(to bottom, #0c1117, #1c2c3a);
	color: #e6f0f8;
	padding: 70px 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 80px rgba(0, 50, 80, 0.2);
}

.contact__title {
	font-size: 2.5rem;
	text-transform: uppercase;
	border-bottom: 2px solid #7ec8e3;
	margin-bottom: 40px;
	padding-bottom: 12px;
	color: #d1e7f0;
	letter-spacing: 2px;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.05);
}

.contact__content {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.contact__info {
	flex: 1 1 60%;
}

.contact__text {
	font-size: 1.05rem;
	margin-bottom: 24px;
	line-height: 1.7;
	color: #bfd8e3;
}

.contact__block {
	margin-bottom: 30px;
}

.contact__subtitle {
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: #7ec8e3;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.contact__line {
	margin-bottom: 10px;
}

.contact__label {
	font-weight: bold;
	margin-right: 10px;
	color: #a2c2d6;
}

.contact__link {
	color: #e6f0f8;
	text-decoration: none;
	border-bottom: 1px dashed #7ec8e3;
	transition: all 0.3s ease;
}

.contact__link:hover {
	color: #7ec8e3;
	text-shadow: 0 0 5px #7ec8e3;
}

.contact__socials {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 18px;
}

.contact__social-link {
	color: #d1e7f0;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.contact__social-link:hover {
	color: #7ec8e3;
}

.contact__note {
	margin-top: 25px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #a0b9c7;
}

.contact__image {
	flex: 1 1 35%;
	text-align: center;
}

.contact__image img {
	max-width: 100%;
	border: 2px solid #274455;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 80, 120, 0.2);
}

/* Адаптив */
@media (max-width: 1024px) {
	.contact__content {
		flex-direction: column;
		gap: 40px;
	}

	.contact__image,
	.contact__info {
		flex: 1 1 100%;
	}

	.contact__title {
		font-size: 2.2rem;
	}

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

@media (max-width: 768px) {
	.contact {
		padding: 50px 20px;
	}

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

	.contact__title {
		font-size: 1.8rem;
		text-align: center;
	}

	.contact__socials {
		flex-direction: column;
		gap: 12px;
		align-items: center;
	}

	.contact__social-link {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.contact__title {
		font-size: 1.5rem;
		text-align: center;
	}

	.contact__image img {
		width: 100%;
		height: auto;
	}

	.contact__subtitle {
		font-size: 1rem;
	}

	.contact__link,
	.contact__label {
		font-size: 0.9rem;
	}
}

/* --------------------------------------------------------- PRIVACY ------------------------------------- */
.privacy {
	background-color: #0f1a24; /* глубокий атлантический синий */
	padding: 3.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(103, 152, 189, 0.15);
	max-width: 1280px;
	margin: 0 auto;
	color: #d9e6f0;
	line-height: 1.75;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy__title {
	font-size: 2.4rem;
	color: #a8cfe3;
	font-weight: 700;
	margin-bottom: 2.2rem;
	text-align: center;
	border-bottom: 2px dashed #7ec8e3;
	padding-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.05);
}

.privacy__section {
	margin-bottom: 2.7rem;
}

.privacy__section-title {
	font-size: 1.6rem;
	color: #7ec8e3;
	margin-bottom: 1rem;
	font-weight: 600;
	position: relative;
	padding-left: 1.5rem;
	letter-spacing: 0.5px;
}

.privacy__section-title::before {
	content: '✵';
	position: absolute;
	left: 0;
	top: 0.1rem;
	color: #7ec8e3;
	font-size: 1.3rem;
}

.privacy__text,
.privacy__list {
	font-size: 1.05rem;
	color: #c2d6e1;
	margin-bottom: 1.1rem;
}

.privacy__list {
	padding-left: 1.8rem;
}

.privacy__list li {
	margin-bottom: 0.7rem;
	list-style: disc;
}

.privacy__contact {
	background: #182631;
	border: 1px solid #2e475d;
	padding: 1.6rem;
	border-radius: 10px;
	color: #c8d9e8;
	box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.02);
}

.privacy__contact b {
	color: #89c3e0;
	font-weight: 600;
}

@media (max-width: 768px) {
	.privacy {
		padding: 2.5rem 1.4rem;
	}

	.privacy__title {
		font-size: 2rem;
	}

	.privacy__section-title {
		font-size: 1.3rem;
	}
}

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

/* -------------------------------------- SECTIONS --------------------------------------------- */
.binance-section {
	background: linear-gradient(135deg, #1a0000, #7f0000); /* очень тёмный красный с черным */
	color: #f0f0f0; /* почти белый, но с холодным оттенком */
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 0 60px 15px #8b0000; /* как будто тьма давит изнутри */
}

.binance-section__container {
	display: flex;
	flex-direction: row; /* картинка слева */
	align-items: center;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
	gap: 50px;
	position: relative;
	z-index: 2;
}

.binance-section__image-wrapper {
	position: relative;
	animation: darkPulse 4s infinite ease-in-out;
	flex: 1;
	filter: drop-shadow(0 0 10px #8b0000);
}

.binance-section__image {
	width: 100%;
	border-radius: 40px 0 40px 0;
	box-shadow: 0 0 40px 12px rgba(139, 0, 0, 0.8);
	transform: rotate(-5deg) skew(-2deg);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	filter: drop-shadow(0 0 8px #ff0000);
}

.binance-section__image:hover {
	transform: rotate(0deg) scale(1.07) skew(0);
	box-shadow: 0 0 60px 20px rgba(255, 255, 102, 1); /* яркий желтый свет — проблеск добра */
	cursor: pointer;
	filter: drop-shadow(0 0 20px #ffff66);
}

.binance-section__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	color: #f0f0f0;
	position: relative;
	z-index: 3;
}

.binance-section__title {
	font-size: 3rem;
	color: #ff3333; /* агрессивный кровавый красный */
	font-weight: 900;
	text-shadow: 3px 3px 10px #330000;
	margin-bottom: 15px;
	letter-spacing: 3px;
	position: relative;
}

.binance-section__title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60%;
	height: 5px;
	background: linear-gradient(90deg, #ffff99, transparent);
	filter: drop-shadow(0 0 6px #ffff99);
	opacity: 0.8;
	border-radius: 2px;
}

.binance-section__text {
	font-size: 1.3rem;
	line-height: 1.8;
	max-width: 600px;
	color: #eee;
	text-shadow: 1px 1px 8px #220000;
	font-style: italic;
	border-left: 4px solid #ffcc00; /* золотистая полоска — символ света */
	padding-left: 15px;
}

@media (max-width: 768px) {
	.binance-section__container {
		flex-direction: column;
		text-align: center;
	}

	.binance-section__content {
		text-align: center;
		margin-top: 40px;
	}

	.binance-section__title {
		font-size: 1.8rem;
	}

	.binance-section__text {
		max-width: 100%;
		font-size: 1.2rem;
		border-left: none;
		padding-left: 0;
	}
}

/* THREE */
.binance-services {
	background: linear-gradient(145deg, #7b5e00, #a36f12); /* золотисто-бронзовый градиент */
	color: #fff3c4; /* тёплый светло-золотистый цвет текста */
	padding: 80px 20px;
	text-shadow: 1px 1px 3px #5a4500;
}

.binance-services__container {
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	border: 6px solid #d4af37; /* насыщенное золото */
	border-radius: 30px;
	padding: 50px 50px 60px 50px;
	box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.8),
		/* золотое свечение */ 0 12px 35px rgba(0, 0, 0, 0.5);
	background-color: rgba(66, 44, 0, 0.15); /* темно-коричневый с прозрачностью */
	backdrop-filter: blur(4px);
	position: relative;
}

.binance-services__left,
.binance-services__right {
	display: flex;
	flex-direction: column;
	gap: 25px;
	z-index: 1;
}

.binance-services__text {
	font-size: 1.3rem;
	line-height: 1.9;
	margin: 0;
	color: #fff3c4;
	text-shadow: 2px 2px 6px #3a2d00;
	font-style: italic;
	font-weight: 500;
	border-left: 6px solid #d4af37;
	padding-left: 20px;
}

.binance-services__title-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg, #8b6d14, #d4af37);
	border-radius: 20px;
	padding: 25px 40px;
	box-shadow: inset 0 0 15px #ffe066, 0 0 30px 5px #d4af37;
	border: 2px solid #7a5c00;
}

.binance-services__title {
	color: #fff8c4;
	font-size: 2.8rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 900;
	text-shadow: 3px 3px 10px #5c4700, 0 0 15px #fffbb0;
}

@media (max-width: 1024px) {
	.binance-services__title-wrapper {
		transform: none;
		writing-mode: horizontal-tb;
		height: auto;
		padding: 20px;
		text-align: center;
	}

	.binance-services__title {
		font-size: 1.7rem;
	}
	.binance-services__container {
		padding: 30px 5px;
	}
	.binance-services__text {
		font-size: 16px;
	}
}

/* FOUR */
.binance-us {
	background: linear-gradient(to bottom, #0a0a0a 0%, #1c1c1c 100%); /* очень темный фон */
	color: #e6e6e6; /* почти белый */
	padding: 80px 20px;
}

.binance-us__background {
	background: linear-gradient(135deg, #1f1f1f 0%, #000000 100%);
	position: relative;
	border-radius: 30px;
	padding: 60px;
	overflow: hidden;
	box-shadow: 0 15px 60px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.9);
	border: 2px solid #ff0000cc; /* ярко-красная рамка */
}

.binance-us__container {
	max-width: 1200px;
	margin: 0 auto;
}

.binance-us__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
	text-align: center;
}

.binance-us__title {
	font-size: clamp(22px, 5vw, 28px);
	font-weight: 900;
	color: #ff0000;
	text-shadow: 0 0 5px #ff0000cc, 0 0 10px #ff0000bb, 0 0 20px #ff0000aa, 0 0 30px #ff0000dd;
	letter-spacing: 3px;
	text-transform: uppercase;
	user-select: none;
}

.binance-us__image {
	max-width: 600px;
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 0 30px 5px #ff0000cc, 0 10px 40px rgba(255, 0, 0, 0.7);
	border: 4px solid #ff000033;
}

.binance-us__block {
	margin-bottom: 50px;
	padding: 25px 35px;
	background-color: rgba(255, 0, 0, 0.07);
	border-left: 6px solid #ff1a1a;
	border-radius: 12px;
	box-shadow: 0 0 10px #ff000099 inset;
}

.binance-us__subtitle {
	font-size: clamp(16px, 4vw, 22px);
	font-weight: 700;
	margin-bottom: 15px;
	color: #ff4444;
	text-shadow: 0 0 8px #ff2222;
}

.binance-us__text {
	font-size: clamp(14px, 3vw, 20px);
	line-height: 1.7;
	margin-bottom: 10px;
	color: #ffd6d6;
	user-select: text;
}

@media (max-width: 768px) {
	.binance-us__background {
		padding: 30px;
	}

	.binance-us__title {
		font-size: clamp(18px, 6vw, 24px);
	}

	.binance-us__subtitle {
		font-size: clamp(14px, 5vw, 18px);
	}

	.binance-us__image {
		max-width: 100%;
	}
}

/* FIVE */
.binance-usdt {
	padding: 50px 20px;
	background: linear-gradient(135deg, #ffcc70, #ff5e3a);
	color: #fffbe6;
}


.binance-usdt__wrap {
	max-width: 1000px;
	margin: 0 auto;
	border: 3px dashed rgba(255, 255, 255, 0.2);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(255, 50, 0, 0.4);
	background-color: rgba(0, 0, 0, 0.1);
}

.binance-usdt__title {
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 30px;
	color: #fff1c0;
	text-align: center;
	letter-spacing: 1px;
	text-shadow: 0 2px 5px #c0392b;
}


.binance-usdt__img-box {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.binance-usdt__img {
	max-width: 500px;
	height: auto;
	border-radius: 20px;
	border: 4px solid #ffaf40;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
	transition: transform 0.3s ease;
}

.binance-usdt__img:hover {
	transform: scale(1.05) rotate(-1deg);
}

.binance-usdt__subtitle {
	font-size: 1.3rem;
	font-weight: bold;
	margin: 30px 0 15px;
	color: #ffe599;
	text-transform: uppercase;
	border-left: 5px solid #ff6f00;
	padding-left: 10px;
}

.binance-usdt__text p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 12px;
	color: #fff;
	background: rgba(0, 0, 0, 0.2);
	padding: 10px 15px;
	border-radius: 8px;
}

@media (max-width: 992px) {
	.binance-usdt__title {
		font-size: 1.6em;
	}
}

/* SEVEN */
.analytics {
	padding: 40px 20px;
	background-color: #fff7f2; /* нежно-персиковый фон */
	color: #4b3b2b; /* коричневатый тёплый цвет текста */
}

.analytics__container {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.analytics__title {
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	color: #d96a68; /* мягкий коралловый */
	text-shadow: 1px 1px 1px #fcd9d7;
}

.analytics__intro {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-start;
}

.analytics__image {
	width: 240px;
	height: auto;
	flex-shrink: 0;
	border-radius: 50%; /* круглое изображение, как мордочка чихуахуа */
	box-shadow: 0 8px 15px rgba(217, 106, 104, 0.4); /* лёгкая розоватая тень */
	border: 5px solid #fce6e4; /* нежная рамка */
	transition: transform 0.3s ease;
	cursor: pointer;
}
.analytics__image:hover {
	transform: scale(1.1) rotate(5deg); /* игривое движение при наведении */
}

.analytics__description {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 1rem;
	line-height: 1.6;
	color: #7a5a4f; /* тёплый коричневатый оттенок */
	background: #fff0f0;
	padding: 15px 20px;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(217, 106, 104, 0.2);
}

.analytics__block {
	background: #ffe9e8;
	padding: 25px;
	border-radius: 25px;
	box-shadow: 0 5px 15px rgba(217, 106, 104, 0.3);
	border: 2px dashed #d96a68;
}

.analytics__subtitle {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #d96a68;
	text-shadow: 1px 1px 0 #fff5f4;
}

.analytics__content p {
	margin-bottom: 12px;
	line-height: 1.6;
	font-size: 1rem;
	color: #6e4b44;
}

@media (max-width: 600px) {
	.analytics__intro {
		flex-direction: column;
		align-items: center;
	}

	.analytics__image {
		width: 180px;
		max-width: 100%;
		border-radius: 50%;
	}

	.analytics__description {
		padding: 15px 10px;
	}
}
