/* ============================================================
   Duck Hunter — fullscreen game page styles
   Used only by templates/page-duck-hunter.php.
   The page intentionally renders WITHOUT site header/footer
   (the game iframe fills the viewport).
   ============================================================ */

html, body {
	margin: 0; padding: 0;
	overflow: hidden;
	background: #1a1a0e;
	width: 100%; height: 100%;
}

#dh-wrap {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background: #1a1a0e;
	display: flex;
	align-items: center;
	justify-content: center;
}

#dh-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#dh-back {
	position: fixed;
	top: 12px; left: 12px;
	z-index: 100;
	background: rgba(10, 10, 6, 0.75);
	color: #4a8c3e;
	border: 2px solid #2a5a1e;
	padding: 8px 14px;
	font-family: 'Press Start 2P', monospace;
	font-size: 8px;
	letter-spacing: 1px;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.3s, background 0.2s;
	opacity: 0.5;
}
#dh-back:hover {
	opacity: 1;
	background: rgba(20, 30, 10, 0.9);
	border-color: #4a8c3e;
}
