:root {
	--bg: #111111;
	--bg-light: #1a1a1a;
	--border: #333333;
	--text: #ffffff;
	--text-muted: #aaaaaa;
	--accent: #e50050;
	--accent-dark: #c20044;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scrollbar-width: none;
}

html::-webkit-scrollbar {
	width: 0;
	height: 0;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Nunito", sans-serif;
	color: var(--text);
	background-color: var(--bg);
	overflow-x: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body::-webkit-scrollbar {
	width: 0;
	height: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

img {
	display: block;
	max-width: 100%;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	padding: 24px 0 14px;
	border-bottom: 1px solid var(--border);
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 1.34rem;
}

.logo-icon {
	width: 38px;
	height: 38px;
}

.nav {
	display: flex;
	gap: 30px;
}

.nav a {
	color: var(--text-muted);
	font-weight: 700;
	transition: color 0.2s;
}

.nav a:hover {
	color: var(--text);
}

.header-extra {
	font-weight: 700;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero {
	padding: 80px 0 100px;
	min-height: 78vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
}

.hero-content h1 {
	font-size: 4rem;
	font-weight: 900;
	color: var(--accent);
	margin: 0 0 20px;
}

.hero-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-muted);
	max-width: 500px;
}

.ca-copy {
	display: inline-block;
	background-color: var(--bg-light);
	border: 1px solid var(--border);
	padding: 10px 15px;
	border-radius: 8px;
	font-family: monospace;
	margin: 20px 0;
	cursor: pointer;
	box-shadow: 0 0 0 rgba(229, 0, 80, 0);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.18s ease, background-color 0.25s ease;
}

.ca-copy.copied {
	border-color: rgba(229, 0, 80, 0.8);
	background-color: #20161a;
	box-shadow: 0 0 0 4px rgba(229, 0, 80, 0.14), 0 10px 28px rgba(229, 0, 80, 0.16);
	transform: translateY(-1px);
}

.hero-buttons {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 12px 25px;
	border-radius: 99px;
	font-weight: 800;
	text-align: center;
	transition: background-color 0.2s, transform 0.2s;
}

.btn-primary {
	background-color: var(--accent);
	color: white;
	border: 1px solid var(--accent);
}

.btn-primary:hover {
	background-color: var(--accent-dark);
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: transparent;
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-secondary:hover {
	background-color: var(--bg-light);
	transform: translateY(-2px);
}

.hero-lottie {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.advantages {
	background-color: var(--accent);
	padding: 80px 0;
	text-align: center;
}

.advantages h2 {
	font-size: 3rem;
	font-weight: 900;
	margin: 0 0 50px;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	text-align: left;
}

.advantage-card {
	background-color: rgba(0, 0, 0, 0.1);
	padding: 30px;
	border-radius: 15px;
}

.advantage-card h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 15px 0;
}

.advantage-card p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.advantage-lottie {
	height: 120px;
	margin: 0 auto;
}

.advantages .btn {
	margin-top: 50px;
	background-color: white;
	color: var(--accent);
}

.section {
	padding: 80px 0;
}

.section.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
}

.section h2 {
	font-size: 3rem;
	font-weight: 900;
	color: var(--accent);
	margin: 0 0 20px;
}

.section p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-muted);
	max-width: 500px;
}

.section-lottie {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

.how-to-buy {
	text-align: center;
}

.how-to-buy h2 {
	margin-bottom: 50px;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
}

.step {
	text-align: center;
}

.step-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	background-color: var(--bg-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon img {
	width: 30px;
	height: 30px;
}

.step h3 {
	font-size: 1.2rem;
	font-weight: 800;
	margin: 10px 0;
}

.step p {
	font-size: 0.9rem;
	color: var(--text-muted);
	max-width: 200px;
	margin: 0 auto;
}

.steps-connector {
	position: absolute;
	top: 30px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background-image: linear-gradient(to right, var(--border) 50%, transparent 50%);
	background-size: 20px 2px;
	background-repeat: repeat-x;
	z-index: -1;
	animation: move-connector 2s linear infinite;
}

@keyframes move-connector {
	from {
		background-position-x: 0;
	}

	to {
		background-position-x: 20px;
	}
}

.join-party {
	background-color: var(--accent);
	padding: 80px 0;
	text-align: center;
}

.join-party h2 {
	font-size: 2.5rem;
	font-weight: 900;
	margin: 0 0 20px;
}

.join-party p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.social-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.footer {
	padding: 20px 0;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9rem;
	border-top: 1px solid var(--border);
}

@media (max-width: 992px) {
	.hero, .section.split {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero {
		min-height: auto;
		padding: 72px 0 90px;
	}
	.hero-content p, .section p {
		margin: 0 auto;
	}
	.hero-buttons {
		justify-content: center;
	}
	.hero-lottie {
		order: -1;
		margin-bottom: 40px;
	}
	.advantages-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.header .container {
		flex-direction: column;
		gap: 20px;
	}
	.nav {
		gap: 20px;
	}
	.hero-content h1, .section h2 {
		font-size: 2.5rem;
	}
	.steps-grid {
		grid-template-columns: 1fr 1fr;
	}
	.steps-connector {
		display: none;
	}
}

@media (max-width: 576px) {
	.nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}
	.steps-grid {
		grid-template-columns: 1fr;
	}
}