#hunter-ui-container {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 200px;
}

#hunter-ui-container .play-session-overlay {
	background-color: rgba(255, 255, 255, 0.9);
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	font-family: sans-serif;
}

#hunter-ui-container #session-event-title {
	font-weight: bold;
	margin-bottom: 5px;
}

#hunter-ui-container #session-timer {
	color: #d32f2f;
}

#hunter-session-points-row {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	color: #1976d2;
	font-weight: bold;
	font-family: sans-serif;
}

#gameOverModal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: auto;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 15vh;
	transition: background-color 0.3s;
}

#gameOverModal.hidden {
	display: none;
}

#gameOverModal .game-over-card {
	pointer-events: auto;
	text-align: center;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	animation: hunter-index-popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

#gameOverModal .game-over-card.hidden {
	display: none;
}

#gameOverModal .game-over-card h1 {
	font-size: 3rem;
	margin: 0;
	text-transform: uppercase;
}

#gameOverModal .game-over-card p {
	font-size: 1.2rem;
	margin: 0;
	font-weight: bold;
}

#gameOverModal .game-over-card.realtime {
	background-color: rgba(50, 50, 50, 0.95);
	border: none;
	box-shadow: none;
	color: #ff0000;
	text-shadow:
		0 0 10px #ffffff,
		0 0 20px #ffffff,
		0 0 30px #ffffff;
}

#gameOverModal .game-over-card.offline {
	background-color: rgba(50, 50, 50, 0.95);
	border: 4px solid #ff9800;
	color: #ff9800;
}

#gameOverModal .game-over-card.offline p {
	color: white;
}

#gameOverModal .tryAgainButton {
	padding: 12px 24px;
	font-size: 1.1rem;
	font-weight: bold;
	background-color: white;
	color: black;
	border: none;
	cursor: pointer;
	border-radius: 6px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	transition:
		transform 0.2s,
		background-color 0.2s;
}

#gameOverModal .tryAgainButton:hover {
	background-color: #f0f0f0;
	transform: scale(1.05);
}

@keyframes hunter-index-popIn {
	0% {
		opacity: 0;
		transform: scale(0.5) translateY(50px);
	}

	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}
