body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #1e1e2f, #2a2a3b);
	color: #e0e0e0;
	line-height: 1.6;
}

a {
	color: #1e90ff;
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: #63c5da;
}

header {
	background: rgba(0, 0, 0, 0.8);
	padding: 1em 0;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

header h1 {
	color: #ffffff;
	font-size: 2.5em;
	margin: 0;
}

nav ul {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 1.5em;
	margin-top: 0.5em;
}

nav ul li a {
	color: #e0e0e0;
	font-size: 1.2em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

main {
	padding: 2em;
}

section {
	margin-bottom: 3em;
}

section h2 {
	color: #ffffff;
	font-size: 2em;
	border-bottom: 2px solid #1e90ff;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
}

.app-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	padding: 1.5em;
	margin-bottom: 2em;
	transition: transform 0.3s, box-shadow 0.3s;
}

.app-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

.app-card h3 {
	color: #ffffff;
	margin-top: 0;
}

.app-card p {
	color: #c0c0c0;
}

footer {
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	padding: 1em 0;
	color: #e0e0e0;
	font-size: 0.9em;
	margin-top: 2em;
}

/* Responsive Design */
@media (max-width: 768px) {
	nav ul {
		flex-direction: column;
		gap: 0.5em;
	}

	.app-card {
		padding: 1em;
	}

	section h2 {
		font-size: 1.5em;
	}
}