.plc-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(28, 28, 28, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	padding: 20px;
}
.plc-popup-overlay[hidden] { display: none; }

.plc-popup {
	position: relative;
	background: #F4C430;
	border: 3px solid #1C1C1C;
	box-shadow: 8px 8px 0 #1C1C1C;
	max-width: 380px;
	width: 100%;
	padding: 32px 28px 28px;
	font-family: 'IBM Plex Sans', Arial, sans-serif;
	color: #1C1C1C;
}
.plc-popup h2 {
	font-family: 'Anton', Impact, sans-serif;
	text-transform: uppercase;
	font-size: 1.8rem;
	line-height: 1.1;
	margin: 0 0 10px;
}
.plc-popup p { margin: 0 0 18px; font-size: 0.95rem; }
.plc-popup label {
	display: block;
	font-family: 'Space Mono', monospace;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}
.plc-popup input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	margin-bottom: 16px;
	border: 2px solid #1C1C1C;
	border-radius: 2px;
	font-size: 1rem;
	background: #EDE6D6;
}
.plc-popup-submit {
	width: 100%;
	background: #1C1C1C;
	color: #EDE6D6;
	border: 2px solid #1C1C1C;
	padding: 14px;
	font-family: 'Space Mono', monospace;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
}
.plc-popup-submit:disabled { opacity: 0.6; cursor: default; }
.plc-popup-submit:hover:not(:disabled) { background: #D62828; border-color: #D62828; }

.plc-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	color: #1C1C1C;
}
.plc-popup-msg { font-family: 'Space Mono', monospace; font-size: 0.85rem; margin: 0; min-height: 1.2em; }
