﻿
.feature-section {
	color: #fff;
}

.feature-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 30px 20px;
	transition: all 0.3s ease;
	height: 100%;
}

	.feature-card:hover {
		transform: translateY(-8px);
		border-color: #4e73df;
		box-shadow: 0 10px 25px rgba(78,115,223,0.4);
	}

	.feature-card .icon {
		font-size: 40px;
		margin-bottom: 15px;
	}

	.feature-card h5 {
		margin-bottom: 10px;
	}

	.feature-card p {
		font-size: 14px;
		color: #bbb;
	}

/**/
.how-section {
	padding: 80px 0;
	background: #0b0f1a;
	color: #fff;
}

.step-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 15px;
	padding: 25px 15px;
	height: 100%;
	transition: 0.3s;
	position: relative;
}

	.step-card:hover {
		transform: translateY(-10px);
		border-color: #00e5ff;
		box-shadow: 0 10px 25px rgba(0,229,255,0.4);
	}

.step-icon {
	font-size: 38px;
	margin-bottom: 15px;
}

.step-card h5 {
	font-weight: 600;
	margin-bottom: 10px;
}

.step-card p {
	font-size: 14px;
	color: #bbb;
}

/**/

.join-section {
	padding: 90px 0;
	background: #0c1022;
	color: #fff;
}

.join-text {
	color: #bbb;
	font-size: 16px;
	line-height: 1.7;
}

.btn-join {
	background: linear-gradient(90deg,#00e5ff,#4e73df);
	border: none;
	padding: 12px 25px;
	color: #fff;
	font-weight: 600;
	border-radius: 8px;
	transition: 0.3s;
}

	.btn-join:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(0,229,255,0.4);
	}

.join-img {
	max-height: 350px;
	animation: float 3s ease-in-out infinite;
}

/* floating animation */
@keyframes float {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}

/**/

.wallet-section {
	padding: 90px 0;
	background: #0b0f1a;
	color: #fff;
}

.wallet-sub {
	color: #aaa;
	max-width: 750px;
	margin: auto;
}

.wallet-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	padding: 25px 15px;
	border-radius: 12px;
	transition: 0.3s;
}

	.wallet-card i {
		font-size: 35px;
		color: #00e5ff;
		display: block;
		margin-bottom: 10px;
	}

	.wallet-card span {
		font-size: 14px;
		color: #ddd;
	}

	.wallet-card:hover {
		transform: translateY(-6px);
		border-color: #00e5ff;
		box-shadow: 0 10px 20px rgba(0,229,255,0.35);
	}

/**/

.eco-wrap {
	padding: 120px 0;
	background: radial-gradient(circle at top, #111633, #0b0f1a);
	color: #fff;
	font-family: 'Poppins', sans-serif;
}

/* Title */
.eco-title {
	font-weight: 700;
	font-size: 2.5rem;
	color: #00e5ff;
}

.title-line {
	height: 3px;
	width: 80px;
	margin: 15px auto 40px;
	background: linear-gradient(90deg, #00e5ff, #4e73df);
	border-radius: 2px;
}

/* Items */
.eco-item {
	display: flex;
	gap: 20px;
	padding: 25px;
	margin-bottom: 25px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 15px;
	transition: all 0.4s ease;
	align-items: center;
}

	.eco-item:hover {
		transform: translateY(-8px);
		box-shadow: 0 10px 25px rgba(0, 229, 255, 0.35);
		border-color: #00e5ff;
	}

/* Icon */
.eco-icon {
	font-size: 28px;
	min-width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #00e5ff, #4e73df);
	box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
	transition: all 0.3s ease;
}

.eco-item:hover .eco-icon {
	transform: scale(1.2);
	box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
}

/* Content */
.eco-content h5 {
	margin-bottom: 6px;
	font-size: 1.15rem;
	color: #00e5ff;
}

.eco-content p {
	color: #bbb;
	font-size: 14px;
	line-height: 1.6;
}

/* Highlight items */
.eco-item.highlight {
	background: linear-gradient(90deg, #151c40, #1b2150);
	border: 1px solid #4e73df;
	box-shadow: 0 10px 25px rgba(78, 115, 223, 0.3);
}

/* Danger items */
.eco-item.danger {
	border-color: #ff4d4f;
	background: rgba(255, 77, 79, 0.05);
	box-shadow: 0 10px 20px rgba(255, 77, 79, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
	.eco-item {
		flex-direction: column;
		text-align: center;
	}

	.eco-icon {
		margin-bottom: 15px;
	}
}

/**/

.info-section {
	padding: 80px 0;
	background: radial-gradient(circle at top, #111633, #0b0f1a);
	color: #fff;
}

	.info-section h2 {
		font-weight: 700;
		font-size: 2rem;
	}

.title-line {
	height: 3px;
	width: 80px;
	margin: 15px auto 0;
	background: linear-gradient(90deg,#00e5ff,#4e73df);
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.info-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 20px;
	padding: 25px;
	transition: 0.3s;
	text-align: center;
}

	.info-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 10px 30px rgba(0,229,255,0.25);
		border-color: #00e5ff;
	}

.info-icon {
	font-size: 36px;
	margin-bottom: 15px;
}

.info-card h4 {
	font-size: 1.2rem;
	margin-bottom: 12px;
	color: #00e5ff;
}

.info-card p {
	font-size: 0.95rem;
	color: #bbb;
	line-height: 1.5;
}



