/* Goonpass notification bell and sticky notice */
.gp-news-banner {
	position: sticky;
	top: 0;
	z-index: 10050;
	display: none;
	background: linear-gradient(90deg, #181818 0%, #2a080b 100%);
	border-bottom: 1px solid rgba(229, 9, 20, 0.55);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
	color: #ffffff;
}

.gp-news-banner.gp-is-visible {
	display: block;
}

.gp-news-banner__inner {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 10px 14px;
	font-size: 14px;
	line-height: 1.35;
}

.gp-news-banner__label {
	flex: 0 0 auto;
	padding: 4px 7px;
	border-radius: 4px;
	background: #e50914;
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.gp-news-banner__title {
	flex: 1 1 auto;
	color: #ffffff !important;
	font-weight: 700;
	text-decoration: none;
	text-decoration-color: rgba(255,255,255,0.45);
}

.gp-news-banner__title:hover,
.gp-news-banner__title:focus {
	color: #ffffff !important;
	outline: none;
	text-decoration: underline;
}

.gp-news-banner__link {
	flex: 0 0 auto;
	color: #ffffff !important;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(255,255,255,0.45);
}

.gp-news-banner__close {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255,255,255,0.22);
	border-radius: 4px;
	background: rgba(255,255,255,0.08);
	color: #ffffff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
}

#gp-news-widget-source[hidden],
.gp-news-top-item[hidden] {
	display: none !important;
}

.gp-news-top-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-left: 5px;
	vertical-align: middle;
}

.gp-news-top-item.gp-news-floating-fallback {
	position: fixed;
	top: 14px;
	right: 14px;
	z-index: 10060;
	margin-left: 0;
}

.gp-news-bell {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	background: rgba(17,17,17,0.92);
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0,0,0,0.32);
	transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.gp-news-bell:hover,
.gp-news-bell:focus {
	border-color: rgba(229,9,20,0.9);
	background: #171717;
	outline: none;
	transform: translateY(-1px);
}

.gp-news-bell svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.gp-news-bell__dot {
	position: absolute;
	right: 4px;
	top: 4px;
	width: 9px;
	height: 9px;
	border: 2px solid #111111;
	border-radius: 50%;
	background: #e50914;
	box-shadow: 0 0 0 2px rgba(229,9,20,0.18);
}

.gp-news-panel {
	position: fixed;
	left: 12px;
	top: 54px;
	z-index: 100000;
	display: none;
	width: min(390px, calc(100vw - 24px));
	border: 1px solid rgba(229, 9, 20, 0.35);
	border-radius: 14px;
	background: #111111;
	box-shadow: 0 22px 68px rgba(0,0,0,0.58);
	color: #eeeeee;
	text-align: left;
}

.gp-news-panel.gp-is-open {
	display: block;
}

.gp-news-panel:before {
	content: "";
	position: absolute;
	left: var(--gp-news-arrow-left, 330px);
	top: -7px;
	width: 12px;
	height: 12px;
	background: #111111;
	border-left: 1px solid rgba(229,9,20,0.35);
	border-top: 1px solid rgba(229,9,20,0.35);
	transform: rotate(45deg);
}

