.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
	z-index: 100;
	transform: translateY(100%);
	opacity: 0;
	transition: all 0.3s ease;
}
.footer.visible {
	transform: translateY(0);
	opacity: 1;
}
.footer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}
.footer a {
	color: #ff0000;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer a:hover {
	color: #000;
	text-decoration: underline;
}
.footer-hover-area {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	z-index: 99;
}
