:root {
	--hdmovie2-background: #10141c;
	--hdmovie2-surface: #171d28;
	--hdmovie2-text: #f4f6f9;
	--hdmovie2-muted: #aab3c2;
	--hdmovie2-accent: #2f80ed;
	--hdmovie2-max-width: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding-top: 70px;
	background: var(--hdmovie2-outside-background, var(--hdmovie2-background));
	color: var(--hdmovie2-text);
	font-family: var(--hdmovie2-body-font);
	font-size: var(--hdmovie2-base-font-size);
	font-weight: var(--hdmovie2-body-font-weight);
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--hdmovie2-heading-font);
	font-weight: var(--hdmovie2-heading-font-weight);
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.hdmovie2-container {
	width: min(100%, var(--hdmovie2-max-width));
	margin-inline: auto;
}

.hdmovie2-container--full {
	width: 100%;
	max-width: none;
	padding-inline: 1rem;
}

.hdmovie2-site-main.hdmovie2-container,
.hdmovie2-single-movie {
	background: var(--hdmovie2-inside-background, var(--hdmovie2-background));
}

.hdmovie2-site-header,
.hdmovie2-site-footer {
	background: var(--hdmovie2-surface);
}

.hdmovie2-player {
	width: 100%;
	margin: 0;
	overflow: hidden;
	scroll-margin-top: 70px;
	border-bottom: 3px solid rgba(255, 255, 255, 0.08);
	background: #050505;
}

.admin-bar .hdmovie2-player {
	scroll-margin-top: 102px;
}

.hdmovie2-player-stage {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #050505;
}

.hdmovie2-player-panel,
.hdmovie2-player-panel iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.hdmovie2-player-panel {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hdmovie2-player-panel[hidden] {
	display: none !important;
}

.hdmovie2-player-empty {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 2rem;
	color: var(--hdmovie2-muted);
	text-align: center;
}

.hdmovie2-player-cover {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: #050505;
	color: #fff;
	cursor: pointer;
}

.hdmovie2-player-cover[hidden] {
	display: none;
}

.hdmovie2-player-cover-image,
.hdmovie2-player-cover-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hdmovie2-player-cover-image {
	object-fit: cover;
}

.hdmovie2-player-cover-shade {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.62));
	transition: background-color 180ms ease;
}

.hdmovie2-player-cover:hover .hdmovie2-player-cover-shade,
.hdmovie2-player-cover:focus-visible .hdmovie2-player-cover-shade {
	background-color: rgba(0, 0, 0, 0.2);
}

.hdmovie2-player-cover-play {
	position: relative;
	z-index: 1;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	box-shadow: 0 0 26px rgba(0, 0, 0, 0.62);
	transition: opacity 180ms ease, transform 180ms ease;
}

.hdmovie2-player-cover-play img {
	display: block;
	width: 100%;
	height: 100%;
}

.hdmovie2-player-cover:hover .hdmovie2-player-cover-play,
.hdmovie2-player-cover:focus-visible .hdmovie2-player-cover-play {
	opacity: 0.86;
	transform: scale(1.06);
}

.hdmovie2-player-cover-quality {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	padding: 5px 9px;
	border-radius: 3px;
	background: var(--hdmovie2-quality-badge-color, #cd2026);
	color: #fff;
	font-size: var(--hdmovie2-quality-badge-font-size, 12px);
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.hdmovie2-player-cover-label {
	position: absolute;
	bottom: 24px;
	z-index: 1;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.hdmovie2-player-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 17px 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: #0a0a0a;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
}

.hdmovie2-player-heading-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	font-size: 12px;
	font-weight: 400;
}

.hdmovie2-player-report-toggle {
	padding: 5px 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 3px;
	background: #000;
	color: var(--hdmovie2-accent);
	font: inherit;
	line-height: 1.25;
	cursor: pointer;
	transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.hdmovie2-player-report-toggle:hover,
.hdmovie2-player-report-toggle:focus-visible {
	border-color: rgba(255, 255, 255, 0.3);
	background: #050505;
	color: #fff;
}

.hdmovie2-player-views {
	color: rgba(255, 255, 255, 0.5);
	white-space: nowrap;
}

.hdmovie2-player-sources {
	width: 100%;
	padding: 0;
	background: rgba(0, 0, 0, 0.55);
}

.hdmovie2-report-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 24px;
}

.hdmovie2-report-modal[hidden] {
	display: none;
}

.hdmovie2-report-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(0, 0, 0, 0.84);
	cursor: default;
}

.hdmovie2-report-dialog {
	position: relative;
	z-index: 1;
	width: min(600px, 100%);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 5px;
	background: #fff;
	color: #5c5c5c;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.65);
}

.hdmovie2-report-dialog > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
	padding: 14px 24px;
	border-bottom: 1px solid #ddd;
}

.hdmovie2-report-dialog h3 {
	margin: 0;
	color: #222;
	font-size: 18px;
	font-weight: 400;
}

.hdmovie2-report-close {
	position: relative;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #428ee8;
	cursor: pointer;
}

.hdmovie2-report-close span::before,
.hdmovie2-report-close span::after {
	content: "";
	position: absolute;
	top: 14px;
	left: 6px;
	width: 20px;
	height: 3px;
	border-radius: 2px;
	background: currentColor;
}

.hdmovie2-report-close span::before { transform: rotate(45deg); }
.hdmovie2-report-close span::after { transform: rotate(-45deg); }

.hdmovie2-player-report {
	padding: 15px 24px 20px;
}

.hdmovie2-player-report fieldset {
	margin: 0 0 10px;
	padding: 0;
	border: 0;
}

.hdmovie2-report-followup[hidden] {
	display: none;
}

.hdmovie2-report-followup {
	width: 100%;
}

.hdmovie2-report-option {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 7px 0;
	border-bottom: 1px dotted #ddd;
	cursor: pointer;
}

.hdmovie2-report-option:last-child {
	border-bottom: 0;
}

.hdmovie2-report-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hdmovie2-report-check {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	border: 1px solid #777;
	border-radius: 3px;
	background: #fff;
}

.hdmovie2-report-option input:focus-visible + .hdmovie2-report-check {
	outline: 3px solid rgba(66, 142, 232, 0.35);
	outline-offset: 2px;
}

.hdmovie2-report-option input:checked + .hdmovie2-report-check {
	border-color: #1677ee;
	background: #1677ee;
}

.hdmovie2-report-option input:checked + .hdmovie2-report-check::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 6px;
	width: 6px;
	height: 11px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg);
}

.hdmovie2-report-option strong,
.hdmovie2-report-option small {
	display: block;
}

.hdmovie2-report-option strong {
	color: #5b5b5b;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}

.hdmovie2-report-option small {
	margin-top: 1px;
	color: #999;
	font-size: 12px;
	line-height: 1.35;
}

.hdmovie2-player-report textarea,
.hdmovie2-player-report input[type="email"] {
	display: block;
	width: 100%;
	margin-top: 10px;
	border: 1px solid #d6d6d6;
	border-radius: 0;
	background: #fff;
	color: #555;
	font: inherit;
}

.hdmovie2-player-report textarea {
	height: 80px;
	min-height: 80px;
	padding: 10px 15px;
	resize: vertical;
}

.hdmovie2-player-report input[type="email"] {
	height: 36px;
	padding: 0 15px;
}

.hdmovie2-report-submit {
	display: block;
	width: 100%;
	min-height: 36px;
	margin-top: 10px;
	padding: 7px 15px;
	border: 0;
	border-radius: 4px;
	background: #428ee8;
	color: #fff;
	font: inherit;
	font-size: 15px;
	cursor: pointer;
}

.hdmovie2-report-submit:hover,
.hdmovie2-report-submit:focus-visible {
	background: #2878d8;
}

.hdmovie2-report-submit:disabled {
	opacity: 0.62;
	cursor: wait;
}

.hdmovie2-report-honeypot {
	position: absolute !important;
	left: -10000px !important;
}

.hdmovie2-report-status {
	display: block;
	min-height: 0;
	margin-top: 8px;
	color: #666;
	font-size: 13px;
	text-align: center;
}

.hdmovie2-report-status:empty {
	display: none;
}

body.hdmovie2-report-open {
	overflow: hidden;
}

.hdmovie2-player-source {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 58px;
	margin: 0;
	padding: 16px 22px;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0;
	background: transparent;
	color: var(--hdmovie2-text);
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	cursor: pointer;
	transition: background-color 150ms ease, color 150ms ease;
}

.hdmovie2-player-source:last-child {
	border-bottom: 0;
}

.hdmovie2-player-source:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--hdmovie2-accent);
}

.hdmovie2-player-source.is-active,
.hdmovie2-player-source.is-active:hover {
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
}

.hdmovie2-player-source:focus-visible {
	z-index: 1;
	outline: 3px solid var(--hdmovie2-accent);
	outline-offset: -3px;
}

.hdmovie2-source-play {
	position: relative;
	flex: 0 0 21px;
	width: 21px;
	height: 21px;
	margin-right: 15px;
	border: 2px solid #7e8999;
	border-radius: 50%;
	color: #7e8999;
}

