.footer-container {
	margin-top: 100px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 60px 40px;
	box-sizing: border-box;
	gap: 20px;
	position: relative;
	z-index: 2;
	user-select: none;
}

.footer-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: -1;
	pointer-events: none;
	border-radius: 24px 24px 0 0;
}

.footer-column {
	flex: 1;
	min-width: 180px;
	margin: 0 20px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-column-title {
	font-family: 'Title', Arial, sans-serif;
	font-size: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-resource-link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	text-decoration: none;
	font-family: 'Description', Arial, sans-serif;
	font-size: 20px;
	padding: 8px 12px;
	border: 3px solid transparent;
	background: transparent;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.footer-resource-link img {
	width: 32px;
	height: auto;
	pointer-events: none;
}

.footer-resource-link:hover img {
    filter: drop-shadow(0 0 8px #fff);
}

.footer-resource-link span {
	color: inherit;
	position: relative;
	z-index: 1;
	transition: text-shadow 0.2s;
}

.footer-column-link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	text-decoration: none;
	font-family: 'Description', Arial, sans-serif;
	font-size: 20px;
	padding: 8px 12px;
	border: 3px solid transparent;
	background: transparent;
	border-radius: 12px;
	position: relative;
	transition: all 0.2s;
}

.footer-column-link:hover,
.footer-resource-link:hover span {
	color: #FFF;
	text-shadow: 0 0 8px #fff, 0 0 16px #fff;
}

.footer-column-link.default:hover {
	background-color: rgba(255,255,255,0.5);
	border-color: #FFF;
	box-shadow: 0 0 12px #FFF;
	color: #FFF;
	text-shadow: 0 0 8px #FFF, 0 0 16px #FFF;
}
.footer-column-link.contact-mail:hover {
	background-color: rgba(0,139,19,0.8);
	border-color: #008b13;
	box-shadow: 0 0 12px #008b13;
	color: #fff;
	text-shadow: 0 0 8px #008b13, 0 0 16px #008b13;
}
.footer-column-link.contact-discord:hover {
	background-color: rgba(86,98,246,0.8);
	border-color: #5662f6;
	box-shadow: 0 0 12px #5662f6;
	color: #fff;
	text-shadow: 0 0 8px #5662f6, 0 0 16px #5662f6;
}

.footer-resource-link.official-reddit:hover span {
	text-shadow: 0 0 8px #d93900, 0 0 16px #d93900;
}

.footer-resource-link.official-discord:hover span {
	text-shadow: 0 0 8px #5662f6, 0 0 16px #5662f6;
}

.footer-resource-link.official-game:hover span {
	text-shadow: 0 0 8px #00b2e1, 0 0 16px #00b2e1;
}

.footer-resource-link.diep-wiki:hover span {
	text-shadow: 0 0 8px #233d4f, 0 0 16px #233d4f;
}

.footer-resource-link.official-reddit:hover {
	background-color: rgba(217, 57, 0, 0.8);
	border-color: #d93900;
	box-shadow: 0 0 12px #d93900;
}

.footer-resource-link.official-discord:hover {
	background-color: rgba(86, 98, 246, 0.8);
	border-color: #5662f6;
	box-shadow: 0 0 12px #5662f6;
	text-shadow: 0 0 8px #5662f6, 0 0 16px #5662f6;
}

.footer-resource-link.official-game:hover{
	background-color: rgba(0, 178, 225, 0.8);
	border-color: #00b2e1;
	box-shadow: 0 0 12px #00b2e1;
	text-shadow: 0 0 8px #00b2e1, 0 0 16px #00b2e1;
}

.footer-resource-link.diep-wiki:hover {
	background-color: rgba(35, 61, 79, 0.8);
	border-color: #233d4f;
	box-shadow: 0 0 12px #233d4f;
	text-shadow: 0 0 8px #233d4f, 0 0 16px #233d4f;
}

.footer-column-text {
	color: #c8c8c8;
	font-family: 'Description', Arial, sans-serif;
	font-size: 20px;
}

.footer-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: inherit;
	text-decoration: none;
	font-family: 'Description', Arial, sans-serif;
}

.footer-link-icon {
	width: 32px;
	height: auto;
}