/*
Theme Name: CINZO Streaming
Theme URI: https://example.com/cinzo
Author: CINZO
Author URI: https://example.com
Description: قالب عربي متكامل لمنصة أفلام ومسلسلات عمودية، مع محتوى مجاني، اشتراك بريمير، حسابات، إعلانات جانبية، ولوحة تحكم للمحتوى والدفع.
Version: 1.0.0
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 8.1
Text Domain: cinzo
Tags: entertainment, rtl-language-support, custom-logo, featured-images, responsive-layout
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--cinzo-red: #ed111c;
	--cinzo-red-dark: #a90811;
	--cinzo-bg: #050505;
	--cinzo-bg-soft: #0a0a0a;
	--cinzo-panel: #111;
	--cinzo-panel-2: #171717;
	--cinzo-line: rgba(255, 255, 255, .1);
	--cinzo-text: #fff;
	--cinzo-muted: #a8a8a8;
	--cinzo-sidebar: 92px;
	--cinzo-radius: 18px;
	--cinzo-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--cinzo-bg);
}

body.cinzo-body {
	margin: 0;
	background:
		radial-gradient(circle at 70% -10%, rgba(237, 17, 28, .12), transparent 35%),
		var(--cinzo-bg);
	color: var(--cinzo-text);
	font-family: "Cairo", Arial, sans-serif;
	direction: rtl;
	overflow-x: hidden;
}

body.admin-bar .cinzo-sidebar,
body.admin-bar .cinzo-mobile-header,
body.admin-bar .cinzo-topbar {
	top: 32px;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

img,
video,
iframe {
	display: block;
	max-width: 100%;
}

.cinzo-app-shell {
	min-height: 100vh;
}

.cinzo-sidebar {
	position: fixed;
	z-index: 80;
	top: 0;
	right: 0;
	bottom: 0;
	width: var(--cinzo-sidebar);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 22px 12px;
	background: rgba(5, 5, 5, .82);
	border-left: 1px solid var(--cinzo-line);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
}

.cinzo-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	min-height: 54px;
	margin-bottom: 32px;
}

.cinzo-brand img {
	width: 68px;
	height: auto;
	object-fit: contain;
	background: transparent;
}

.cinzo-nav {
	display: flex;
	flex-direction: column;
	gap: 9px;
	width: 100%;
}

.cinzo-nav a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 62px;
	gap: 3px;
	border-radius: 16px;
	color: #8f8f8f;
	font-size: 10px;
	transition: color .2s ease, background .2s ease, transform .2s ease;
}

.cinzo-nav a:hover,
.cinzo-nav a.active {
	color: #fff;
	background: rgba(255, 255, 255, .08);
	transform: translateY(-1px);
}

.cinzo-nav a.active::before {
	content: "";
	position: absolute;
	right: -12px;
	width: 3px;
	height: 28px;
	border-radius: 3px;
	background: var(--cinzo-red);
	box-shadow: 0 0 18px var(--cinzo-red);
}

.cinzo-nav-icon {
	font-size: 21px;
	line-height: 1;
}

.cinzo-sidebar-bottom {
	margin-top: auto;
}

.cinzo-icon-button,
.cinzo-avatar-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--cinzo-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, .05);
	color: #fff;
	cursor: pointer;
	transition: .2s ease;
}

.cinzo-icon-button:hover,
.cinzo-avatar-button:hover {
	background: var(--cinzo-red);
	border-color: var(--cinzo-red);
}

.cinzo-main-wrap {
	min-height: 100vh;
	margin-right: var(--cinzo-sidebar);
}

.cinzo-mobile-header {
	display: none;
}

.cinzo-topbar {
	position: absolute;
	z-index: 50;
	top: 0;
	right: var(--cinzo-sidebar);
	left: 0;
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 34px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .72), transparent);
	pointer-events: none;
}

.cinzo-topbar > * {
	pointer-events: auto;
}

.cinzo-search {
	position: relative;
	width: min(420px, 36vw);
}

.cinzo-search input {
	width: 100%;
	height: 46px;
	padding: 0 48px 0 16px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 999px;
	background: rgba(9, 9, 9, .6);
	color: #fff;
	outline: none;
	backdrop-filter: blur(16px);
}

.cinzo-search input:focus {
	border-color: rgba(237, 17, 28, .8);
	box-shadow: 0 0 0 3px rgba(237, 17, 28, .14);
}

.cinzo-search button {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #ddd;
	cursor: pointer;
}

.cinzo-topbar-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cinzo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	color: #fff;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cinzo-button:hover {
	transform: translateY(-2px);
}

.cinzo-button-red {
	background: linear-gradient(135deg, #f41b26, #bd0710);
	box-shadow: 0 12px 30px rgba(237, 17, 28, .25);
}

.cinzo-button-red:hover {
	box-shadow: 0 16px 38px rgba(237, 17, 28, .38);
}

.cinzo-button-ghost,
.cinzo-button-glass {
	border-color: rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(16px);
}

.cinzo-button-small {
	min-height: 40px;
	padding: 0 17px;
	font-size: 13px;
}

.cinzo-button-block {
	width: 100%;
}

.cinzo-user-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 42px;
	padding: 4px 13px 4px 6px;
	border: 1px solid var(--cinzo-line);
	border-radius: 999px;
	background: rgba(8, 8, 8, .65);
	font-size: 12px;
}

.cinzo-user-pill span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--cinzo-red);
	font-weight: 800;
}

.cinzo-premier-chip {
	padding: 7px 13px;
	border: 1px solid rgba(237, 17, 28, .4);
	border-radius: 999px;
	background: rgba(237, 17, 28, .12);
	color: #ff6670;
	font-size: 12px;
	font-weight: 800;
}

.cinzo-content {
	min-height: 80vh;
}

.cinzo-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	isolation: isolate;
}

.cinzo-hero-media {
	position: absolute;
	inset: 0;
	z-index: -3;
	background-image: var(--cinzo-hero-image);
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
	animation: cinzo-hero-in 1.2s ease both;
}

.cinzo-hero-shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, .25), rgba(5, 5, 5, .86) 72%, #050505 100%),
		linear-gradient(to top, #050505 0%, rgba(5, 5, 5, .72) 24%, transparent 66%),
		linear-gradient(to bottom, rgba(0, 0, 0, .45), transparent 28%);
}

.cinzo-hero-content {
	width: min(760px, 72vw);
	padding: 120px 5.5vw 110px;
	animation: cinzo-copy-in .8s .15s ease both;
}

.cinzo-eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
	color: #d0d0d0;
	font-size: 13px;
	font-weight: 700;
}

.cinzo-premier-label,
.cinzo-free-label {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
}

.cinzo-premier-label {
	background: var(--cinzo-red);
	color: #fff;
	box-shadow: 0 8px 24px rgba(237, 17, 28, .28);
}

.cinzo-free-label {
	border: 1px solid rgba(255, 255, 255, .25);
	background: rgba(255, 255, 255, .1);
}

.cinzo-hero h1,
.cinzo-detail-copy h1 {
	max-width: 860px;
	margin: 0;
	font-size: clamp(48px, 7.1vw, 118px);
	line-height: .98;
	letter-spacing: -.055em;
	text-wrap: balance;
	text-shadow: 0 10px 35px rgba(0, 0, 0, .4);
}

.cinzo-hero-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 11px;
	margin: 22px 0 16px;
	color: #d1d1d1;
	font-size: 14px;
	font-weight: 700;
}

.cinzo-hero-meta span:not(:last-child)::after {
	content: "•";
	margin-right: 11px;
	color: #666;
}

.cinzo-hero-meta .cinzo-age {
	padding: 3px 8px;
	border: 1px solid rgba(255, 255, 255, .26);
	border-radius: 6px;
}

.cinzo-hero-meta .cinzo-age::after {
	display: none;
}

.cinzo-hero-content > p,
.cinzo-detail-copy > p {
	max-width: 640px;
	margin: 0 0 28px;
	color: #d0d0d0;
	font-size: clamp(15px, 1.35vw, 19px);
	line-height: 1.95;
	text-shadow: 0 3px 12px #000;
}

.cinzo-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cinzo-scroll-cue {
	position: absolute;
	bottom: 32px;
	left: 34px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #a8a8a8;
	font-size: 11px;
	transform: rotate(-90deg) translateX(-100%);
	transform-origin: left bottom;
}

.cinzo-scroll-cue span {
	width: 34px;
	height: 1px;
	background: #777;
}

.cinzo-hero-empty {
	background:
		radial-gradient(circle at 70% 20%, rgba(237, 17, 28, .3), transparent 25%),
		linear-gradient(135deg, #151515, #050505 65%);
}

.cinzo-home-sections {
	position: relative;
	z-index: 3;
	margin-top: -48px;
	padding: 0 4vw 60px;
}

.cinzo-content-row {
	margin-bottom: 56px;
}

.cinzo-content-row > header,
.cinzo-premier-library > header,
.cinzo-account-payments > header,
.cinzo-watch-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.cinzo-content-row h2,
.cinzo-premier-library h2,
.cinzo-account-payments h2,
.cinzo-watch-header h2,
.cinzo-story-section h2 {
	margin: 2px 0 0;
	font-size: clamp(24px, 2.5vw, 38px);
	letter-spacing: -.03em;
}

.cinzo-section-kicker {
	color: var(--cinzo-red);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
}

.cinzo-row-tools {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cinzo-row-tools > a {
	margin-left: 8px;
	color: #aaa;
	font-size: 12px;
}

.cinzo-row-tools button {
	width: 38px;
	height: 38px;
	border: 1px solid var(--cinzo-line);
	border-radius: 50%;
	background: #121212;
	color: #fff;
	cursor: pointer;
}

.cinzo-card-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: clamp(150px, 14vw, 215px);
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 6px 2px 18px;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

.cinzo-card-track::-webkit-scrollbar {
	display: none;
}

.cinzo-title-card {
	min-width: 0;
	scroll-snap-align: start;
}

.cinzo-title-card > a {
	display: block;
}

.cinzo-card-poster {
	position: relative;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 17px;
	background: #111;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .24);
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.cinzo-card-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease, filter .3s ease;
}

.cinzo-title-card:hover .cinzo-card-poster {
	transform: translateY(-7px) scale(1.018);
	border-color: rgba(237, 17, 28, .42);
	box-shadow: 0 22px 50px rgba(0, 0, 0, .5);
}

.cinzo-title-card:hover .cinzo-card-poster img {
	transform: scale(1.06);
	filter: brightness(.68);
}

.cinzo-card-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent 47%);
}

.cinzo-card-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	background: rgba(0, 0, 0, .38);
	opacity: 0;
	transform: translate(-50%, -40%) scale(.82);
	backdrop-filter: blur(12px);
	transition: .25s ease;
}

.cinzo-title-card:hover .cinzo-card-play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.cinzo-card-badge {
	position: absolute;
	top: 11px;
	right: 11px;
	padding: 5px 8px;
	border-radius: 999px;
	background: var(--cinzo-red);
	font-size: 9px;
	font-weight: 900;
	box-shadow: 0 6px 18px rgba(237, 17, 28, .28);
}

.cinzo-card-badge-free {
	background: rgba(8, 8, 8, .78);
	border: 1px solid rgba(255, 255, 255, .2);
	box-shadow: none;
}

.cinzo-card-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle, rgba(237, 17, 28, .35), transparent 45%),
		#111;
	font-size: 70px;
	font-weight: 900;
	color: var(--cinzo-red);
}

.cinzo-card-info {
	padding: 11px 4px 0;
}

.cinzo-card-info h3 {
	overflow: hidden;
	margin: 0 0 4px;
	font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.cinzo-card-info p {
	display: flex;
	gap: 9px;
	margin: 0;
	color: #888;
	font-size: 10px;
}

.cinzo-library-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
	gap: 28px 18px;
	padding: 28px 4vw 70px;
}

.cinzo-page-head {
	min-height: 360px;
	display: flex;
	align-items: flex-end;
	padding: 130px 5vw 48px;
	background:
		linear-gradient(to top, #050505, transparent),
		radial-gradient(circle at 75% 20%, rgba(237, 17, 28, .25), transparent 35%),
		#111;
}

.cinzo-page-head h1 {
	margin: 6px 0 0;
	font-size: clamp(42px, 6vw, 88px);
	line-height: 1.05;
	letter-spacing: -.05em;
}

.cinzo-page-head span {
	color: var(--cinzo-red);
	font-size: 12px;
	font-weight: 900;
}

.cinzo-page-head p {
	max-width: 620px;
	color: #bbb;
	line-height: 1.9;
}

.cinzo-pagination {
	padding: 0 4vw 70px;
}

.cinzo-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.cinzo-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--cinzo-line);
	border-radius: 12px;
	background: #111;
}

.cinzo-pagination .current {
	background: var(--cinzo-red);
	border-color: var(--cinzo-red);
}

.cinzo-detail-hero {
	position: relative;
	min-height: 83svh;
	display: flex;
	align-items: flex-end;
	background-image: var(--cinzo-hero-image);
	background-size: cover;
	background-position: center;
}

.cinzo-detail-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, #050505 0%, rgba(5, 5, 5, .7) 32%, transparent 72%),
		linear-gradient(90deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .82) 78%);
}

.cinzo-detail-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 220px minmax(0, 760px);
	align-items: end;
	gap: 34px;
	width: 100%;
	padding: 130px 5vw 70px;
}

.cinzo-detail-poster {
	width: 220px;
	aspect-ratio: 9 / 16;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 20px;
	box-shadow: var(--cinzo-shadow);
}

.cinzo-detail-copy h1 {
	font-size: clamp(46px, 6vw, 92px);
}

.cinzo-watch-section,
.cinzo-story-section {
	padding: 54px 5vw;
}

.cinzo-watch-section {
	background:
		radial-gradient(circle at 90% 10%, rgba(237, 17, 28, .09), transparent 30%),
		#070707;
}

.cinzo-preview-notice {
	padding: 9px 13px;
	border: 1px solid rgba(237, 17, 28, .35);
	border-radius: 10px;
	background: rgba(237, 17, 28, .1);
	color: #ff8d93;
	font-size: 12px;
}

.cinzo-player-shell {
	position: relative;
	width: min(460px, 100%);
	aspect-ratio: 9 / 16;
	overflow: hidden;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 24px;
	background: #000;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.cinzo-player-shell.cinzo-player-horizontal {
	width: min(1180px, 100%);
	aspect-ratio: 16 / 9;
}

.cinzo-main-video,
.cinzo-video,
.cinzo-player-shell iframe {
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
	background: #000;
}

.cinzo-player-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
	height: 100%;
	padding: 30px;
	text-align: center;
}

.cinzo-player-empty > div {
	display: grid;
	place-items: center;
	width: 90px;
	height: 90px;
	border-radius: 28px;
	background: var(--cinzo-red);
	font-size: 52px;
	font-weight: 900;
}

.cinzo-player-empty h3 {
	margin: 0;
}

.cinzo-player-empty a:not(.cinzo-button) {
	color: #ff7d84;
	text-decoration: underline;
}

.cinzo-episodes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 18px;
}

.cinzo-episode-card {
	min-width: 0;
}

.cinzo-episode-open {
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	text-align: right;
	cursor: pointer;
}

.cinzo-episode-open:disabled {
	cursor: not-allowed;
	opacity: .45;
}

.cinzo-episode-image {
	position: relative;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border: 1px solid var(--cinzo-line);
	border-radius: 17px;
	background: #111;
}

.cinzo-episode-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease, filter .35s ease;
}

.cinzo-episode-open:hover img {
	transform: scale(1.05);
	filter: brightness(.58);
}

.cinzo-episode-image > span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .55);
	transform: translate(-50%, -50%);
	backdrop-filter: blur(10px);
}

.cinzo-episode-image > b {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--cinzo-red);
	font-size: 10px;
}

.cinzo-episode-open > div:last-child {
	padding: 10px 3px 0;
}

.cinzo-episode-open small {
	color: var(--cinzo-red);
	font-weight: 800;
}

.cinzo-episode-open h3 {
	margin: 4px 0 0;
	font-size: 15px;
}

.cinzo-story-section {
	max-width: 1000px;
}

.cinzo-story-content {
	color: #c3c3c3;
	font-size: 16px;
	line-height: 2;
}

.cinzo-generic-content {
	max-width: 980px;
	margin: 0 auto;
	padding: 48px 5vw 90px;
	color: #d1d1d1;
	line-height: 2;
}

.cinzo-account-guest {
	display: grid;
	place-items: center;
	padding: 42px 5vw 90px;
}

.cinzo-account-grid {
	display: grid;
	grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.3fr);
	gap: 22px;
	padding: 36px 5vw;
}

.cinzo-account-card,
.cinzo-checkout-card {
	padding: clamp(24px, 3vw, 42px);
	border: 1px solid var(--cinzo-line);
	border-radius: 26px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .04), transparent),
		#101010;
	box-shadow: var(--cinzo-shadow);
}

.cinzo-profile-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.cinzo-profile-avatar,
.cinzo-account-icon {
	display: grid;
	place-items: center;
	width: 88px;
	height: 88px;
	margin-bottom: 18px;
	border-radius: 28px;
	background: linear-gradient(135deg, #ff2c36, #95050d);
	font-size: 38px;
	font-weight: 900;
	box-shadow: 0 18px 45px rgba(237, 17, 28, .25);
}

.cinzo-profile-card h2,
.cinzo-subscription-card h2 {
	margin: 0 0 6px;
	font-size: 28px;
}

.cinzo-profile-card p {
	margin: 0 0 22px;
	color: #aaa;
}

.cinzo-text-button {
	padding: 7px;
	border: 0;
	background: transparent;
	color: #aaa;
	cursor: pointer;
	text-decoration: underline;
}

.cinzo-subscription-card {
	position: relative;
	overflow: hidden;
}

.cinzo-subscription-card::after {
	content: "C";
	position: absolute;
	left: -15px;
	bottom: -65px;
	color: rgba(237, 17, 28, .08);
	font-size: 230px;
	font-weight: 900;
	line-height: 1;
}

.cinzo-subscription-card.active {
	border-color: rgba(50, 205, 107, .4);
}

.cinzo-subscription-card p,
.cinzo-account-card > p {
	color: #b7b7b7;
	line-height: 1.8;
}

.cinzo-expiry {
	position: relative;
	z-index: 1;
	margin-top: 24px;
	padding: 13px 15px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
}

.cinzo-price {
	position: relative;
	z-index: 1;
	display: block;
	margin: 22px 0;
	font-size: 42px;
}

.cinzo-account-payments {
	padding: 35px 5vw 90px;
}

.cinzo-payment-list {
	overflow: hidden;
	border: 1px solid var(--cinzo-line);
	border-radius: 20px;
	background: #101010;
}

.cinzo-payment-list > div {
	display: grid;
	grid-template-columns: 140px 120px 150px minmax(160px, 1fr);
	align-items: center;
	gap: 16px;
	padding: 17px 20px;
	border-bottom: 1px solid var(--cinzo-line);
}

.cinzo-payment-list > div:last-child {
	border-bottom: 0;
}

.cinzo-payment-status {
	width: max-content;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(255, 190, 20, .12);
	color: #ffc247;
	font-size: 11px;
	font-weight: 800;
}

.status-paid {
	background: rgba(43, 207, 105, .12);
	color: #57df8c;
}

.status-rejected,
.status-failed {
	background: rgba(237, 17, 28, .12);
	color: #ff7179;
}

.cinzo-premier-hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
	align-items: center;
	gap: 6vw;
	overflow: hidden;
	padding: 120px 7vw 70px;
	background:
		radial-gradient(circle at 20% 45%, rgba(237, 17, 28, .28), transparent 25%),
		linear-gradient(135deg, #181818, #050505 65%);
}

.cinzo-premier-glow {
	position: absolute;
	top: 0;
	left: 20%;
	width: 44vw;
	height: 44vw;
	border-radius: 50%;
	background: rgba(237, 17, 28, .13);
	filter: blur(90px);
	pointer-events: none;
}

.cinzo-premier-copy,
.cinzo-checkout-card {
	position: relative;
	z-index: 1;
}

.cinzo-premier-copy h1 {
	margin: 18px 0;
	font-size: clamp(54px, 7.4vw, 116px);
	line-height: 1;
	letter-spacing: -.06em;
}

.cinzo-premier-copy > p {
	max-width: 640px;
	color: #c3c3c3;
	font-size: 17px;
	line-height: 2;
}

.cinzo-premier-price {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 24px 0;
}

.cinzo-premier-price > strong {
	font-size: 66px;
	line-height: 1;
	color: var(--cinzo-red);
}

.cinzo-premier-price > span {
	display: flex;
	flex-direction: column;
	font-weight: 800;
}

.cinzo-premier-price small {
	color: #888;
	font-size: 10px;
	font-weight: 500;
}

.cinzo-premier-copy ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 22px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.cinzo-premier-copy li::before {
	content: "✓";
	margin-left: 8px;
	color: var(--cinzo-red);
	font-weight: 900;
}

.cinzo-checkout-card {
	max-height: calc(100svh - 150px);
	overflow-y: auto;
	background: rgba(15, 15, 15, .88);
	backdrop-filter: blur(24px);
}

.cinzo-checkout-card h2 {
	margin-top: 0;
	font-size: 27px;
}

.cinzo-checkout-card label,
.cinzo-auth-form label,
.cinzo-manual-payment > label:not(.cinzo-transfer-option) {
	display: grid;
	gap: 7px;
	margin-bottom: 14px;
	color: #c7c7c7;
	font-size: 12px;
	font-weight: 700;
}

.cinzo-checkout-card input,
.cinzo-auth-form input,
.cinzo-manual-payment input[type="text"],
.cinzo-manual-payment input[type="file"] {
	width: 100%;
	min-height: 47px;
	padding: 0 14px;
	border: 1px solid var(--cinzo-line);
	border-radius: 12px;
	background: #090909;
	color: #fff;
	outline: none;
}

.cinzo-checkout-card input:focus,
.cinzo-auth-form input:focus {
	border-color: var(--cinzo-red);
	box-shadow: 0 0 0 3px rgba(237, 17, 28, .12);
}

.cinzo-payment-method {
	padding: 18px;
	border: 1px solid var(--cinzo-line);
	border-radius: 18px;
	background: #0b0b0b;
}

.cinzo-payment-method h3 {
	margin: 0 0 4px;
}

.cinzo-payment-method p {
	margin: 0 0 16px;
	color: #999;
	font-size: 12px;
	line-height: 1.7;
}

.cinzo-payment-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 22px 0;
	color: #777;
	font-size: 11px;
}

.cinzo-payment-divider::before,
.cinzo-payment-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--cinzo-line);
}

.cinzo-transfer-option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	padding: 13px;
	border: 1px solid var(--cinzo-line);
	border-radius: 13px;
	background: #0b0b0b;
	cursor: pointer;
}

.cinzo-transfer-option input {
	width: auto;
	min-height: 0;
	margin-top: 5px;
}

.cinzo-transfer-option span {
	display: grid;
	gap: 4px;
}

.cinzo-transfer-option code {
	color: #ff7e85;
	direction: ltr;
	text-align: left;
}

.cinzo-transfer-option small {
	color: #aaa;
	line-height: 1.6;
}

.cinzo-checkout-success {
	text-align: center;
}

.cinzo-checkout-success > div {
	display: grid;
	place-items: center;
	width: 82px;
	height: 82px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #24b85d;
	font-size: 40px;
	font-weight: 900;
}

.cinzo-premier-library {
	padding: 65px 4vw 90px;
}

.cinzo-alert {
	margin: 18px 5vw;
	padding: 13px 16px;
	border-radius: 12px;
	font-size: 13px;
}

.cinzo-alert-success {
	border: 1px solid rgba(43, 207, 105, .3);
	background: rgba(43, 207, 105, .1);
	color: #7ff0a9;
}

.cinzo-alert-error {
	border: 1px solid rgba(237, 17, 28, .3);
	background: rgba(237, 17, 28, .1);
	color: #ff838a;
}

.cinzo-form-message {
	min-height: 20px;
	margin-top: 10px;
	color: #ff848a;
	font-size: 12px;
	line-height: 1.5;
}

.cinzo-form-message.success {
	color: #69dc94;
}

.cinzo-empty-state,
.cinzo-error-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 330px;
	padding: 40px;
	text-align: center;
	border: 1px dashed rgba(255, 255, 255, .14);
	border-radius: 24px;
	background: #0d0d0d;
}

.cinzo-error-page {
	min-height: 85svh;
	border: 0;
}

.cinzo-error-code {
	color: var(--cinzo-red);
	font-size: clamp(90px, 18vw, 240px);
	font-weight: 900;
	line-height: 1;
	opacity: .85;
}

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

.cinzo-modal {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 18px;
}

.cinzo-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .78);
	backdrop-filter: blur(12px);
}

.cinzo-modal-card {
	position: relative;
	z-index: 1;
	width: min(470px, 100%);
	max-height: calc(100svh - 36px);
	overflow-y: auto;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 26px;
	background:
		radial-gradient(circle at 90% 0%, rgba(237, 17, 28, .14), transparent 30%),
		#111;
	box-shadow: 0 35px 100px rgba(0, 0, 0, .75);
	animation: cinzo-modal-in .24s ease both;
}

.cinzo-modal-close {
	position: absolute;
	top: 13px;
	left: 13px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--cinzo-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, .05);
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}

.cinzo-auth-logo {
	width: 110px;
	height: 55px;
	object-fit: contain;
	margin: 0 auto 13px;
	background: transparent;
}

.cinzo-auth-card h2,
.cinzo-adblock-card h2,
.cinzo-gate-card h2 {
	margin: 0 0 18px;
	text-align: center;
}

.cinzo-auth-tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px;
	margin-bottom: 20px;
	padding: 5px;
	border-radius: 14px;
	background: #080808;
}

.cinzo-auth-tabs button {
	height: 39px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #888;
	cursor: pointer;
}

.cinzo-auth-tabs button.active {
	background: #1b1b1b;
	color: #fff;
}

.cinzo-auth-form {
	display: none;
}

.cinzo-auth-form.active {
	display: block;
}

.cinzo-auth-form .cinzo-check {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cinzo-auth-form .cinzo-check input {
	width: auto;
	min-height: auto;
}

.cinzo-adblock-card,
.cinzo-gate-card {
	text-align: center;
}

.cinzo-adblock-icon,
.cinzo-gate-mark {
	display: grid;
	place-items: center;
	width: 82px;
	height: 82px;
	margin: 0 auto 18px;
	border-radius: 26px;
	background: var(--cinzo-red);
	font-size: 42px;
	font-weight: 900;
}

.cinzo-adblock-card p,
.cinzo-gate-card p {
	color: #bbb;
	line-height: 1.9;
}

.cinzo-gate-card > strong {
	display: block;
	margin: 18px 0;
	color: var(--cinzo-red);
	font-size: 42px;
}

.cinzo-episode-modal-card {
	width: min(560px, 100%);
}

.cinzo-episode-modal-card [data-episode-modal-player] {
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: 18px;
	background: #000;
}

.cinzo-episode-modal-card video,
.cinzo-episode-modal-card iframe {
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
}

.cinzo-toast {
	position: fixed;
	z-index: 100000;
	bottom: 24px;
	left: 24px;
	max-width: min(380px, calc(100vw - 30px));
	padding: 13px 17px;
	border: 1px solid var(--cinzo-line);
	border-radius: 13px;
	background: #151515;
	color: #fff;
	box-shadow: var(--cinzo-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: .25s ease;
}

.cinzo-toast.show {
	opacity: 1;
	transform: translateY(0);
}

.cinzo-side-ad {
	position: fixed;
	z-index: 70;
	top: 50%;
	width: 120px;
	overflow: hidden;
	border: 1px solid var(--cinzo-line);
	border-radius: 16px;
	background: #111;
	box-shadow: var(--cinzo-shadow);
	transform: translateY(-50%);
}

.cinzo-side-ad img {
	width: 100%;
	height: auto;
}

.cinzo-side-ad > span {
	position: absolute;
	top: 5px;
	right: 5px;
	padding: 2px 5px;
	border-radius: 4px;
	background: rgba(0, 0, 0, .65);
	color: #ccc;
	font-size: 8px;
}

.cinzo-side-ad-left {
	left: 12px;
}

.cinzo-side-ad-right {
	right: calc(var(--cinzo-sidebar) + 12px);
}

.cinzo-ad-bait {
	position: fixed;
	left: -9999px;
	width: 1px;
	height: 1px;
}

.cinzo-footer {
	display: grid;
	grid-template-columns: 1.2fr .8fr auto;
	align-items: center;
	gap: 28px;
	padding: 45px 5vw 35px;
	border-top: 1px solid var(--cinzo-line);
	background: #060606;
	color: #777;
	font-size: 12px;
}

.cinzo-footer img {
	width: 110px;
	height: 50px;
	object-fit: contain;
	background: transparent;
}

.cinzo-footer p {
	max-width: 430px;
	line-height: 1.8;
}

.cinzo-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.cinzo-footer nav a:hover {
	color: #fff;
}

@keyframes cinzo-hero-in {
	from { transform: scale(1.1); filter: brightness(.6); }
	to { transform: scale(1.03); filter: brightness(1); }
}

@keyframes cinzo-copy-in {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes cinzo-modal-in {
	from { opacity: 0; transform: translateY(15px) scale(.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1500px) {
	.cinzo-side-ad {
		display: none;
	}
}

@media (max-width: 1100px) {
	:root {
		--cinzo-sidebar: 78px;
	}

	.cinzo-brand,
	.cinzo-brand img {
		width: 58px;
	}

	.cinzo-hero-content {
		width: min(700px, 86vw);
	}

	.cinzo-premier-hero {
		grid-template-columns: 1fr 430px;
		padding-inline: 5vw;
	}

	.cinzo-detail-content {
		grid-template-columns: 180px minmax(0, 1fr);
	}

	.cinzo-detail-poster {
		width: 180px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .cinzo-sidebar,
	body.admin-bar .cinzo-mobile-header,
	body.admin-bar .cinzo-topbar {
		top: 46px;
	}

	:root {
		--cinzo-sidebar: 0px;
	}

	.cinzo-sidebar {
		top: auto !important;
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 69px;
		flex-direction: row;
		padding: 6px max(8px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
		border-top: 1px solid var(--cinzo-line);
		border-left: 0;
		background: rgba(5, 5, 5, .94);
	}

	.cinzo-brand,
	.cinzo-sidebar-bottom {
		display: none;
	}

	.cinzo-nav {
		flex: 1;
		flex-direction: row;
		justify-content: space-around;
		gap: 2px;
	}

	.cinzo-nav a {
		flex: 1;
		min-height: 53px;
		font-size: 9px;
	}

	.cinzo-nav a.active::before {
		top: -6px;
		right: 50%;
		width: 28px;
		height: 3px;
		transform: translateX(50%);
	}

	.cinzo-nav-icon {
		font-size: 18px;
	}

	.cinzo-main-wrap {
		margin-right: 0;
		padding-bottom: 69px;
	}

	.cinzo-mobile-header {
		position: fixed;
		z-index: 75;
		top: 0;
		right: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 64px;
		padding: 8px 14px;
		background: linear-gradient(to bottom, rgba(0, 0, 0, .88), transparent);
		pointer-events: none;
	}

	.cinzo-mobile-header > * {
		pointer-events: auto;
	}

	.cinzo-mobile-logo img {
		width: 88px;
		height: 46px;
		object-fit: contain;
		background: transparent;
	}

	.cinzo-mobile-actions {
		display: flex;
		gap: 7px;
	}

	.cinzo-topbar {
		display: none;
	}

	.cinzo-hero {
		min-height: 90svh;
		align-items: flex-end;
	}

	.cinzo-hero-shade {
		background:
			linear-gradient(to top, #050505 0%, rgba(5, 5, 5, .78) 45%, transparent 80%),
			linear-gradient(to bottom, rgba(0, 0, 0, .4), transparent 25%);
	}

	.cinzo-hero-media {
		background-position: center top;
	}

	.cinzo-hero-content {
		width: 100%;
		padding: 110px 20px 70px;
	}

	.cinzo-hero h1 {
		font-size: clamp(44px, 14vw, 74px);
	}

	.cinzo-hero-content > p {
		display: -webkit-box;
		overflow: hidden;
		font-size: 14px;
		line-height: 1.8;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}

	.cinzo-scroll-cue {
		display: none;
	}

	.cinzo-home-sections {
		margin-top: -16px;
		padding: 0 15px 30px;
	}

	.cinzo-content-row {
		margin-bottom: 38px;
	}

	.cinzo-content-row > header {
		align-items: center;
	}

	.cinzo-row-tools button {
		display: none;
	}

	.cinzo-card-track {
		grid-auto-columns: 145px;
		gap: 11px;
		padding-bottom: 12px;
	}

	.cinzo-card-poster {
		border-radius: 14px;
	}

	.cinzo-card-play {
		display: none;
	}

	.cinzo-library-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 11px;
		padding: 24px 14px 60px;
	}

	.cinzo-page-head {
		min-height: 280px;
		padding: 100px 20px 34px;
	}

	.cinzo-page-head h1 {
		font-size: clamp(38px, 12vw, 58px);
	}

	.cinzo-detail-hero {
		min-height: 86svh;
		background-position: center top;
	}

	.cinzo-detail-shade {
		background: linear-gradient(to top, #050505 0%, rgba(5, 5, 5, .8) 50%, transparent 85%);
	}

	.cinzo-detail-content {
		display: block;
		padding: 100px 20px 45px;
	}

	.cinzo-detail-poster {
		display: none;
	}

	.cinzo-detail-copy h1 {
		font-size: clamp(42px, 13vw, 70px);
	}

	.cinzo-watch-section,
	.cinzo-story-section {
		padding: 38px 15px;
	}

	.cinzo-watch-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.cinzo-player-shell {
		border-radius: 18px;
	}

	.cinzo-episodes-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.cinzo-account-grid {
		grid-template-columns: 1fr;
		padding: 24px 14px;
	}

	.cinzo-account-payments {
		padding: 28px 14px 70px;
	}

	.cinzo-payment-list > div {
		grid-template-columns: 1fr 1fr;
		gap: 8px 12px;
	}

	.cinzo-premier-hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 100px 16px 48px;
	}

	.cinzo-premier-copy h1 {
		font-size: clamp(52px, 15vw, 76px);
	}

	.cinzo-premier-copy ul {
		grid-template-columns: 1fr;
	}

	.cinzo-checkout-card {
		max-height: none;
		padding: 24px 18px;
	}

	.cinzo-premier-library {
		padding: 45px 14px 65px;
	}

	.cinzo-modal {
		align-items: end;
		padding: 0;
	}

	.cinzo-modal-card {
		width: 100%;
		max-height: 92svh;
		border-radius: 24px 24px 0 0;
		padding: 28px 18px calc(26px + env(safe-area-inset-bottom));
	}

	.cinzo-episode-modal-card {
		height: 92svh;
	}

	.cinzo-episode-modal-card [data-episode-modal-player] {
		height: calc(92svh - 110px);
		aspect-ratio: auto;
	}

	.cinzo-footer {
		grid-template-columns: 1fr;
		padding: 35px 20px 100px;
		text-align: center;
	}

	.cinzo-footer img {
		margin: auto;
	}

	.cinzo-footer nav {
		justify-content: center;
	}

	.cinzo-footer p {
		margin-inline: auto;
	}

	.cinzo-toast {
		right: 15px;
		left: 15px;
		bottom: 84px;
		max-width: none;
	}
}

@media (max-width: 380px) {
	.cinzo-card-track {
		grid-auto-columns: 132px;
	}

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

	.cinzo-card-info h3 {
		font-size: 12px;
	}

	.cinzo-button {
		min-height: 45px;
		padding-inline: 18px;
		font-size: 12px;
	}
}

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