.hdmovie2-source-play span {
	position: absolute;
	top: 50%;
	left: 53%;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid currentColor;
	transform: translate(-50%, -50%);
}

.hdmovie2-player-source:hover .hdmovie2-source-play,
.hdmovie2-player-source.is-active .hdmovie2-source-play {
	border-color: currentColor;
	color: currentColor;
}

.hdmovie2-source-name {
	flex: 1 1 auto;
	font-size: 14px;
	font-weight: 600;
}

.hdmovie2-source-server {
	flex: 0 0 auto;
	margin-left: 16px;
	color: rgba(255, 255, 255, 0.42);
	font-size: 12px;
	font-weight: 400;
}

.hdmovie2-source-loader {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-left: 16px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-top-color: currentColor;
	border-radius: 50%;
	opacity: 0;
	animation: hdmovie2-player-spin 0.7s linear infinite;
}

.hdmovie2-player-source.is-loading .hdmovie2-source-loader {
	opacity: 1;
}

@keyframes hdmovie2-player-spin {
	to {
		transform: rotate(360deg);
	}
}

@supports not (aspect-ratio: 16 / 9) {
	.hdmovie2-player-stage {
		height: 0;
		padding-bottom: 56.25%;
	}
}

.hdmovie2-header-inner,
.hdmovie2-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 70px;
}

.hdmovie2-text-logo {
	flex: 0 0 auto;
	margin: 0;
	height: 70px;
	padding-inline: 17px;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.025);
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: var(--hdmovie2-logo-font-size, 38px);
	font-weight: 900;
	font-stretch: condensed;
	line-height: 1;
	letter-spacing: -0.045em;
	text-transform: uppercase;
}

.hdmovie2-text-logo a {
	display: inline-flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
}

.hdmovie2-logo-prefix,
.hdmovie2-logo-suffix {
	color: #ffc400;
}

.hdmovie2-logo-middle {
	color: #fff;
}

.hdmovie2-site-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 104;
}

.admin-bar .hdmovie2-site-header.is-sticky {
	top: 32px;
}

.hdmovie2-menu,
.hdmovie2-footer-menu {
	display: flex;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hdmovie2-menu a,
.hdmovie2-footer-menu a {
	text-decoration: none;
}

.hdmovie2-menu-toggle {
	display: none;
}

.hdmovie2-site-main {
	min-height: 65vh;
	padding-block: 0;
}

.hdmovie2-placeholder {
	padding: clamp(2rem, 8vw, 6rem);
	border: 1px solid #283245;
	border-radius: 0.75rem;
	background: var(--hdmovie2-surface);
	text-align: center;
}

.hdmovie2-movie-grid {
	display: grid;
	grid-template-columns: repeat(var(--hdmovie2-grid-desktop, 5), minmax(0, 1fr));
	gap: 1.25rem;
}

.hdmovie2-movie-module + .hdmovie2-movie-module {
	margin-top: 3rem;
}

.hdmovie2-home-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: stretch;
	gap: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-home-content {
	min-width: 0;
	padding: 0 30px 30px 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	container-name: hdmovie2-home;
	container-type: inline-size;
}

.hdmovie2-sidebar {
	min-width: 0;
	padding: 15px 30px 30px;
	color: rgba(255, 255, 255, 0.66);
}

.hdmovie2-glossary {
	background: var(--hdmovie2-inside-background, var(--hdmovie2-background));
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-glossary-scroll {
	overflow: hidden;
	width: 100%;
	background: var(--hdmovie2-inside-background, var(--hdmovie2-background));
}

.hdmovie2-glossary ul {
	display: grid;
	grid-template-columns: repeat(27, minmax(0, 1fr));
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hdmovie2-glossary a {
	display: block;
	padding: 17px 0 16px;
	border-bottom: 1px solid transparent;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	text-align: center;
	text-decoration: none;
}

.hdmovie2-glossary a:hover,
.hdmovie2-glossary a:focus-visible,
.hdmovie2-glossary a.is-active {
	padding-bottom: 15px;
	border-bottom-color: var(--hdmovie2-accent);
	color: #fff;
	font-weight: 600;
}

.hdmovie2-glossary-results {
	padding: 0 20px 35px;
}

.hdmovie2-glossary-results .hdmovie2-module-header {
	padding-inline: 0;
}

.hdmovie2-glossary-results .hdmovie2-module-header h1 {
	margin: 0;
	font-size: 20px;
	font-weight: 500;
}

.hdmovie2-glossary-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hdmovie2-sidebar-widget {
	margin: 0 0 1.25rem;
	padding: 0;
}

.hdmovie2-sidebar-widget .widget-title {
	position: relative;
	margin: 0 0 15px;
	padding: 0;
	border: 0;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 17px;
}

.widget_hdmovie2_genres .widget-title,
.widget_hdmovie2_release_years .widget-title {
	padding-right: 26px;
	color: #b8b8b8;
}

.hdmovie2-sidebar-widget .widget-title::before {
	display: none;
}

.widget_hdmovie2_genres .widget-title::after,
.widget_hdmovie2_release_years .widget-title::after {
	position: absolute;
	top: 50%;
	right: 3px;
	width: 0;
	height: 0;
	border-top: 7px solid #c8c8c8;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	content: "";
	transform: translateY(-35%);
}

.hdmovie2-sidebar-terms {
	margin: 0;
	padding: 0;
	list-style: none;
	scrollbar-color: transparent transparent;
	scrollbar-width: thin;
}

.hdmovie2-sidebar-terms:hover,
.hdmovie2-sidebar-terms:focus-within,
.hdmovie2-popular-list:hover,
.hdmovie2-popular-list:focus-within {
	scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.hdmovie2-sidebar-terms.is-scrolling {
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.hdmovie2-sidebar-terms::-webkit-scrollbar,
.hdmovie2-popular-list::-webkit-scrollbar {
	width: 6px;
}

.hdmovie2-sidebar-terms::-webkit-scrollbar-thumb,
.hdmovie2-popular-list::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: transparent;
}

.hdmovie2-sidebar-terms:hover::-webkit-scrollbar-thumb,
.hdmovie2-sidebar-terms:focus-within::-webkit-scrollbar-thumb,
.hdmovie2-popular-list:hover::-webkit-scrollbar-thumb,
.hdmovie2-popular-list:focus-within::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.28);
}

.hdmovie2-genre-list.is-scrolling {
	max-height: 259px;
}

.hdmovie2-genre-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	height: 37px;
	min-height: 37px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	line-height: 20px;
}

.hdmovie2-genre-list li:last-child {
	border-bottom: 0;
}

.hdmovie2-genre-list a,
.hdmovie2-year-list a {
	color: #b5b5b5;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: color 150ms ease, background-color 150ms ease;
}

.hdmovie2-genre-list a:hover,
.hdmovie2-genre-list a:focus-visible,
.hdmovie2-year-list a:hover,
.hdmovie2-year-list a:focus-visible {
	color: var(--hdmovie2-accent);
}

.hdmovie2-genre-list span {
	flex: 0 0 auto;
	color: #b8b8b8;
	font-size: 11px;
	font-style: normal;
}

.hdmovie2-year-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 37px;
	gap: 5px;
}

.hdmovie2-year-list.is-scrolling {
	max-height: 205px;
}

.hdmovie2-year-list li {
	height: 37px;
	min-width: 0;
	padding: 3px;
}

.hdmovie2-year-list a {
	display: block;
	padding: 5px 6px;
	background: rgba(0, 0, 0, 0.3);
	text-align: center;
}

.hdmovie2-year-list a:hover,
.hdmovie2-year-list a:focus-visible {
	background: var(--hdmovie2-accent);
	color: #fff;
}

.hdmovie2-popular-list {
	scrollbar-color: transparent transparent;
	scrollbar-width: thin;
}

.hdmovie2-popular-list.is-scrolling {
	max-height: 540px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.hdmovie2-popular-item {
	min-height: 90px;
	margin-bottom: 10px;
	border: 0;
	background: rgba(0, 0, 0, 0.3);
}

.hdmovie2-popular-item > a {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: 0;
	min-height: 90px;
	padding: 0;
	text-decoration: none;
}

.hdmovie2-popular-poster {
	display: block;
	overflow: hidden;
	width: 80px;
	height: 90px;
	background: rgba(255, 255, 255, 0.06);
}

.hdmovie2-popular-poster img {
	width: 100%;
	height: 120px;
	margin-top: -25px;
	object-fit: cover;
}

.hdmovie2-popular-data {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: flex-start;
	padding: 10px;
}

.hdmovie2-popular-data h3 {
	display: block;
	overflow: hidden;
	margin: 0;
	color: #d7d7d7;
	font-size: 13px;
	font-weight: 500;
	line-height: 18px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hdmovie2-popular-item > a:hover h3,
.hdmovie2-popular-item > a:focus-visible h3 {
	color: var(--hdmovie2-accent);
}

.hdmovie2-popular-meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	padding-top: 5px;
	color: #ababab;
	font-size: 13px;
	line-height: 24px;
}

.hdmovie2-popular-meta b {
	padding: 4px 7px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 3px;
	color: #b8b8b8;
	font-size: 13px;
	font-weight: 400;
	line-height: 13px;
}

.hdmovie2-sidebar-empty {
	margin: 0;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.875rem;
}

.hdmovie2-module-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin: 0;
	padding: 15px 0;
	line-height: 20px;
}

