* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	height: 100%;
	font-family: sans-serif;
}

.container {
	display: flex;
	height: 100vh;
}

.instructions {
	text-align: center;
	margin-bottom: 20px;
}

.instructions h2 {
	font-size: 20px;
	margin-bottom: 10px;
}

.instructions .highlight {
	color: #3498db;
	font-weight: bold;
}

.status-display {
	margin-bottom: 30px;
	font-size: 18px;
	color: #2c3e50;
	font-weight: 600;
	text-align: center;
}

.content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #f9f9f9;
}

#pw_or_ondeath {
	width: 100%;
	min-height: 280px;
	background-color: #ddd;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.ad-container {
	position: relative;
	width: 100%;
	min-height: 280px;
	background-color: #ddd;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

#pw_mainmenu.ad-container {
	width: 300px;
	height: 600px;
	background-color: #aaa;
}

.ad-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(0, 0, 0, 0.3);
	font-weight: bold;
	pointer-events: none;
	z-index: 0;
}

.button-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

button {
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
}

.sidebar {
	min-width: 320px;
	background-color: #eee;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#pw_mainmenu {
	width: 300px;
	height: 600px;
	background-color: #aaa;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}
