body {
	font-family: Arial, sans-serif;
	background-color: #111;
	color: #c9d1d9;
	padding: 20px;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

h1 {
	font-size: 2.9em;
	background-color: #005577;
	color: #ddd;
	text-align: center;
	padding: 20px;
	margin-bottom: 40px;
	margin-top: 80px;
	border-radius: 10px;
}

.card-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.card {
	border: 1px solid #30363d;
	border-radius: 10px;
	padding: 30px;
	width: 300px;
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s;
	cursor: pointer;
	text-decoration: none;
	color: #c9d1d9;
	background-color: #161b22;
}

.card:hover {
	transform: scale(1.05);
}

.card h3 {
	margin-top: 0;
	color: #58a6ff;
	font-size: 1.5em;
}

.desc {
	color: #ffffff;
	margin-bottom: 50px;
	padding: 20px;
	border-top: 1px solid #30363d;
	border-radius: 12px;
	width: 100%;
	max-width: 800px;
	text-align: center;
	background-color: #161b22;
	font-size: 1.3em;
}

.card p {
	margin: 0;
	font-size: 1.1em;
}

.about-section {
	margin-top: 60px;
	padding: 20px;
	border-top: 1px solid #30363d;
	border-radius: 12px;
	width: 100%;
	max-width: 800px;
	text-align: center;
	background-color: #161b22;
}

.about-section h2 {
	color: #e3f2fd;
	font-size: 2em;
	margin-bottom: 20px;
}

.about-section p {
	color: #c9d1d9;
	font-size: 1.1em;
}

.about-section a {
	color: #58a6ff;
	text-decoration: none;
	font-weight: bold;
	margin: 0 10px;
	display: inline-flex;
	align-items: center;
}

.about-section a i {
	margin-right: 8px;
}

.about-section a:hover {
	text-decoration: underline;
}

.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

.bar-text {
	font-size: 1.5em;
	color: #e3f2fd;
}

.bar-links {
	display: flex;
	gap: 40px;
	margin-right: 80px;
}

.bar-links a {
	text-decoration: none;
}

.bar-links i {
	font-size: 1.5em;
	transition: transform 0.3s, color 0.3s;
}

.bar-links a:hover i {
	transform: scale(1.3);
}

.bar-links a[href*="youtube"] i {
	color: #FF0000;
}

.bar-links a[href*="discord"] i {
	color: #5865F2;
}

.bar-links a[href*="github"] i {
	color: #fff;
}

.bar-links a[href*="paypal"], .bar-links a[href*="donate"] i {
	color: #FFA500;
}

.bar-text {
	color: #005577;
}

.search-container {
	width: 100%;
	max-width: 500px;
	margin-bottom: 40px;
}

.search-container input {
	width: 100%;
	padding: 14px 18px;
	font-size: 1.1em;
	border-radius: 10px;
	border: 1px solid #30363d;
	background-color: #161b22;
	color: #c9d1d9;
	outline: none;
}

.search-container input::placeholder {
	color: #8b949e;
}

.search-container input:focus {
	border-color: #58a6ff;
	box-shadow: 0 0 0 2px rgba(88, 166, 255, 0.3);
}