.hdmovie2-module-header h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
}

.hdmovie2-featured-module .hdmovie2-module-header h2 {
	padding-left: 12px;
	border-left: 3px solid var(--hdmovie2-accent);
	color: var(--hdmovie2-featured-heading-color, #fff);
}

.hdmovie2-latest-module .hdmovie2-module-header h2 {
	padding-left: 12px;
	border-left: 3px solid var(--hdmovie2-accent);
	color: var(--hdmovie2-latest-heading-color, #fff);
}

.hdmovie2-module-meta {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 500;
}

.hdmovie2-module-total {
	color: rgba(255, 255, 255, 0.55);
}

.hdmovie2-see-all {
	display: inline-block;
	margin-left: 6px;
	padding: 3px 8px;
	border-radius: 3px;
	background: var(--hdmovie2-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	text-transform: uppercase;
}

.hdmovie2-movie-card {
	min-width: 0;
}

.hdmovie2-movie-card-link {
	display: block;
	text-decoration: none;
}

.hdmovie2-movie-card-link:focus-visible {
	outline: 3px solid var(--hdmovie2-accent);
	outline-offset: 4px;
}

.hdmovie2-movie-card-poster {
	position: relative;
	overflow: hidden;
	aspect-ratio: 5 / 7;
	border-radius: 0;
	background: #252d3b;
}

.hdmovie2-movie-card-poster > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	backface-visibility: hidden;
	transform-origin: center;
	transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.hdmovie2-movie-card-link:hover .hdmovie2-movie-card-poster > img,
.hdmovie2-movie-card-link:focus-visible .hdmovie2-movie-card-poster > img {
	filter: blur(2px) brightness(0.3);
	transform: scale(1.2);
}

.hdmovie2-poster-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--hdmovie2-muted);
}

.hdmovie2-card-rating {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	margin-bottom: -40px;
	padding: 3px 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	line-height: 18px;
	text-shadow: 1px 0 #000;
	transition: margin-bottom 0.2s ease;
}

.hdmovie2-movie-card-link:hover .hdmovie2-card-rating,
.hdmovie2-movie-card-link:focus-visible .hdmovie2-card-rating {
	margin-bottom: 0;
}

.hdmovie2-featured-badge,
.hdmovie2-quality-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	color: #fff;
}

.hdmovie2-featured-badge {
	padding: 5px 10px;
	background: var(--hdmovie2-featured-badge-color, #ff2a2a);
	font-size: var(--hdmovie2-featured-badge-font-size, 10px);
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.4;
	text-transform: uppercase;
}

.hdmovie2-quality-badge {
	top: 5px;
	right: 5px;
	left: auto;
	padding: 5px 8px;
	border-radius: 3px;
	background: var(--hdmovie2-quality-badge-color, #cd2026);
	font-size: var(--hdmovie2-quality-badge-font-size, 12px);
	font-weight: 600;
	line-height: 1.2;
}

.hdmovie2-play-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	place-items: center;
	background: transparent;
	opacity: 0;
	pointer-events: none;
	transform: scale(1);
	transition: all 0.65s ease-in-out;
}

.hdmovie2-play-icon {
	display: grid;
	place-items: center;
	width: min(40%, var(--hdmovie2-play-size));
	height: auto;
	aspect-ratio: 1;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--hdmovie2-play-color);
	opacity: var(--hdmovie2-play-opacity);
	transform: none;
	transition: none;
}

.hdmovie2-play-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hdmovie2-default-play-glyph {
	display: block;
	width: 62%;
	height: 62%;
	background: currentColor;
	-webkit-mask: url("../icons/play.svg") center / contain no-repeat;
	mask: url("../icons/play.svg") center / contain no-repeat;
}

.hdmovie2-movie-card-link:hover .hdmovie2-play-overlay,
.hdmovie2-movie-card-link:focus-visible .hdmovie2-play-overlay {
	opacity: 1;
	transform: scale(0.75);
}

.hdmovie2-movie-card-link:hover .hdmovie2-play-icon,
.hdmovie2-movie-card-link:focus-visible .hdmovie2-play-icon {
	transform: none;
}

.hdmovie2-movie-card-title {
	width: 100%;
	margin: 15px 0 1px;
	overflow: hidden;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hdmovie2-card-year {
	display: block;
	color: var(--hdmovie2-muted);
	font-size: 12px;
	line-height: 1.5;
}

.hdmovie2-site-footer {
	background: var(--hdmovie2-outside-background, var(--hdmovie2-background));
	color: var(--hdmovie2-muted);
	margin-bottom: 90px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 0.5rem;
	left: 0.5rem;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: #fff;
	color: #111;
}

/* Final public interface. */
html {
	overflow-x: hidden;
}

body {
	overflow-wrap: break-word;
}

button,
input,
select {
	font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
	outline: 3px solid #72aaf5;
	outline-offset: 3px;
}

.hdmovie2-site-header {
	height: 70px;
	border-bottom: 0;
	background: rgba(15, 15, 15, 0.9);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
}

.hdmovie2-header-inner {
	position: relative;
	justify-content: flex-start;
	gap: 0;
	height: 70px;
	min-height: 70px;
}

.hdmovie2-primary-navigation {
	min-width: 0;
}

.hdmovie2-menu {
	gap: 0;
}

.hdmovie2-menu a {
	display: block;
	height: 70px;
	padding: 0 16px;
	color: var(--hdmovie2-muted);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 70px;
	white-space: nowrap;
}

.hdmovie2-menu a:hover,
.hdmovie2-menu .current-menu-item > a {
	color: var(--hdmovie2-text);
}

.hdmovie2-menu > li,
.hdmovie2-menu .sub-menu > li {
	position: relative;
}

.hdmovie2-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 30;
	display: none;
	width: 230px;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: rgba(10, 10, 10, 0.98);
	box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.52);
}

.hdmovie2-menu .sub-menu .sub-menu {
	top: -6px;
	left: 100%;
}

.hdmovie2-menu li:hover > .sub-menu,
.hdmovie2-menu li:focus-within > .sub-menu {
	display: block;
}

.hdmovie2-menu .sub-menu a {
	width: 100%;
	height: auto;
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.84rem;
	line-height: 1.35;
	white-space: normal;
}

.hdmovie2-menu .sub-menu li:last-child > a {
	border-bottom: 0;
}

.hdmovie2-menu .sub-menu a:hover,
.hdmovie2-menu .sub-menu .current-menu-item > a {
	background: #000;
	color: var(--hdmovie2-accent);
}

.hdmovie2-submenu-toggle {
	display: none;
}

@media (min-width: 801px) {
	.hdmovie2-menu .menu-item-has-children > a {
		position: relative;
		padding-right: 34px;
	}

	.hdmovie2-menu .menu-item-has-children > a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 15px;
		width: 7px;
		height: 7px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: translateY(-70%) rotate(45deg);
	}

	.hdmovie2-menu .sub-menu .menu-item-has-children > a::after {
		right: 14px;
		transform: translateY(-50%) rotate(-45deg);
	}
}

.hdmovie2-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #344052;
	border-radius: 50%;
	background: transparent;
	color: var(--hdmovie2-text);
	cursor: pointer;
}

.hdmovie2-header-search {
	flex: 0 0 340px;
	width: 340px;
	height: 70px;
	margin-left: auto;
	display: flex;
	align-items: flex-start;
	padding-top: 14px;
}

.hdmovie2-search-toggle {
	display: none;
}

.hdmovie2-header-search .hdmovie2-search-form {
	display: flex;
	width: 100%;
	height: 40px;
	gap: 0;
	flex-wrap: nowrap;
}

.hdmovie2-search-field,
.hdmovie2-archive-filters select {
	min-width: 0;
	min-height: 44px;
	border: 1px solid #3a4659;
	border-radius: 0.35rem;
	background: #0d1118;
	color: var(--hdmovie2-text);
}

.hdmovie2-search-field {
	flex: 1 1 auto;
	padding: 0.65rem 0.8rem;
}

.hdmovie2-header-search .hdmovie2-search-field {
	min-height: 40px;
	height: 40px;
	padding: 0 15px;
	border: 0;
	border-radius: 4px 0 0 4px;
	background: #262626;
	color: #ddd;
}

.hdmovie2-header-search .hdmovie2-search-submit {
	flex: 0 0 44px;
	width: 44px;
	min-height: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 0 4px 4px 0;
	background: #262626;
	color: #fff;
}

.hdmovie2-header-search .hdmovie2-search-field:focus,
.hdmovie2-header-search .hdmovie2-search-field:focus-visible,
.hdmovie2-header-search .hdmovie2-search-submit:focus,
.hdmovie2-header-search .hdmovie2-search-submit:focus-visible {
	outline: 0;
	border-color: transparent;
	box-shadow: none;
}

.hdmovie2-search-submit,
.hdmovie2-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.65rem 1rem;
	border: 1px solid var(--hdmovie2-accent);
	border-radius: 0.35rem;
	background: var(--hdmovie2-accent);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
}

