@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	font-family: 'Press Start 2P', 'Courier New', monospace;
}
.fullscreen-image {
	max-width: 95vw;
	max-height: 85vh;
	object-fit: contain;
	border: 2px solid #00ff00;
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}
.image-title {
	color: #00cc00;
	font-size: 12px;
	margin-top: 15px;
	text-align: center;
	text-shadow: 1px 1px #003300;
}
.back-link {
	margin-top: 20px;
	text-align: center;
	padding: 12px 25px;
	border: 2px solid #00ff00;
	background: rgba(0, 30, 0, 0.6);
	transition: all 0.3s;
}
.back-link:hover {
	background: rgba(0, 255, 0, 0.2);
	box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}
.back-link a {
	color: #00ff00;
	text-decoration: none;
	font-size: 12px;
	font-family: 'Press Start 2P', 'Courier New', monospace;
	text-shadow: 1px 1px #003300;
}
.back-link a:hover {
	color: #00ffff;
	text-shadow: 0 0 10px #00ffff;
}
.error-message {
	color: #ff0000;
	font-family: 'Press Start 2P', 'Courier New', monospace;
	font-size: 14px;
	text-align: center;
	padding: 30px;
	border: 2px solid #ff0000;
	background: rgba(50, 0, 0, 0.6);
}
