body {
	background-color: #201e31;
	color: #ffffff;
	font-family: Arial, sans-serif;
}

.navbar {
	background: rgba(15,17,23,0.85);
	backdrop-filter: blur(12px);
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at top left, rgba(0,255,162,0.20), transparent 35%),
		radial-gradient(circle at bottom right, rgba(196,72,254,0.20), transparent 35%),
		#0f1117;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
}

.hero p {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.75);
}

.gradient-text {
	background: linear-gradient(135deg, #00ffa2, #c448fe);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.btn-primary-custom {
	background: linear-gradient(135deg, #00ffa2, #c448fe);
	border: 0;
	color: #000;
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 16px;
	transition: 0.2s ease;
}

.btn-primary-custom:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.btn-outline-custom {
	border: 1px solid rgba(255,255,255,0.2);
	color: #fff;
	padding: 14px 28px;
	border-radius: 16px;
	transition: 0.2s ease;
}

.btn-outline-custom:hover {
	background-color: rgba(255,255,255,0.05);
	border-color: rgba(255,255,255,0.35);
	color: #fff;
}

.feature-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 24px;
	padding: 30px;
	height: 100%;
	transition: 0.2s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0,255,162,0.4);
	box-shadow: 0 0 30px rgba(0,255,162,0.08);
}

.feature-icon {
	width: 60px;
	height: 60px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #00ffa2, #c448fe);
	color: #000;
}

.showcase-image {
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.showcase-image img {
	width: 100%;
	display: block;
}

.section-padding {
	padding: 100px 0;
}

.badge-custom {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	color: #ffffff;
	backdrop-filter: blur(10px);
}

footer {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 40px 0;
	color: rgba(255,255,255,0.6);
}

footer a {
	color: rgba(255,255,255,0.75);
	transition: 0.2s ease;
}

footer a:hover {
	color: #00ffa2;
}