.hdmovie2-button--muted {
	border-color: #3a4659;
	background: transparent;
}

.hdmovie2-page-header {
	margin-bottom: 2rem;
}

.hdmovie2-page-header h1 {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.7rem);
	line-height: 1.08;
}

/* Contact and request pages */
.hdmovie2-contact-page,
.hdmovie2-request-page {
	min-height: 560px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-contact-header,
.hdmovie2-request-header {
	padding: 34px 60px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-contact-header h1,
.hdmovie2-request-header h1 {
	margin: 0;
	color: #fff;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.25;
}

.hdmovie2-contact-intro,
.hdmovie2-request-intro {
	max-width: 850px;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	line-height: 1.55;
}

.hdmovie2-contact-intro > :first-child,
.hdmovie2-request-intro > :first-child {
	margin-top: 0;
}

.hdmovie2-contact-intro > :last-child,
.hdmovie2-request-intro > :last-child {
	margin-bottom: 0;
}

.hdmovie2-contact-body {
	padding: 42px 40px 48px;
}

.hdmovie2-contact-form,
.hdmovie2-form-notice {
	width: min(100%, 760px);
	margin-inline: auto;
}

.hdmovie2-form-notice {
	margin-top: 0;
	margin-bottom: 20px;
	padding: 11px 14px;
	border-left: 4px solid #408bea;
	background: rgba(64, 139, 234, 0.12);
	color: #dceaff;
	font-size: 14px;
}

.hdmovie2-form-notice.is-error {
	border-left-color: #e05252;
	background: rgba(224, 82, 82, 0.12);
	color: #ffd7d7;
}

.hdmovie2-contact-form p {
	margin: 0 0 16px;
}

.hdmovie2-contact-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.hdmovie2-contact-form label,
.hdmovie2-contact-form label small {
	display: block;
}

.hdmovie2-contact-form label {
	margin-bottom: 7px;
	color: #f5f6f8;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.hdmovie2-contact-form label span {
	color: #ff7777;
}

.hdmovie2-contact-form label small {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	font-weight: 400;
}

.hdmovie2-contact-form input,
.hdmovie2-contact-form textarea {
	display: block;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 3px;
	background: #07080a;
	color: #f4f6f9;
	font: inherit;
	font-size: 14px;
	transition: border-color 140ms ease, box-shadow 140ms ease;
}

.hdmovie2-contact-form input {
	height: 44px;
	padding: 9px 12px;
}

.hdmovie2-contact-form textarea {
	min-height: 112px;
	padding: 12px;
	resize: vertical;
}

.hdmovie2-contact-form input:focus,
.hdmovie2-contact-form textarea:focus {
	border-color: #408bea;
	box-shadow: 0 0 0 1px #408bea;
	outline: 0;
}

.hdmovie2-contact-form input::placeholder,
.hdmovie2-contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.38);
}

.hdmovie2-contact-form button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 10px 18px;
	border: 0;
	border-radius: 3px;
	background: #408bea;
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 140ms ease;
}

.hdmovie2-contact-form button:hover,
.hdmovie2-contact-form button:focus-visible {
	background: #2f78d6;
}

.hdmovie2-contact-trap {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.hdmovie2-request-comments .hdmovie2-comments-area {
	border-top: 0;
}

.hdmovie2-eyebrow {
	margin: 0 0 0.35rem;
	color: #72aaf5;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hdmovie2-archive-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
}

.hdmovie2-archive-module-header {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 38px 0;
}

.hdmovie2-archive-module-header::before,
.hdmovie2-archive-module-header::after {
	content: "";
	flex: 1 1 auto;
	height: 4px;
	background: rgba(255, 255, 255, 0.08);
}

.hdmovie2-archive-module-header h1 {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	border: 0;
	color: #fff;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1;
}

.hdmovie2-archive-recent-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 10px;
	padding: 8px 12px 8px 20px;
}

.hdmovie2-archive-recent-header::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 30px;
	background: #408bea;
	transform: translateY(-50%);
}

.hdmovie2-archive-recent-header h2 {
	margin: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
}

.hdmovie2-archive-recent-header span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
	font-weight: 600;
}

.hdmovie2-result-count,
.hdmovie2-empty-message {
	color: var(--hdmovie2-muted);
}

.hdmovie2-archive-filters {
	display: flex;
	align-items: end;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 2rem;
	padding: 1rem;
	border: 1px solid #283245;
	border-radius: 0.6rem;
	background: var(--hdmovie2-surface);
}

.hdmovie2-archive-filters label {
	flex: 1 1 145px;
}

.hdmovie2-archive-filters label > span {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--hdmovie2-muted);
	font-size: 0.78rem;
	font-weight: 700;
}

.hdmovie2-archive-filters select {
	width: 100%;
	padding: 0.55rem 2rem 0.55rem 0.7rem;
}

.hdmovie2-empty-state {
	padding: clamp(2rem, 6vw, 4rem);
	border: 1px solid #283245;
	border-radius: 0.6rem;
	background: var(--hdmovie2-surface);
	text-align: center;
}

.navigation.pagination {
	margin-top: 2.5rem;
}

.navigation.pagination .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0.35rem 0.7rem;
	border: 1px solid #344052;
	border-radius: 0.35rem;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--hdmovie2-accent);
	background: var(--hdmovie2-accent);
	color: #fff;
}

.hdmovie2-search-header .hdmovie2-search-form {
	max-width: 620px;
	margin-top: 1rem;
}

.hdmovie2-search-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: stretch;
	min-height: 760px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-search-content {
	min-width: 0;
	padding: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hdmovie2-search-title {
	padding: 15px 10px;
}

.hdmovie2-search-title h1 {
	margin: 0;
	padding-left: 10px;
	border-left: 4px solid #408bea;
	color: #f4f6f9;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
}

.hdmovie2-search-title h1 span {
	font-weight: 500;
}

.hdmovie2-search-page-form {
	margin-bottom: 10px;
}

.hdmovie2-search-page-form .hdmovie2-search-form {
	position: relative;
	display: flex;
	width: 100%;
	height: 50px;
	flex-wrap: nowrap;
	border-radius: 5px;
	background: #07080a;
}

.hdmovie2-search-page-form .hdmovie2-search-field {
	flex: 1 1 auto;
	width: 100%;
	min-height: 50px;
	padding: 14px 58px 14px 20px;
	border: 0;
	border-radius: 5px;
	background: transparent;
	color: #fff;
	font-size: 18px;
}

.hdmovie2-search-page-form .hdmovie2-search-field:focus,
.hdmovie2-search-page-form .hdmovie2-search-field:focus-visible {
	border: 0;
	box-shadow: inset 0 0 0 1px rgba(64, 139, 234, 0.72);
	outline: 0;
}

.hdmovie2-search-page-form .hdmovie2-search-submit {
	position: absolute;
	top: 0;
	right: 0;
	width: 54px;
	height: 50px;
	min-height: 50px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #c8cbd2;
}

.hdmovie2-search-page-form .hdmovie2-search-submit svg {
	width: 25px;
	height: 25px;
}

.hdmovie2-search-result {
	position: relative;
	min-height: 140px;
	padding: 15px 0 15px 130px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-search-result-image {
	position: absolute;
	top: 15px;
	left: 0;
	display: block;
	overflow: hidden;
	width: 110px;
	height: 110px;
	background: #08090b;
	color: #fff;
	text-decoration: none;
}

.hdmovie2-search-result-image img,
.hdmovie2-search-result-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.hdmovie2-search-result-image img {
	object-fit: cover;
	transition: filter 180ms ease, transform 180ms ease;
}

.hdmovie2-search-result:hover .hdmovie2-search-result-image img {
	filter: blur(1px) brightness(0.82);
	transform: scale(1.03);
}

.hdmovie2-search-result-placeholder {
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.45);
	font-size: 24px;
	font-weight: 800;
}

.hdmovie2-search-result-type {
	position: absolute;
	top: 0;
	right: 0;
	padding: 3px 6px;
	background: #0ab92d;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 14px;
	text-transform: uppercase;
}

.hdmovie2-search-result-details {
	min-width: 0;
}

.hdmovie2-search-result-details h2 {
	margin: 0 0 9px;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
}

.hdmovie2-search-result-details h2 a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.hdmovie2-search-result-details h2 a:hover,
.hdmovie2-search-result-details h2 a:focus-visible {
	color: #408bea;
}

.hdmovie2-search-result-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 22px;
	margin: -2px 0 8px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 14px;
}

.hdmovie2-search-result-rating {
	min-width: 70px;
	padding: 3px 7px;
	background: rgba(0, 0, 0, 0.5);
	font: 600 11px/16px Arial, sans-serif;
	text-align: center;
}

