footer {
	width: 100%;
	margin-top: auto;
	padding: 16px 0;
	color: #fff;
	background: linear-gradient(90deg, rgba(47, 20, 132, 0.95) 0%, rgba(63, 35, 145, 0.95) 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
	position: relative;
	z-index: 50;
}

.footerBox {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	flex-wrap: wrap;
}

.footerBox i {
	font-style: normal;
	font-size: 13px;
	letter-spacing: 0.2px;
	color: rgba(255, 255, 255, 0.9);
}

.footer-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px 16px;
}

footer a {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	margin-left: 0;
	opacity: 0.95;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

footer a:hover {
	opacity: 1;
	transform: translateY(-1px);
}

@media screen and (max-width: 960px) {
	footer {
		padding: 12px 0;
	}

	.footerBox {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding: 0 12px;
		gap: 10px;
	}

	.footer-links {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	footer a {
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 34px;
		padding: 6px 8px;
		font-size: 12px;
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 8px;
		transform: none;
	}

	.footerBox i {
		font-size: 12px;
		line-height: 1.6;
	}
}

@media screen and (max-width: 420px) {
	.footer-links {
		grid-template-columns: 1fr;
	}
}