* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #357aff;
	--primary-dark: #2563eb;
	--secondary-color: #ff974d;
	--dark-bg: #0a0e1a;
	--dark-card: #151b2e;
	--text-light: #f1f5f9;
	--text-gray: #94a3b8;
	--accent: #ff974d;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
	line-height: 1.6;
	color: var(--text-light);
	background: var(--dark-bg);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 20px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 40px;
	width: auto;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--primary-color);
}

.cta-button {
	background: linear-gradient(135deg, var(--primary-color), var(--accent));
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--text-light), var(--text-gray));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.hero-highlight {
	background: linear-gradient(135deg, var(--primary-color), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-gray);
	margin-bottom: 2.5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--accent));
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	display: inline-block;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
	background: transparent;
	color: var(--text-light);
	padding: 1rem 2.5rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	border: 2px solid var(--primary-color);
	transition:
		background 0.3s,
		transform 0.3s;
	display: inline-block;
}

.btn-secondary:hover {
	background: rgba(99, 102, 241, 0.1);
	transform: translateY(-3px);
}

/* Features Section */
.features {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.section-title {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-subtitle {
	text-align: center;
	color: var(--text-gray);
	font-size: 1.2rem;
	margin-bottom: 4rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: var(--dark-card);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: rgba(53, 122, 255, 0.1);
	border: 2px solid rgba(53, 122, 255, 0.3);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	background: rgba(53, 122, 255, 0.15);
	border-color: var(--primary-color);
	transform: scale(1.05);
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-light);
}

.feature-card p {
	color: var(--text-gray);
	line-height: 1.7;
}

/* How It Works */
.how-it-works {
	padding: 100px 0;
	background: var(--dark-bg);
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.step {
	text-align: center;
	position: relative;
}

.step-number {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 auto 1.5rem;
}

.step h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.step p {
	color: var(--text-gray);
	line-height: 1.7;
}

/* Cryptocurrencies */
.cryptocurrencies {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.crypto-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.crypto-item {
	background: var(--dark-card);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition:
		transform 0.3s,
		border-color 0.3s;
}

.crypto-item:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
}

.crypto-logo {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
	object-fit: contain;
}

.crypto-item h4 {
	font-size: 1.1rem;
	color: var(--text-light);
}

/* Stats Section */
.stats {
	padding: 100px 0;
	background: var(--dark-bg);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary-color), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-gray);
	font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary-color), var(--accent));
	text-align: center;
}

.cta-section h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: white;
}

.cta-section p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
	background: white;
	color: var(--primary-color);
}

.cta-section .btn-primary:hover {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
	background: var(--dark-card);
	padding: 60px 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.footer-logo {
	margin-bottom: 1rem;
}

.footer-logo img {
	height: 35px;
	width: auto;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.8rem;
}

.footer-section a {
	color: var(--text-gray);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.nav-links {
		display: none;
	}

	.section-title {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	animation: fadeInUp 1s ease-out;
}