.hdmovie2-search-result-details p {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	font-weight: 300;
	line-height: 18px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.hdmovie2-search-content .navigation.pagination {
	margin: 25px 0 10px;
}

.hdmovie2-search-content .navigation.pagination .nav-links {
	justify-content: flex-start;
	gap: 10px;
}

.hdmovie2-search-content .page-numbers {
	min-width: 44px;
	min-height: 40px;
	padding: 8px 14px;
	border-color: rgba(255, 255, 255, 0.14);
	border-radius: 3px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.hdmovie2-search-content .page-numbers.current,
.hdmovie2-search-content .page-numbers:hover,
.hdmovie2-search-content .page-numbers:focus-visible {
	border-color: #408bea;
	background: #408bea;
	color: #fff;
}

.hdmovie2-search-empty {
	padding: 34px 10px;
	color: rgba(255, 255, 255, 0.58);
}

.hdmovie2-search-empty h2 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 18px;
}

.hdmovie2-movie-card-link {
	height: 100%;
}

.hdmovie2-movie-card-poster {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hdmovie2-movie-card-title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1.35;
}

.hdmovie2-single-main {
	padding-top: 0;
}

.hdmovie2-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: start;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-single-primary {
	min-width: 0;
	padding: 0 0 45px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hdmovie2-single-layout > .hdmovie2-sidebar {
	padding-top: 20px;
}

.hdmovie2-single-summary {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	padding: 25px;
	border-bottom: 3px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-single-poster {
	min-height: 0;
	overflow: hidden;
	background: #151515;
	box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.9);
}

.hdmovie2-single-poster img,
.hdmovie2-single-poster .hdmovie2-poster-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
}

.hdmovie2-single-poster .hdmovie2-poster-placeholder {
	display: grid;
	place-items: center;
	padding: 16px;
	color: var(--hdmovie2-muted);
	text-align: center;
}

.hdmovie2-single-facts h1 {
	margin: 0 0 7px;
	font-size: 30px;
	font-weight: 400;
	line-height: 32px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.hdmovie2-single-tagline {
	margin: 0 0 8px !important;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px !important;
	font-weight: 500;
	line-height: 1.4;
}

.hdmovie2-single-extra {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
}

.hdmovie2-single-facts .hdmovie2-single-extra a {
	color: inherit;
	text-decoration: none;
}

.hdmovie2-single-certification {
	font-weight: 600;
}

.hdmovie2-movie-rating {
	display: grid;
	grid-template-columns: 60px minmax(242px, 1fr) auto;
	gap: 0 14px;
	align-items: center;
	margin-top: 14px;
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-rating-average {
	display: grid;
	place-items: center;
	align-self: stretch;
	min-height: 55px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 27px;
	font-weight: 500;
	line-height: 1;
}

.hdmovie2-rating-center {
	min-width: 0;
}

.hdmovie2-rating-stars {
	display: flex;
	align-items: center;
	gap: 1px;
	min-width: 0;
}

.hdmovie2-rating-star {
	flex: 0 1 27px;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #3b3b40;
	font: inherit;
	font-size: 27px;
	line-height: 30px;
	cursor: pointer;
	transition: color 120ms ease, transform 120ms ease;
}

.hdmovie2-rating-star.is-on {
	color: #408bea;
}

.hdmovie2-rating-star:not(:disabled):hover,
.hdmovie2-rating-star:not(:disabled):focus-visible {
	color: #65a6f5;
	transform: scale(1.08);
}

.hdmovie2-rating-star:focus-visible {
	outline: 2px solid #65a6f5;
	outline-offset: 1px;
}

.hdmovie2-rating-star:disabled {
	cursor: default;
}

.hdmovie2-rating-votes {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	line-height: 18px;
}

.hdmovie2-rating-user-icon {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 3px;
	color: #d6d8df;
	vertical-align: -4px;
}

.hdmovie2-your-rating {
	padding: 7px 15px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
}

.hdmovie2-rating-status {
	grid-column: 2 / -1;
	min-height: 0;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
}

.hdmovie2-rating-status:empty {
	display: none;
}

.hdmovie2-single-genres {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	padding-top: 14px;
}

.hdmovie2-single-facts .hdmovie2-single-genres a {
	padding: 0 14px;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	line-height: 19px;
	text-decoration: none;
}

.hdmovie2-single-facts .hdmovie2-single-genres a:first-child {
	padding-left: 0;
	border-left: 0;
}

.hdmovie2-single-facts .hdmovie2-single-genres a:hover,
.hdmovie2-single-facts .hdmovie2-single-genres a:focus-visible {
	color: var(--hdmovie2-accent);
}

.hdmovie2-movie-tabs {
	border-bottom: 0;
}

.hdmovie2-tab-navigation {
	display: flex;
	align-items: center;
	gap: 0;
	padding: 12px 25px;
	border-bottom: 3px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-tab-button {
	padding: 10px 20px;
	border: 0;
	border-radius: 3px;
	background: transparent;
	color: rgba(255, 255, 255, 0.58);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	cursor: pointer;
	transition: background-color 140ms ease, color 140ms ease;
}

.hdmovie2-tab-button:hover,
.hdmovie2-tab-button:focus-visible {
	color: #fff;
}

.hdmovie2-tab-button:focus-visible {
	outline: 2px solid #65a6f5;
	outline-offset: 2px;
}

.hdmovie2-tab-button.is-active {
	background: #408bea;
	color: #fff;
}

.hdmovie2-tab-panel {
	padding: 25px 40px 0;
}

.hdmovie2-tab-panel[hidden] {
	display: none;
}

.hdmovie2-tab-panel h2 {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 500;
}

.hdmovie2-cast-panel h2:not(:first-child) {
	margin-top: 22px;
}

.hdmovie2-director-grid,
.hdmovie2-cast-grid {
	display: grid;
	gap: 0 28px;
}

.hdmovie2-director-grid {
	grid-template-columns: minmax(0, 1fr);
	max-width: 34%;
}

.hdmovie2-cast-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hdmovie2-person-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 82px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: inherit;
	text-decoration: none;
	transition: background-color 140ms ease;
}

a.hdmovie2-person-card:hover,
a.hdmovie2-person-card:focus-visible {
	background: rgba(255, 255, 255, 0.04);
}

a.hdmovie2-person-card:focus-visible {
	outline: 2px solid #65a6f5;
	outline-offset: -2px;
}

a.hdmovie2-person-card:hover .hdmovie2-person-data strong,
a.hdmovie2-person-card:focus-visible .hdmovie2-person-data strong {
	color: #408bea;
}

.hdmovie2-person-photo,
.hdmovie2-person-photo img,
.hdmovie2-person-placeholder {
	display: block;
	width: 64px;
	height: 64px;
}

.hdmovie2-person-photo {
	overflow: hidden;
	background: #e8ecf4;
}

.hdmovie2-person-photo img {
	object-fit: cover;
}

.hdmovie2-person-placeholder {
	display: grid;
	place-items: center;
	color: #cbd2df;
}

.hdmovie2-person-placeholder svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.hdmovie2-person-data {
	min-width: 0;
}

.hdmovie2-person-data strong,
.hdmovie2-person-data span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hdmovie2-info-fields {
	margin-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-info-field {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 0;
	padding: 15px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	line-height: 20px;
}

.hdmovie2-info-field:last-child {
	border-bottom: 0;
}

.hdmovie2-info-field > strong {
	color: #fff;
	font-weight: 500;
}

.hdmovie2-info-field > span {
	color: rgba(255, 255, 255, 0.58);
}

.hdmovie2-source-rating {
	display: inline-block;
	margin-right: 10px;
	padding: 4px 10px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-weight: 600;
}

.hdmovie2-source-rating > span {
	margin-right: 5px;
	color: #d9dbde;
}

.hdmovie2-source-votes {
	white-space: nowrap;
}

.hdmovie2-share {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 78px;
	padding: 18px 25px;
	border-top: 3px solid rgba(255, 255, 255, 0.08);
	border-bottom: 3px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-share-count {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 38px;
	padding-right: 18px;
	border-right: 2px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
	font-weight: 600;
}

.hdmovie2-share-count strong {
	color: #fff;
	font-size: 16px;
}

.hdmovie2-share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hdmovie2-share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 38px;
	padding: 8px 15px;
	border-radius: 3px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 20px;
	text-decoration: none;
	transition: filter 150ms ease, transform 150ms ease;
}

.hdmovie2-share-button b {
	display: inline-grid;
	place-items: center;
	min-width: 18px;
	font-size: 18px;
	font-style: normal;
	line-height: 18px;
}

.hdmovie2-share-button b svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hdmovie2-share-button b svg .is-fill {
	fill: currentColor;
	stroke: none;
}

.hdmovie2-share-button:hover,
.hdmovie2-share-button:focus-visible {
	color: #fff;
	filter: brightness(0.88);
	transform: translateY(-1px);
}

.hdmovie2-share-button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.hdmovie2-share-button--facebook { background: #4267a9; }
.hdmovie2-share-button--x { background: #151515; }
.hdmovie2-share-button--pinterest { background: #d11e31; }
.hdmovie2-share-button--whatsapp { background: #43c961; }
.hdmovie2-share-button--telegram { background: #279ed8; }

.hdmovie2-share-button--pinterest span,
.hdmovie2-share-button--whatsapp span,
.hdmovie2-share-button--x span,
.hdmovie2-share-button--telegram span {
	display: none;
}

.hdmovie2-share-button--pinterest,
.hdmovie2-share-button--whatsapp,
.hdmovie2-share-button--x,
.hdmovie2-share-button--telegram {
	width: 52px;
	padding-right: 10px;
	padding-left: 10px;
}

.hdmovie2-person-data strong {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.hdmovie2-person-data span {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
	line-height: 18px;
}

.hdmovie2-single-facts h2,
.hdmovie2-overview h2,
.hdmovie2-people h2 {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 500;
}

.hdmovie2-single-facts dl {
	margin: 0 0 16px;
}

.hdmovie2-single-facts dl > div {
	display: grid;
	grid-template-columns: minmax(105px, 0.34fr) 1fr;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
}

.hdmovie2-single-facts dt {
	font-weight: 600;
}

.hdmovie2-single-facts dd {
	margin: 0;
	color: var(--hdmovie2-muted);
}

.hdmovie2-single-facts p {
	margin: 8px 0;
	font-size: 13px;
}

.hdmovie2-single-facts a,
.hdmovie2-overview a,
.hdmovie2-people a {
	color: var(--hdmovie2-accent);
	text-decoration: none;
}

.hdmovie2-overview,
.hdmovie2-people,
.hdmovie2-related-movies {
	margin-top: 0;
	padding: 25px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-comments-area {
	padding: 30px 40px 44px;
	border-top: 3px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-comments-title,
.hdmovie2-comments-area .comment-reply-title {
	margin: 0 0 24px;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
}

.hdmovie2-comments-title {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.72);
}

.hdmovie2-comments-title svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #fff;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hdmovie2-reply-heading {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.hdmovie2-reply-heading .comment-reply-title {
	flex: 1 1 auto;
	margin: 0;
	line-height: 40px;
}

.hdmovie2-reply-heading > svg {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	fill: #408bea;
	stroke: #111216;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hdmovie2-comments-area #cancel-comment-reply-link {
	margin-left: 12px;
	color: #408bea;
	font-size: 12px;
	font-weight: 500;
}

.hdmovie2-comment-form p {
	margin: 0;
}

.hdmovie2-comment-form textarea,
.hdmovie2-comment-form input[type="text"],
.hdmovie2-comment-form input[type="email"] {
	display: block;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	background: #07080a;
	color: #f4f6f9;
	font: inherit;
	font-size: 14px;
	transition: border-color 140ms ease, box-shadow 140ms ease;
}

.hdmovie2-comment-form textarea {
	min-height: 106px;
	padding: 14px 15px;
	resize: vertical;
}

.hdmovie2-comment-form input[type="text"],
.hdmovie2-comment-form input[type="email"] {
	height: 48px;
	padding: 10px 12px;
}

.hdmovie2-comment-form textarea:focus,
.hdmovie2-comment-form input[type="text"]:focus,
.hdmovie2-comment-form input[type="email"]:focus {
	border-color: #408bea;
	box-shadow: 0 0 0 1px #408bea;
	outline: 0;
}

.hdmovie2-comment-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.hdmovie2-comment-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	margin-top: 10px;
}

.hdmovie2-comment-fields label,
.hdmovie2-comment-fields label strong,
.hdmovie2-comment-fields label small {
	display: block;
}

.hdmovie2-comment-fields label {
	margin-bottom: 10px;
}

.hdmovie2-comment-fields label strong {
	display: inline;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}

.hdmovie2-comment-fields .required {
	color: #ff6b6b;
}

.hdmovie2-comment-fields label small {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
}

.hdmovie2-comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 20px;
}

.hdmovie2-comment-form .comment-form-cookies-consent input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: #408bea;
}

.hdmovie2-comment-form .form-submit {
	margin-top: 22px;
}

.hdmovie2-comment-submit {
	min-width: 150px;
	min-height: 44px;
	padding: 10px 24px;
	border: 0;
	border-radius: 3px;
	background: #444449;
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 140ms ease;
}

.hdmovie2-comment-submit:hover,
.hdmovie2-comment-submit:focus-visible {
	background: #408bea;
}

.hdmovie2-comment-list,
.hdmovie2-comment-list .children {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hdmovie2-comment-list {
	margin-bottom: 28px;
}

.hdmovie2-comment-list .children {
	margin-left: 52px;
	padding-left: 22px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hdmovie2-comment-list .children .children {
	margin-left: 0;
	padding-left: 0;
	border-left: 0;
}

.hdmovie2-comment-list > .comment {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hdmovie2-comment-list > .comment:last-child {
	border-bottom: 0;
}

.hdmovie2-comment-list > .comment > .hdmovie2-comment-body {
	border-bottom: 0;
}

.hdmovie2-comment-body {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdmovie2-comment-avatar img {
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 5px;
}

.hdmovie2-comment-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	min-height: 24px;
	font-size: 14px;
}

.hdmovie2-comment-header strong,
.hdmovie2-comment-header strong a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.hdmovie2-comment-header strong a:hover,
.hdmovie2-comment-header strong a:focus-visible {
	color: #408bea;
	text-decoration: none;
}

.hdmovie2-comment-time,
.hdmovie2-comment-list .comment-reply-link {
	display: inline-block;
	padding: 3px 6px;
	border-radius: 1px;
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
	font-weight: 400;
}

.hdmovie2-comment-list .comment-reply-link:hover,
.hdmovie2-comment-list .comment-reply-link:focus-visible {
	background: #408bea;
	color: #fff;
}

.hdmovie2-comment-text {
	padding-top: 5px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 23px;
}

.hdmovie2-comment-text p {
	margin: 0 0 8px;
}

.hdmovie2-comment-moderation,
.hdmovie2-comments-closed {
	color: #ff8b8b;
	font-size: 13px;
}

.hdmovie2-comments-area .comment-navigation {
	display: flex;
	justify-content: space-between;
	margin: 0 0 24px;
}

.hdmovie2-comments-area .comment-navigation .nav-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}

.hdmovie2-comments-area .comment-navigation a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 3px;
	background: #202126;
	color: #408bea;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.hdmovie2-comments-area .comment-navigation a:hover,
.hdmovie2-comments-area .comment-navigation a:focus-visible {
	border-color: #408bea;
	background: #282b31;
}

.hdmovie2-breadcrumbs {
	padding: 14px 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	line-height: 20px;
}

.hdmovie2-breadcrumbs ol {
	display: flex;
	align-items: center;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
}

.hdmovie2-breadcrumbs li {
	display: flex;
	align-items: center;
	min-width: 0;
}

.hdmovie2-breadcrumbs li:not(:last-child)::after {
	content: "\2192";
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.48);
	font-weight: 700;
}

.hdmovie2-breadcrumbs a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.hdmovie2-breadcrumbs a:hover,
.hdmovie2-breadcrumbs a:focus-visible {
	color: #408bea;
	text-decoration: none;
}

.hdmovie2-breadcrumbs li:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
}

.hdmovie2-entry-content > :first-child {
	margin-top: 0;
}

.hdmovie2-entry-content > :last-child {
	margin-bottom: 0;
}

.hdmovie2-site-footer {
	border-top: 0;
}

.hdmovie2-footer-inner {
	min-height: 93px;
	padding-inline: 40px;
	border-top: 0;
	background: rgba(15, 15, 15, 0.9);
	box-shadow: 0 10px 25px -7px rgba(0, 0, 0, 0.7);
}

.hdmovie2-footer-copy {
	margin: 0;
	padding-block: 40px;
	font-size: 13px;
	line-height: 13px;
}

.hdmovie2-footer-navigation {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.hdmovie2-privacy-link {
	white-space: nowrap;
	text-decoration: none;
}

.hdmovie2-back-to-top {
	display: block;
	width: auto;
	height: auto;
	margin-left: auto;
	padding: 6px 15px;
	border: 0;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font: inherit;
	font-size: 18px;
	line-height: 18px;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.hdmovie2-back-to-top:hover,
.hdmovie2-back-to-top:focus-visible {
	background: var(--hdmovie2-accent);
}

.hdmovie2-back-to-top svg {
	display: block;
	width: 12px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hdmovie2-error-code {
	margin: 0;
	color: #72aaf5;
	font-size: clamp(4rem, 15vw, 8rem);
	font-weight: 800;
	line-height: 0.9;
}

.hdmovie2-placeholder .hdmovie2-search-form {
	max-width: 600px;
	margin: 1.5rem auto;
}

.hdmovie2-placeholder + .hdmovie2-movie-module {
	margin-top: 3rem;
}

@media (max-width: 1130px) {
	.hdmovie2-movie-grid {
		grid-template-columns: repeat(var(--hdmovie2-grid-tablet, 4), minmax(0, 1fr));
	}
}

@container hdmovie2-home (min-width: 760px) {
	.hdmovie2-movie-grid {
		grid-template-columns: repeat(var(--hdmovie2-grid-desktop, 5), minmax(0, 1fr));
	}
}

@container hdmovie2-home (min-width: 540px) and (max-width: 759px) {
	.hdmovie2-movie-grid {
		grid-template-columns: repeat(var(--hdmovie2-grid-tablet, 4), minmax(0, 1fr));
	}
}

@container hdmovie2-home (max-width: 539px) {
	.hdmovie2-movie-grid {
		grid-template-columns: repeat(var(--hdmovie2-grid-mobile, 3), minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.hdmovie2-archive-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.hdmovie2-glossary-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (max-width: 899px) {
	.hdmovie2-home-layout {
		grid-template-columns: 1fr;
	}

	.hdmovie2-search-layout {
		grid-template-columns: 1fr;
	}

	.hdmovie2-single-layout {
		grid-template-columns: 1fr;
	}

	.hdmovie2-single-primary {
		padding: 0 0 40px;
		border-right: 0;
	}

	.hdmovie2-sidebar {
		display: none;
	}

	.hdmovie2-home-content {
		padding: 0 20px 30px;
		border-right: 0;
	}

	.hdmovie2-director-grid {
		max-width: 50%;
	}

	.hdmovie2-cast-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) and (max-width: 1180px) and (orientation: portrait) {
	.hdmovie2-home-layout {
		grid-template-columns: 1fr;
	}

	.hdmovie2-single-layout {
		grid-template-columns: 1fr;
	}

	.hdmovie2-single-primary {
		border-right: 0;
	}

	.hdmovie2-sidebar {
		display: none;
	}

	.hdmovie2-home-content {
		padding: 0 20px 30px;
		border-right: 0;
	}
}

@media (max-width: 800px) {
	.hdmovie2-container {
		width: 100%;
	}

	.hdmovie2-player {
		scroll-margin-top: 52px;
	}

	.admin-bar .hdmovie2-player {
		scroll-margin-top: 98px;
	}

	.hdmovie2-home-layout {
		grid-template-columns: 1fr;
	}

	.hdmovie2-sidebar {
		display: none;
	}

	.hdmovie2-home-content {
		padding: 0 20px 30px;
		border-right: 0;
	}

	.hdmovie2-glossary-scroll {
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: thin;
	}

	.hdmovie2-glossary ul {
		width: 1260px;
	}

	.hdmovie2-glossary-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.hdmovie2-menu-toggle {
		grid-column: 1;
		grid-row: 1;
		display: inline-flex;
		width: 54px;
		height: 52px;
		border: 0;
		border-right: 1px solid #212121;
		border-radius: 0;
	}

	.hdmovie2-text-logo {
		grid-column: 2;
		grid-row: 1;
		justify-content: center;
		width: 100%;
		height: 52px;
		margin: 0;
		padding: 0 6px;
		background: transparent;
		font-size: min(var(--hdmovie2-logo-font-size, 38px), 30px);
		text-align: center;
	}

	.hdmovie2-text-logo a {
		max-width: 100%;
		padding: 7px 10px;
		overflow: hidden;
		background: rgba(255, 255, 255, 0.05);
		white-space: nowrap;
	}

	.hdmovie2-site-header,
	.hdmovie2-header-inner {
		height: 52px;
		min-height: 52px;
	}

	.hdmovie2-site-header {
		border-bottom: 1px solid #000;
		background: rgba(15, 15, 15, 0.99);
	}

	.hdmovie2-header-inner {
		display: grid;
		grid-template-columns: 54px minmax(0, 1fr) 54px;
		gap: 0;
	}

	.hdmovie2-menu-icon {
		position: relative;
		display: block;
		width: 20px;
		height: 16px;
	}

	.hdmovie2-menu-icon span {
		position: absolute;
		left: 0;
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 2px;
		background: #fff;
		transition: top 160ms ease, transform 160ms ease, opacity 120ms ease;
	}

	.hdmovie2-menu-icon span:nth-child(1) { top: 0; }
	.hdmovie2-menu-icon span:nth-child(2) { top: 7px; }
	.hdmovie2-menu-icon span:nth-child(3) { top: 14px; }

	.hdmovie2-menu-toggle[aria-expanded="true"] .hdmovie2-menu-icon span:nth-child(1) {
		top: 7px;
		transform: rotate(45deg);
	}

	.hdmovie2-menu-toggle[aria-expanded="true"] .hdmovie2-menu-icon span:nth-child(2) {
		opacity: 0;
	}

	.hdmovie2-menu-toggle[aria-expanded="true"] .hdmovie2-menu-icon span:nth-child(3) {
		top: 7px;
		transform: rotate(-45deg);
	}

	.hdmovie2-header-search {
		position: static;
		grid-column: 3;
		grid-row: 1;
		display: block;
		width: 54px;
		height: 52px;
		margin: 0;
		padding: 0;
		border-left: 1px solid #212121;
	}

	.hdmovie2-header-search .hdmovie2-search-field {
		display: none;
	}

	.hdmovie2-header-search .hdmovie2-search-form {
		display: none;
	}

	.hdmovie2-search-toggle {
		display: grid;
		place-items: center;
		width: 54px;
		height: 52px;
		padding: 0;
		border: 0;
		background: transparent;
		color: #fff;
		cursor: pointer;
	}

	.hdmovie2-search-toggle-icon {
		position: relative;
		display: grid;
		place-items: center;
		width: 22px;
		height: 22px;
	}

	.hdmovie2-search-open-icon {
		display: block;
	}

	.hdmovie2-search-close-icon {
		position: relative;
		display: none;
		width: 20px;
		height: 20px;
	}

	.hdmovie2-search-close-icon::before,
	.hdmovie2-search-close-icon::after {
		content: "";
		position: absolute;
		top: 9px;
		left: 0;
		width: 20px;
		height: 2px;
		border-radius: 2px;
		background: currentColor;
	}

	.hdmovie2-search-close-icon::before {
		transform: rotate(45deg);
	}

	.hdmovie2-search-close-icon::after {
		transform: rotate(-45deg);
	}

	.hdmovie2-header-search.is-search-open .hdmovie2-search-open-icon {
		display: none;
	}

	.hdmovie2-header-search.is-search-open .hdmovie2-search-close-icon {
		display: block;
	}

	.hdmovie2-header-search.is-search-open .hdmovie2-search-form {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 31;
		display: flex;
		width: 100%;
		height: 62px;
		padding: 10px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		background: var(--hdmovie2-inside-background, #101010);
		box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.5);
	}

	.hdmovie2-header-search.is-search-open .hdmovie2-search-field {
		display: block;
		height: 42px;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-right: 0;
		border-radius: 3px 0 0 3px;
		background: rgba(255, 255, 255, 0.07);
		color: var(--hdmovie2-text, #fff);
	}

	.hdmovie2-header-search.is-search-open .hdmovie2-search-field::placeholder {
		color: rgba(255, 255, 255, 0.55);
	}

	.hdmovie2-header-search.is-search-open .hdmovie2-search-submit {
		flex-basis: 48px;
		width: 48px;
		height: 42px;
		border-radius: 0 3px 3px 0;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-left: 0;
		background: rgba(255, 255, 255, 0.07);
		color: var(--hdmovie2-text, #fff);
	}

	.hdmovie2-primary-navigation {
		display: none;
		position: absolute;
		top: calc(100% - 1px);
		left: 0;
		right: 0;
		z-index: 30;
		max-height: calc(100vh - 52px);
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0;
		border: 0;
		background: #0a0a0a;
		box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.52);
	}

	.hdmovie2-primary-navigation.is-open {
		display: block;
	}

	.hdmovie2-menu {
		width: 100%;
		flex-direction: column;
	}

	.hdmovie2-menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.hdmovie2-menu > li > a {
		width: 100%;
		height: auto;
		padding: 17px 58px 17px 15px;
		color: rgba(255, 255, 255, 0.82);
		font-size: 1.05rem;
		line-height: 1.2;
		white-space: normal;
	}

	.hdmovie2-menu > li:not(.menu-item-has-children) > a {
		padding-right: 15px;
	}

	.hdmovie2-submenu-toggle {
		position: absolute;
		top: 0;
		right: 0;
		display: grid;
		place-items: center;
		width: 54px;
		height: 54px;
		padding: 0;
		border: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		background: transparent;
		color: rgba(255, 255, 255, 0.74);
		cursor: pointer;
	}

	.hdmovie2-submenu-toggle span {
		width: 9px;
		height: 9px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translate(-2px, -2px);
	}

	.hdmovie2-menu .is-submenu-open > .hdmovie2-submenu-toggle span {
		transform: rotate(225deg) translate(-1px, -1px);
	}

	.hdmovie2-menu li:hover > .sub-menu,
	.hdmovie2-menu li:focus-within > .sub-menu,
	.hdmovie2-menu .sub-menu {
		position: static !important;
		display: none !important;
		width: 100% !important;
	}

	.hdmovie2-menu li.is-submenu-open > ul.sub-menu {
		position: static !important;
		display: flex !important;
		flex-flow: row wrap !important;
		width: 100%;
		padding: 0 0 12px;
		background: #080808;
		box-shadow: none;
	}

	.hdmovie2-menu .sub-menu li {
		flex: 0 0 50% !important;
		width: 50% !important;
		max-width: 50% !important;
		min-width: 0;
	}

	.hdmovie2-menu .sub-menu a {
		padding: 7px 20px;
		border-bottom: 0;
		color: rgba(255, 255, 255, 0.62);
		font-size: 0.875rem;
		line-height: 1.25;
	}

	.hdmovie2-menu .sub-menu a::before {
		content: "-";
		margin-right: 9px;
		color: rgba(255, 255, 255, 0.5);
	}

	body {
		padding-top: 52px;
	}

	body.hdmovie2-mobile-menu-open {
		overflow: hidden;
	}

	.admin-bar .hdmovie2-site-header.is-sticky {
		top: 46px;
	}

	.hdmovie2-movie-grid {
		grid-template-columns: repeat(var(--hdmovie2-grid-tablet, 4), minmax(0, 1fr));
	}

	.hdmovie2-archive-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.hdmovie2-footer-inner,
	.hdmovie2-footer-navigation {
		align-items: flex-start;
		flex-direction: column;
	}

	.hdmovie2-footer-inner {
		padding-block: 1.5rem;
		padding-inline: 20px;
	}

	.hdmovie2-footer-copy {
		padding-block: 0;
	}

	.hdmovie2-back-to-top {
		margin-left: 0;
	}
}

@media (max-width: 640px) {
	.hdmovie2-archive-module-header {
		gap: 12px;
		padding: 25px 0;
	}

	.hdmovie2-archive-module-header::before,
	.hdmovie2-archive-module-header::after {
		height: 2px;
	}

	.hdmovie2-archive-module-header h1 {
		font-size: 24px;
	}

	.hdmovie2-archive-recent-header {
		padding: 6px 6px 6px 16px;
	}

	.hdmovie2-archive-recent-header::before {
		height: 26px;
	}

	.hdmovie2-archive-recent-header h2 {
		font-size: 18px;
	}

	.hdmovie2-search-content {
		padding: 10px;
		border-right: 0;
	}

	.hdmovie2-search-title {
		padding: 12px 0;
	}

	.hdmovie2-search-title h1 {
		font-size: 18px;
	}

	.hdmovie2-search-page-form .hdmovie2-search-form {
		display: flex;
		height: 50px;
		flex-wrap: nowrap;
	}

	.hdmovie2-search-page-form .hdmovie2-search-submit {
		position: absolute;
		flex: none;
	}

	.hdmovie2-search-result {
		min-height: 120px;
		padding-left: 110px;
	}

	.hdmovie2-search-result-image {
		width: 90px;
		height: 90px;
	}

	.hdmovie2-search-result-details h2 {
		font-size: 14px;
	}

	.hdmovie2-search-result-details p {
		-webkit-line-clamp: 2;
	}

	.hdmovie2-movie-rating {
		display: none;
	}

	.hdmovie2-tab-navigation {
		min-height: 0;
		padding: 10px;
	}

	.hdmovie2-tab-button {
		flex: 1 1 calc(50% - 4px);
		width: calc(50% - 4px);
		margin: 2px;
		padding: 10px 15px;
		text-align: center;
	}

	.hdmovie2-tab-panel {
		padding: 20px 10px 0;
	}

	.hdmovie2-info-field {
		grid-template-columns: minmax(0, 1fr);
		gap: 15px;
	}

	.hdmovie2-share {
		align-items: flex-start;
		gap: 14px;
		min-height: 0;
		padding: 16px 10px;
	}

	.hdmovie2-share-count {
		flex: 0 0 auto;
		gap: 8px;
		padding-right: 12px;
	}

	.hdmovie2-share-buttons {
		gap: 8px;
	}

	.hdmovie2-share-button {
		padding: 8px 11px;
	}

	.hdmovie2-share-button span {
		display: none;
	}

	.hdmovie2-share-button,
	.hdmovie2-share-button--pinterest,
	.hdmovie2-share-button--whatsapp,
	.hdmovie2-share-button--x,
	.hdmovie2-share-button--telegram {
		width: 40px;
	}

	.hdmovie2-comments-area {
		padding: 24px 10px 30px;
	}

	.hdmovie2-comments-title,
	.hdmovie2-comments-area .comment-reply-title {
		margin-bottom: 18px;
		font-size: 18px;
	}

	.hdmovie2-reply-heading {
		gap: 12px;
		margin-bottom: 18px;
	}

	.hdmovie2-reply-heading .comment-reply-title {
		margin: 0;
		line-height: 34px;
	}

	.hdmovie2-reply-heading > svg {
		width: 34px;
		height: 34px;
	}

	.hdmovie2-comment-fields {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.hdmovie2-comment-list .children {
		margin-left: 20px;
		padding-left: 12px;
	}

	.hdmovie2-comment-body {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 10px;
	}

	.hdmovie2-comment-avatar img {
		width: 44px;
		height: 44px;
	}

	.hdmovie2-comment-submit {
		width: 100%;
	}

	.hdmovie2-breadcrumbs {
		padding: 12px 10px;
	}

	.hdmovie2-player {
		margin: 0;
	}

	.hdmovie2-player-heading {
		flex-wrap: wrap;
		padding: 17px 18px;
	}

	.hdmovie2-player-heading-actions {
		gap: 10px;
	}

	.hdmovie2-player-sources {
		padding: 0;
	}

	.hdmovie2-player-source {
		min-height: 56px;
		padding: 16px;
	}

	.hdmovie2-player-report {
		padding: 14px 18px 22px;
	}

	.hdmovie2-report-modal {
		padding: 10px;
	}

	.hdmovie2-report-dialog {
		max-height: calc(100vh - 20px);
	}

	.hdmovie2-report-dialog > header {
		min-height: 54px;
		padding: 11px 16px;
	}

	.hdmovie2-report-dialog h3 {
		font-size: 17px;
	}

	.hdmovie2-report-option {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 8px;
		padding: 7px 0;
	}

	.hdmovie2-report-check {
		width: 20px;
		height: 20px;
	}

	.hdmovie2-report-option input:checked + .hdmovie2-report-check::after {
		top: 2px;
		left: 6px;
		width: 6px;
		height: 11px;
	}

	.hdmovie2-report-option strong {
		font-size: 15px;
	}

	.hdmovie2-report-option small {
		font-size: 12px;
	}

	.hdmovie2-player-report textarea {
		min-height: 76px;
	}

	.hdmovie2-single-summary {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 16px;
	}

	.hdmovie2-single-poster {
		width: 100%;
		max-width: 110px;
	}

	.hdmovie2-single-facts h1 {
		font-size: 24px;
		line-height: 27px;
	}

	.hdmovie2-single-tagline {
		font-size: 14px !important;
	}

	.hdmovie2-movie-rating {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 8px 10px;
		padding: 12px 0;
	}

	.hdmovie2-rating-average {
		min-height: 55px;
		font-size: 23px;
	}

	.hdmovie2-rating-star {
		flex-basis: 21px;
		font-size: 21px;
		line-height: 24px;
	}

	.hdmovie2-your-rating {
		grid-column: 2;
		justify-self: start;
	}

	.hdmovie2-rating-status {
		grid-column: 2;
	}

	.hdmovie2-player-cover-play {
		width: 62px;
		height: 62px;
	}

	.hdmovie2-single-primary .hdmovie2-related-movies .hdmovie2-movie-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hdmovie2-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hdmovie2-glossary-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hdmovie2-archive-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.hdmovie2-archive-filters label,
	.hdmovie2-archive-filters .hdmovie2-button {
		flex: 1 1 100%;
	}

	.hdmovie2-single-facts dl > div {
		grid-template-columns: 1fr;
		gap: 0.1rem;
	}

	.hdmovie2-search-form {
		flex-wrap: wrap;
	}

	.hdmovie2-search-submit {
		flex: 1 1 100%;
	}
}

@media (max-width: 640px) {
	.hdmovie2-contact-header,
	.hdmovie2-request-header {
		padding: 24px 16px 22px;
	}

	.hdmovie2-contact-header h1,
	.hdmovie2-request-header h1 {
		font-size: 24px;
	}

	.hdmovie2-contact-body {
		padding: 26px 16px 32px;
	}

	.hdmovie2-contact-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.hdmovie2-request-comments .hdmovie2-comments-area {
		padding-right: 16px;
		padding-left: 16px;
	}
}

@media (max-width: 540px) {
	.hdmovie2-home-content {
		padding: 0 10px 30px;
	}

	.hdmovie2-single-primary {
		padding: 0 0 35px;
	}

	.hdmovie2-single-summary,
	.hdmovie2-overview,
	.hdmovie2-people,
	.hdmovie2-related-movies {
		padding-right: 10px;
		padding-left: 10px;
	}

	.hdmovie2-module-header {
		padding-block: 10px;
	}

	.hdmovie2-home-content .hdmovie2-movie-grid {
		grid-template-columns: repeat(var(--hdmovie2-grid-mobile, 3), minmax(0, 1fr));
		gap: 10px;
	}

	.hdmovie2-tab-navigation {
		min-height: 0;
		padding: 10px;
	}

	.hdmovie2-tab-panel {
		padding: 20px 10px 0;
	}

	.hdmovie2-director-grid {
		max-width: none;
	}

	.hdmovie2-cast-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 400px) {
	.hdmovie2-single-summary {
		grid-template-columns: 90px minmax(0, 1fr);
		gap: 12px;
	}

	.hdmovie2-single-poster {
		max-width: 90px;
	}

	.hdmovie2-rating-star {
		flex-basis: 18px;
		font-size: 18px;
		line-height: 21px;
	}

	.hdmovie2-single-extra {
		column-gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
