/* PF7 - watch-page binge end-screen overlay. Dark, dismissible, centered. */
.castv-binge-endscreen {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(0, 0, 0, 0.82);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.castv-binge-card {
	width: 100%;
	max-width: 360px;
	padding: 22px 20px;
	border: 1px solid #2a2e37;
	border-radius: 10px;
	background: #15171c;
	color: #fff;
	text-align: center;
	box-shadow: 0 12px 44px rgba(0, 0, 0, 0.55);
	font-family: inherit;
}
.castv-binge-label {
	margin-bottom: 12px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9aa0ab;
}
.castv-binge-poster {
	display: block;
	width: 120px;
	height: auto;
	margin: 0 auto 12px;
	border-radius: 6px;
}
.castv-binge-title {
	margin-bottom: 4px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}
.castv-binge-meta {
	margin-bottom: 10px;
	font-size: 13px;
	color: #9aa0ab;
}
.castv-binge-count {
	min-height: 18px;
	margin-bottom: 16px;
	font-size: 13px;
	color: #c9ccd3;
}
.castv-binge-actions {
	display: flex;
	gap: 8px;
	justify-content: center;
}
.castv-binge-actions button {
	cursor: pointer;
	border: 0;
	border-radius: 6px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
}
.castv-binge-play {
	background: #e50914;
	color: #fff;
}
.castv-binge-cancel {
	background: #2a2e37;
	color: #e6e8ec;
}
@media (max-width: 480px) {
	.castv-binge-card { max-width: none; }
}

/* NEXT control-bar button (jumps to the same next film as the end-screen).
   The vjs-icon-next-item glyph is drawn on the BUTTON's own ::before (not the
   inner .vjs-icon-placeholder), so size that to match the native icons (1.8em,
   not the default 1em). Both selectors covered for robustness. */
.video-js .vjs-castv-next { cursor: pointer; width: 4em; }
.video-js .vjs-castv-next:before,
.video-js .vjs-castv-next .vjs-icon-placeholder:before {
	font-size: 1.8em;
	line-height: 1.67;
}