.gp-news-panel__head {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 15px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px 14px 0 0;
	background: linear-gradient(180deg, #191919 0%, #111111 100%);
	color: #ffffff;
	font-weight: 900;
}

.gp-news-panel__mark {
	border: 0;
	background: transparent;
	color: #ff4b55;
	cursor: pointer;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 0;
}

.gp-news-panel__mark:hover,
.gp-news-panel__mark:focus {
	color: #ffffff;
	outline: none;
	text-decoration: underline;
}

.gp-news-panel__list {
	max-height: none;
	overflow: visible;
}

.gp-news-panel__list.gp-has-scroll {
	max-height: 320px;
	overflow-y: auto;
	overflow-x: hidden;
}

.gp-news-item {
	display: grid;
	grid-template-columns: 10px 1fr;
	gap: 9px;
	padding: 12px 15px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
	color: #eeeeee !important;
	text-decoration: none;
}

.gp-news-item:hover,
.gp-news-item:focus {
	background: rgba(229, 9, 20, 0.09);
	outline: none;
}

.gp-news-item__dot {
	width: 8px;
	height: 8px;
	margin-top: 6px;
	border-radius: 50%;
	background: #e50914;
	box-shadow: 0 0 0 3px rgba(229,9,20,0.14);
	opacity: 0;
}

.gp-news-item.gp-is-unread .gp-news-item__dot {
	opacity: 1;
}

.gp-news-item__line {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}

.gp-news-item__title {
	min-width: 0;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.gp-news-item__date {
	flex: 0 0 auto;
	color: #9b9b9b;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.gp-news-item__meta {
	display: block;
	margin-top: 4px;
	color: #aaa;
	font-size: 12px;
}

.gp-news-panel__footer {
	display: block;
	padding: 12px 14px;
	border-radius: 0 0 14px 14px;
	background: rgba(255,255,255,0.035);
	color: #ff3b45 !important;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

@media screen and (max-width: 640px) {
	.gp-news-banner__inner {
		align-items: flex-start;
		gap: 8px;
		padding: 10px;
		font-size: 13px;
	}

	.gp-news-banner__label {
		display: none;
	}

	.gp-news-item__line {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}
}

/* News list page */
.content.gp-news-page {
	background: #070707 !important;
	color: #e8e8e8;
	padding: 24px 16px 46px;
}

.gp-news-page .main-content,
.gp-news-page .main-container {
	background: transparent !important;
}

.gp-news-page .main-container,
.gp-news-page > .block-post {
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}

.gp-news-page .headline {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 0 18px !important;
}

.gp-news-page .headline h1 {
	margin: 0;
	color: #ffffff !important;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gp-news-page .headline h1:after {
	content: "";
	display: block;
	width: 72px;
	height: 3px;
	margin-top: 12px;
	background: #e50914;
	border-radius: 2px;
}

.gp-news-page .box,
.gp-news-page .block-post {
	background: linear-gradient(180deg, #151515 0%, #0e0e0e 100%) !important;
	border: 1px solid rgba(229, 9, 20, 0.35) !important;
	border-radius: 14px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
	color: #e8e8e8 !important;
	overflow: hidden;
}

.gp-news-page .list-posts,
.gp-news-page .margin-fix {
	background: transparent !important;
}

.gp-news-page .list-posts .item {
	background: rgba(255, 255, 255, 0.035) !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	margin: 14px;
	transition: border-color 0.16s ease, background 0.16s ease;
}

.gp-news-page .list-posts .item:hover {
	background: rgba(229, 9, 20, 0.08) !important;
	border-color: rgba(229, 9, 20, 0.42);
}

.gp-news-page .list-posts .item a {
	display: block;
	padding: 18px 20px;
	color: #d9d9d9 !important;
	text-decoration: none;
}

.gp-news-page .list-posts .item .title {
	display: block;
	margin-bottom: 8px;
	color: #ffffff !important;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
}

.gp-news-page .list-posts .item .description {
	color: #c7c7c7 !important;
	font-size: 15px;
	line-height: 1.6;
}

.gp-news-page .list-posts .item .wrap,
.gp-news-page .list-posts .item .added,
.gp-news-page .empty-content {
	color: #9a9a9a !important;
}

@media screen and (max-width: 640px) {
	.content.gp-news-page {
		padding: 18px 12px 34px;
	}

	.gp-news-page .headline h1 {
		font-size: 28px;
	}

	.gp-news-page .list-posts .item {
		margin: 10px;
	}

	.gp-news-page .list-posts .item a {
		padding: 15px;
	}
}

/* News detail page */
html body .content.gp-news-page {
	display: block !important;
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: none !important;
	min-height: 320px;
	background: #070707 !important;
	color: #e8e8e8 !important;
	padding: 24px 16px 46px !important;
	text-align: left !important;
}

html body .content.gp-news-page .headline,
html body .content.gp-news-page .block-post {
	display: block !important;
	float: none !important;
	clear: both !important;
	box-sizing: border-box !important;
	position: relative !important;
	left: auto !important;
	right: auto !important;
	width: min(1120px, calc(100vw - 32px)) !important;
	max-width: 1120px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: left !important;
}

html body .content.gp-news-page .headline {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 14px !important;
}

html body .content.gp-news-page .headline h1 {
	margin: 0 !important;
	color: #ffffff !important;
	font-size: 30px !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
	text-align: left !important;
}

html body .content.gp-news-page .headline h1:after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin-top: 10px;
	background: #e50914;
	border-radius: 2px;
}

html body .content.gp-news-page .block-post {
	background: linear-gradient(180deg, #151515 0%, #0e0e0e 100%) !important;
	border: 1px solid rgba(229, 9, 20, 0.32) !important;
	border-radius: 12px !important;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34) !important;
	color: #e8e8e8 !important;
	overflow: hidden !important;
}

html body .content.gp-news-page .post-holder {
	display: block !important;
	float: none !important;
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: none !important;
	background: transparent !important;
	padding: 20px 22px !important;
	text-align: left !important;
}

html body .content.gp-news-page .post-content {
	display: block !important;
	float: none !important;
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

html body .content.gp-news-page .post-content,
html body .content.gp-news-page .post-content p,
html body .content.gp-news-page .post-content div,
html body .content.gp-news-page .post-content span {
	color: #e8e8e8 !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
}

html body .content.gp-news-page .post-content p {
	margin: 0 0 12px !important;
}

html body .content.gp-news-page .post-content p:last-child,
html body .content.gp-news-page .post-content div:last-child {
	margin-bottom: 0 !important;
}

html body .content.gp-news-page .post-content strong,
html body .content.gp-news-page .post-content b {
	color: #ffffff !important;
}

html body .content.gp-news-page .post-content a {
	color: #ff3b45 !important;
	text-decoration: underline !important;
	text-decoration-color: rgba(255, 59, 69, 0.45) !important;
}

html body .content.gp-news-page .post-content ul,
html body .content.gp-news-page .post-content ol {
	margin: 0 0 16px 22px !important;
	padding: 0 !important;
}

html body .content.gp-news-page .post-content li {
	margin-bottom: 8px !important;
	color: #e8e8e8 !important;
}

@media screen and (max-width: 640px) {
	html body .content.gp-news-page {
		padding: 18px 12px 34px !important;
	}

	html body .content.gp-news-page .headline,
	html body .content.gp-news-page .block-post {
		width: min(100%, calc(100vw - 24px)) !important;
	}

	html body .content.gp-news-page .headline h1 {
		font-size: 26px !important;
	}

	html body .content.gp-news-page .post-holder {
		padding: 16px !important;
	}

	html body .content.gp-news-page .post-content,
	html body .content.gp-news-page .post-content p,
	html body .content.gp-news-page .post-content div,
	html body .content.gp-news-page .post-content span {
		font-size: 15px !important;
		line-height: 1.62 !important;
	}
}

/* Video list filter toolbar */
.gp-video-filter-block .headline {
	flex-wrap: wrap;
	column-gap: 8px;
	row-gap: 8px;
}

.gp-video-filter-block .headline .sort {
	margin: 0;
}

.gp-video-filter-block .gp-filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	margin-left: 8px;
	padding: 0 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 7px;
	background: #171717;
	color: #b9b9b9;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	vertical-align: middle;
	white-space: nowrap;
}

.gp-video-filter-block .gp-filter-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 9px;
	background: #212121;
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.gp-video-filter-block .gp-filter-reset svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.no-touch .gp-video-filter-block .gp-filter-reset:hover {
	border-color: #e50914;
	background: #e50914;
	transform: rotate(-12deg);
}

.gp-video-filter-block .gp-filter-reset:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.gp-video-filter-block .gp-quality-filter {
	min-width: 180px;
}

.gp-video-filter-block .gp-duration-filter {
	min-width: 150px;
}

.gp-video-filter-block .gp-year-filter {
	min-width: 118px;
}

.gp-video-filter-block .gp-quality-filter strong,
.gp-video-filter-block .gp-quality-filter a,
.gp-video-filter-block .gp-duration-filter strong,
.gp-video-filter-block .gp-duration-filter a,
.gp-video-filter-block .gp-year-filter strong,
.gp-video-filter-block .gp-year-filter a {
	white-space: nowrap;
}

.gp-video-filter-block .gp-year-filter ul {
	max-height: 310px;
	overflow-y: auto;
}

.gp-video-filter-block .gp-year-filter ul:not(.gp-year-bounds-ready) li[data-gp-year],
.gp-video-filter-block .gp-year-filter ul.gp-year-bounds-ready .gp-year-loading {
	display: none;
}

.gp-video-filter-block .gp-year-filter li[hidden] {
	display: none !important;
}

/* Player seek controls and feedback */
#kt_player.gp-seek-ready {
								touch-action: manipulation;
							}

							#kt_player .fp-controls .gp-seek-bar-button {
								float: left;
								position: relative;
								display: flex;
								align-items: center;
								justify-content: center;
								width: 32px;
								height: 32px;
								margin: 5px 1px 0;
								padding: 0;
								border: 0;
								border-radius: 4px;
								background: transparent;
								color: #eeeeee;
								cursor: pointer;
								line-height: 1;
								transition: color 140ms ease, background-color 140ms ease, transform 100ms ease;
								-webkit-tap-highlight-color: transparent;
							}

							#kt_player .fp-controls .gp-seek-bar-button svg {
								display: block;
								width: 25px;
								height: 25px;
								overflow: visible;
								pointer-events: none;
							}

							#kt_player .fp-controls .gp-seek-bar-button .gp-seek-arrow {
								fill: none;
								stroke: currentColor;
								stroke-width: 1.8;
								stroke-linecap: round;
								stroke-linejoin: round;
							}

							#kt_player .fp-controls .gp-seek-bar-button .gp-seek-number {
								fill: currentColor;
								font-family: Arial, Helvetica, sans-serif;
								font-size: 7.5px;
								font-weight: 700;
								text-anchor: middle;
							}

							#kt_player .fp-controls .gp-seek-bar-button:hover,
							#kt_player .fp-controls .gp-seek-bar-button:focus-visible {
								background: rgba(255, 255, 255, 0.1);
								color: #ffffff;
								outline: none;
							}

							#kt_player .fp-controls .gp-seek-bar-button:active {
								background: rgba(229, 9, 20, 0.28);
								color: #ffffff;
								transform: scale(0.91);
							}

							#kt_player .fp-controls .gp-seek-bar-button.gp-seek-confirm {
								color: #e50914;
							}

							#kt_player .gp-seek-feedback-layer {
								position: absolute;
								inset: 0;
								z-index: 20;
								overflow: hidden;
								pointer-events: none;
							}

							#kt_player .gp-seek-feedback {
								position: absolute;
								top: 46%;
								display: flex;
								align-items: center;
								gap: 8px;
								min-width: 92px;
								padding: 9px 12px 9px 10px;
								border: 1px solid rgba(255, 255, 255, 0.18);
								border-radius: 10px;
								background: linear-gradient(145deg, rgba(24, 24, 27, 0.92), rgba(5, 5, 6, 0.84));
								box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
								color: #ffffff;
								opacity: 0;
								transform: translateY(-50%) scale(0.9);
								backdrop-filter: blur(7px);
								-webkit-backdrop-filter: blur(7px);
							}

							#kt_player .gp-seek-feedback-back {
								left: clamp(16px, 12%, 130px);
							}

							#kt_player .gp-seek-feedback-forward {
								right: clamp(16px, 12%, 130px);
							}

							#kt_player .gp-seek-feedback svg {
								width: 22px;
								height: 22px;
								flex: 0 0 22px;
								fill: none;
								stroke: #e50914;
								stroke-width: 2;
								stroke-linecap: round;
								stroke-linejoin: round;
							}

							#kt_player .gp-seek-feedback-copy {
								display: flex;
								align-items: baseline;
								gap: 4px;
								white-space: nowrap;
							}

							#kt_player .gp-seek-feedback strong {
								font-family: Arial, Helvetica, sans-serif;
								font-size: 17px;
								font-weight: 800;
								line-height: 1;
								letter-spacing: -0.35px;
							}

							#kt_player .gp-seek-feedback small {
								color: rgba(255, 255, 255, 0.68);
								font-family: Arial, Helvetica, sans-serif;
								font-size: 8px;
								font-weight: 700;
								line-height: 1;
								letter-spacing: 0.7px;
								text-transform: uppercase;
							}

							#kt_player .gp-seek-feedback-back.gp-seek-feedback-show {
								animation: gp-seek-feedback-back 760ms cubic-bezier(0.2, 0.75, 0.25, 1);
							}

							#kt_player .gp-seek-feedback-forward.gp-seek-feedback-show {
								animation: gp-seek-feedback-forward 760ms cubic-bezier(0.2, 0.75, 0.25, 1);
							}

							@keyframes gp-seek-feedback-back {
								0% {
									opacity: 0;
									transform: translate(12px, -50%) scale(0.88);
								}
								18%, 62% {
									opacity: 1;
									transform: translate(0, -50%) scale(1);
								}
								100% {
									opacity: 0;
									transform: translate(-10px, -50%) scale(0.96);
								}
							}

							@keyframes gp-seek-feedback-forward {
								0% {
									opacity: 0;
									transform: translate(-12px, -50%) scale(0.88);
								}
								18%, 62% {
									opacity: 1;
									transform: translate(0, -50%) scale(1);
								}
								100% {
									opacity: 0;
									transform: translate(10px, -50%) scale(0.96);
								}
							}

							#kt_player.is-touch .fp-controls .gp-seek-bar-button {
								display: none !important;
							}

							@media (pointer: coarse) {
								#kt_player .fp-controls .gp-seek-bar-button {
									display: none !important;
								}
							}

							@media (pointer: coarse) and (orientation: landscape) and (min-width: 600px) {
								#kt_player .fp-controls .gp-seek-bar-button,
								#kt_player.is-touch .fp-controls .gp-seek-bar-button {
									display: flex !important;
									width: 30px;
									height: 30px;
									margin-top: 5px;
								}

								#kt_player .fp-controls .gp-seek-bar-button svg {
									width: 23px;
									height: 23px;
								}
							}

							#kt_player.is-ad-playing .fp-controls .gp-seek-bar-button,
							#kt_player.is-ad-paused .fp-controls .gp-seek-bar-button {
								display: none !important;
							}

							@media (max-width: 599px) {
								#kt_player .gp-seek-feedback {
									top: 43%;
									min-width: 82px;
									padding: 8px 10px 8px 9px;
								}

								#kt_player .gp-seek-feedback-back {
									left: 5%;
								}

								#kt_player .gp-seek-feedback-forward {
									right: 5%;
								}
							}

							@media (prefers-reduced-motion: reduce) {
								#kt_player .fp-controls .gp-seek-bar-button {
									transition: none;
								}

								#kt_player .gp-seek-feedback-back.gp-seek-feedback-show,
								#kt_player .gp-seek-feedback-forward.gp-seek-feedback-show {
									animation-duration: 420ms;
								}
							}
