.zpc-player-only .player-qbtn .zpc-error-report-button {
	display: inline-flex;
	float: right;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	margin-left: auto;
	padding: 10px 17px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	background: #e50914;
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;
	cursor: pointer;
	box-shadow: 0 7px 18px rgba(229, 9, 20, 0.28);
	transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.zpc-player-only .player-qbtn .zpc-error-report-button:hover,
.zpc-player-only .player-qbtn .zpc-error-report-button:focus-visible {
	background: #ff1823;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 9px 22px rgba(229, 9, 20, 0.4);
}

.zpc-player-only .player-qbtn .zpc-error-report-button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.88);
	outline-offset: 3px;
}

.zpc-error-report-button svg {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body.zpc-error-report-open {
	overflow: hidden;
}

.zpc-error-report-modal[hidden] {
	display: none !important;
}

.zpc-error-report-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.zpc-error-report-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(4px);
}

.zpc-error-report-dialog {
	position: relative;
	box-sizing: border-box;
	width: min(100%, 560px);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 15px;
	background: #151922;
	color: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
}

.zpc-error-report-dialog *,
.zpc-error-report-dialog *::before,
.zpc-error-report-dialog *::after {
	box-sizing: border-box;
}

.zpc-error-report-close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 29px;
	line-height: 36px;
	cursor: pointer;
	opacity: 0.75;
}

.zpc-error-report-close:hover,
.zpc-error-report-close:focus-visible {
	opacity: 1;
}

.zpc-error-report-heading {
	display: flex;
	gap: 13px;
	align-items: flex-start;
	padding-right: 35px;
}

.zpc-error-report-heading-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	border-radius: 50%;
	background: #e50914;
	color: #fff;
	font-size: 23px;
	font-weight: 900;
}

.zpc-error-report-heading h2 {
	margin: 1px 0 6px;
	color: #fff;
	font-size: 23px;
	line-height: 1.2;
}

.zpc-error-report-heading p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.5;
}

.zpc-error-report-context {
	margin: 19px 0;
	padding: 11px 13px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	line-height: 1.55;
}

.zpc-error-report-context strong {
	color: #fff;
}

.zpc-error-report-form label {
	display: block;
	margin-bottom: 8px;
	color: #fff;
	font-weight: 700;
}

.zpc-error-report-form label span {
	color: #ff4a54;
}

.zpc-error-report-form textarea {
	display: block;
	width: 100%;
	min-height: 155px;
	resize: vertical;
	box-sizing: border-box;
	padding: 12px 13px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 9px;
	background: #0d1119;
	color: #fff;
	font: inherit;
	font-size: 15px;
	line-height: 1.5;
}

.zpc-error-report-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.46);
}

.zpc-error-report-form textarea:focus {
	border-color: #e50914;
	outline: 2px solid rgba(229, 9, 20, 0.3);
	outline-offset: 1px;
}

.zpc-error-report-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.zpc-error-report-status {
	min-height: 22px;
	margin: 9px 0 4px;
	font-size: 13px;
	line-height: 1.45;
}

.zpc-error-report-status.is-error {
	color: #ff8b92;
}

.zpc-error-report-status.is-success {
	color: #78df94;
}

.zpc-error-report-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	padding: 10px 18px;
	border: 0;
	border-radius: 8px;
	background: #e50914;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.zpc-error-report-submit:hover,
.zpc-error-report-submit:focus-visible {
	background: #ff1823;
	color: #fff;
}

.zpc-error-report-submit:disabled {
	cursor: wait;
	opacity: 0.66;
}

@media (max-width: 600px) {
	.zpc-player-only .player-qbtn .zpc-error-report-button {
		min-height: 44px;
		padding: 9px 13px;
		font-size: 13px;
	}

	.zpc-error-report-modal {
		align-items: flex-end;
		padding: 10px;
	}

	.zpc-error-report-dialog {
		width: 100%;
		max-height: calc(100vh - 20px);
		padding: 21px 17px;
		border-radius: 15px 15px 10px 10px;
	}

	.zpc-error-report-heading h2 {
		font-size: 21px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.zpc-error-report-button {
		transition: none !important;
	}
}
