:root {
	color-scheme: dark;
	--bg: #2A3D45;
	--bg-soft: #2A3D45;
	--panel: #2A3D45;
	--panel-2: #292e33;
	--line: rgba(255,255,255,.10);
	--text: #fdfdfd;
	--muted: #c3c4c5;
	--dim: #85878a;
	--accent: #E5625E;
	--accent-dark: #06D6A0;
	--success: #06D6A0;
	--accent-soft: rgba(229,98,94,.16);
	--ink: #2A3D45;
	--content-max: 1440px;
	--content-pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
	margin: 0;
	min-height: 100vh;
	background:
			radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 34rem),
			linear-gradient(180deg, color-mix(in srgb, var(--bg) 92%, #000 8%) 0%, color-mix(in srgb, var(--bg) 58%, #000 42%) 54%, color-mix(in srgb, var(--bg) 82%, #000 18%) 100%);
	color: var(--text);
	font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; }
main { padding-bottom: 72px; }

.tv-header {
	height: 74px;
	padding: 0 max(var(--content-pad), calc((100vw - var(--content-max)) / 2 + 56px));
	border-bottom: 1px solid rgba(255,255,255,.07);
	background: color-mix(in srgb, var(--bg) 35%, transparent);
	backdrop-filter: blur(18px);
	position: sticky;
	top: 0;
	z-index: 20;
}
.tv-header-inner {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
}
.tv-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0;
}
.tv-brand img { max-width: 128px; height: 1.15em; object-fit: contain; }
.tv-header-right {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: 0;
	flex: 1;
}
.tv-search input[type=search] {
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.05);
	color: rgba(247,247,245,.92);
	font: inherit;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 999px;
	width: 200px;
	outline: none;
}
.tv-search input[type=search]:focus {
	border-color: rgba(255,255,255,.4);
	background: rgba(255,255,255,.09);
}
.tv-search input[type=search]::placeholder {
	color: rgba(247,247,245,.45);
}
.tv-header nav {
	display: flex;
	gap: 8px;
	overflow: visible;
	justify-content: flex-start;
}
.tv-auth {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	padding-left: 16px;
	border-left: 1px solid rgba(255,255,255,.14);
}
.tv-auth-link {
	border: 0;
	background: transparent;
	color: rgba(247,247,245,.78);
	text-decoration: none;
	font: inherit;
	font-size: 13px;
	font-weight: 650;
	padding: 9px 14px;
	border-radius: 999px;
	white-space: nowrap;
	cursor: pointer;
}
.tv-auth-link:hover {
	color: var(--text);
	background: rgba(255,255,255,.06);
}
.tv-auth-email {
	color: rgba(247,247,245,.64);
	font-size: 13px;
	font-weight: 650;
	white-space: nowrap;
}
.tv-auth-dropdown {
	position: relative;
}
.tv-auth-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 190px;
	display: none;
	padding: 8px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	background: color-mix(in srgb, var(--ink) 92%, #000);
	box-shadow: 0 24px 60px rgba(0,0,0,.35);
	z-index: 40;
}
.tv-auth-menu::before,
.tv-nav-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -10px;
	height: 10px;
}
.tv-auth-dropdown:hover .tv-auth-menu,
.tv-auth-dropdown:focus-within .tv-auth-menu {
	display: grid;
}
.tv-auth-menu a {
	color: rgba(247,247,245,.82);
	text-decoration: none;
	font-size: 13px;
	font-weight: 650;
	padding: 10px 12px;
	border-radius: 10px;
}
.tv-auth-menu a:hover {
	color: #fff;
	background: rgba(255,255,255,.08);
}
.tv-auth-menu a + a {
	margin-top: 6px;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.1);
}
.tv-auth-cta {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 16px;
	border-radius: 999px;
	white-space: nowrap;
	background: var(--accent);
	box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 32%, transparent);
}
.tv-auth-cta:hover {
	filter: brightness(1.08);
}
.tv-header nav a,
.tv-header nav button {
	color: rgba(247,247,245,.72);
	text-decoration: none;
	font-size: 13px;
	font-weight: 650;
	font-family: inherit;
	white-space: nowrap;
	padding: 9px 12px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
}
.tv-header nav a:hover,
.tv-header nav button:hover {
	color: var(--text);
	border-color: rgba(255,255,255,.14);
	background: rgba(255,255,255,.06);
}
.tv-nav-dropdown {
	position: relative;
}
.tv-nav-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 220px;
	display: none;
	gap: 4px;
	padding: 8px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	background: color-mix(in srgb, var(--ink) 92%, #000);
	box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.tv-nav-dropdown:hover .tv-nav-menu,
.tv-nav-dropdown:focus-within .tv-nav-menu {
	display: grid;
}
.tv-nav-menu a {
	border-radius: 10px;
	padding: 10px 12px;
}

.tv-hero { margin-top: -74px; }
.tv-slides {
	position: relative;
	min-height: min(760px, 86vh);
	overflow: hidden;
	background: #000;
}
.tv-slide {
	min-height: min(760px, 86vh);
	padding: 148px clamp(20px, 6vw, 84px) 86px;
	display: none;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	position: relative;
	isolation: isolate;
}
.tv-slide::before,
.tv-title-media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(15,17,19,.72) 0%, rgba(15,17,19,.5) 30%, rgba(15,17,19,.22) 58%, rgba(15,17,19,.06) 82%, transparent 100%),
		linear-gradient(0deg, rgba(15,17,19,.72) 0%, rgba(15,17,19,.5) 30%, rgba(15,17,19,.22) 58%, rgba(15,17,19,.06) 82%, transparent 100%);
}
.tv-slide::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 300px;
	background: linear-gradient(0deg, color-mix(in srgb, var(--bg) 45%, transparent) 0%, color-mix(in srgb, var(--bg) 16%, transparent) 45%, transparent 100%);
	pointer-events: none;
}
.tv-slide > *, .tv-title-media > * { position: relative; max-width: 780px; }
.tv-slide h1 {
	max-width: min(1180px, 92vw);
}
.tv-slide.is-active { display: flex; animation: tvFade .38s ease-out both; }
@keyframes tvFade {
	from { opacity: .45; transform: scale(1.01); }
	to { opacity: 1; transform: scale(1); }
}
.tv-kicker {
	width: fit-content;
	color: #fff;
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	border-radius: 999px;
	padding: 6px 10px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0;
}
.tv-slide h1, .tv-title h1, .tv-watch h1 {
	font-size: clamp(30px, 4.8vw, 60px);
	line-height: 1;
	margin: 16px 0 16px;
	letter-spacing: 0;
	text-wrap: balance;
}
.tv-slide p, .tv-title p, .tv-watch-copy p {
	color: rgba(247,247,245,.78);
	font-size: clamp(16px, 2vw, 21px);
	line-height: 1.52;
	max-width: 700px;
	margin: 0 0 24px;
}
.tv-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 46px;
	padding: 0 20px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-weight: 850;
	box-shadow: 0 18px 48px rgba(231,76,60,.28);
	transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.tv-cta:hover {
	background: var(--accent-dark);
	transform: translateY(-1px);
	box-shadow: 0 20px 54px rgba(231,76,60,.38);
}
.tv-cta::before {
	content: "";
	width: 0;
	height: 0;
	margin-right: 10px;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid currentColor;
}
.tv-slide-dots {
	position: absolute;
	left: clamp(20px, 6vw, 84px);
	bottom: 34px;
	display: flex;
	gap: 8px;
	z-index: 3;
}
.tv-slide-dot {
	width: 42px;
	height: 24px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	padding: 0;
	cursor: pointer;
	position: relative;
}
.tv-slide-dot::before {
	content: "";
	position: absolute;
	left: 4px;
	right: 4px;
	top: 50%;
	height: 4px;
	border-radius: 999px;
	background: rgba(255,255,255,.25);
	transform: translateY(-50%);
}
.tv-slide-dot:hover::before { background: rgba(255,255,255,.45); }
.tv-slide-dot.is-active::before { background: var(--accent); }

.tv-hero-empty, .tv-title {
	padding: 132px clamp(20px, 6vw, 84px) 56px;
	max-width: 1280px;
	margin: 0 auto;
}
.tv-title {
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.tv-landing-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 20px;
	margin-top: 22px;
}
.tv-landing-page main { padding-bottom: 24px; }
.tv-title-media {
	max-width: none;
	min-height: 470px;
	padding: 150px clamp(20px, 6vw, 84px) 64px;
	background-size: cover;
	background-position: center;
	position: relative;
	isolation: isolate;
}
.tv-title-media::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 130px;
	background: linear-gradient(0deg, var(--bg), transparent);
}

.tv-section {
	width: min(100%, 1440px);
	margin: 0 auto;
	padding: 24px clamp(20px, 4vw, 56px);
}
.tv-section h2 {
	margin: 0 0 16px;
	font-size: clamp(20px, 2.2vw, 30px);
	letter-spacing: 0;
}
.tv-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}
.tv-section-head h2 {
	margin: 0;
}
.tv-section-arrow {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
	border-radius: 999px;
	color: var(--accent);
	text-decoration: none;
	transition: background .18s ease, color .18s ease, transform .18s ease;
}
.tv-section-arrow::before {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: -2px;
}
.tv-section-arrow:hover {
	background: var(--accent);
	color: #fff;
	transform: translateX(2px);
}
.tv-section-copy {
	max-width: 760px;
	margin: -8px 0 18px;
	color: rgba(247,247,245,.68);
	font-size: 15px;
	line-height: 1.55;
}
.tv-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(230px, 20%);
	grid-template-columns: none;
	gap: 16px;
	overflow-x: auto;
	overflow-y: visible;
	padding: 6px 4px 24px;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,.18) transparent;
}
.tv-grid::-webkit-scrollbar { height: 8px; }
.tv-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 999px; }
.tv-grid-fixed-4 {
	grid-auto-flow: row;
	grid-auto-columns: auto;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: visible;
	scroll-snap-type: none;
	padding-bottom: 8px;
}
.tv-video-feature-section {
	padding-top: 30px;
	padding-bottom: 30px;
}
.tv-video-feature {
	display: grid;
	grid-template-columns: minmax(240px, 35%) 1fr;
	gap: clamp(22px, 4vw, 54px);
	align-items: center;
	color: var(--text);
	text-decoration: none;
	background: rgba(255,255,255,.055);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 12px;
	padding: clamp(14px, 2vw, 22px);
	box-shadow: 0 20px 70px rgba(0,0,0,.22);
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.tv-video-feature:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--accent) 58%, transparent);
	background: rgba(255,255,255,.08);
}
.tv-series-feature {
	display: block;
}
.tv-series-feature-main {
	display: grid;
	grid-template-columns: minmax(92px, 142px) 1fr;
	gap: clamp(14px, 2.4vw, 28px);
	align-items: center;
	color: var(--text);
	text-decoration: none;
	max-width: 720px;
}
.tv-series-feature-main-no-media { grid-template-columns: 1fr; }
.tv-series-feature .tv-video-feature-media {
	border-radius: 7px;
}
.tv-series-feature .tv-video-feature-copy {
	padding-bottom: 0;
	min-height: auto;
}
.tv-series-feature .tv-video-feature-copy h2 {
	font-size: clamp(18px, 1.65vw, 25px);
	margin: 5px 0 7px;
}
.tv-series-feature .tv-video-feature-copy > p:not(.tv-card-meta) {
	font-size: 13px;
	margin-bottom: 10px;
}
.tv-video-feature-media {
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(231,76,60,.26), rgba(255,255,255,.06)),
		var(--ink);
}
.tv-video-feature-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.tv-video-feature-copy {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	padding-bottom: 54px;
}
.tv-video-feature-copy h2 {
	margin: 8px 0 10px;
	font-size: clamp(20px, 2.05vw, 30px);
	line-height: 1.08;
}
.tv-video-feature-copy > p:not(.tv-card-meta) {
	max-width: 720px;
	margin: 0 0 18px;
	color: rgba(247,247,245,.7);
	font-size: 14px;
	line-height: 1.55;
}
.tv-video-feature-copy .tv-feature-detail {
	margin-top: 0;
	color: rgba(247,247,245,.52);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}
.tv-video-feature-cta {
	position: absolute;
	right: 0;
	bottom: 0;
}
.tv-play-outline {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent);
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	box-shadow: 0 12px 34px color-mix(in srgb, var(--accent) 24%, transparent);
	transition: filter .18s ease, transform .18s ease, box-shadow .18s ease;
}
.tv-play-outline::before {
	content: "";
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid currentColor;
}
.tv-video-feature:hover .tv-play-outline {
	filter: brightness(1.08);
	box-shadow: 0 16px 42px color-mix(in srgb, var(--accent) 34%, transparent);
	transform: translateY(-1px);
}
.tv-arrow-outline {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid color-mix(in srgb, var(--accent) 80%, transparent);
	border-radius: 999px;
	background: transparent;
	color: var(--accent);
	box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 18%, transparent);
	transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.tv-arrow-outline::before {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: -2px;
}
.tv-series-feature:hover .tv-arrow-outline {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 32%, transparent);
}
.tv-series-feature-videos {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,.08);
}
.tv-series-feature-videos .tv-card {
	box-shadow: none;
	background: rgba(0,0,0,.14);
}
.tv-series-feature-videos .tv-card-desc {
	display: none;
}
.tv-card {
	display: block;
	background: rgba(255,255,255,.055);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	min-width: 0;
	scroll-snap-align: start;
	box-shadow: 0 16px 50px rgba(0,0,0,.18);
	transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.tv-card:hover {
	transform: translateY(-6px);
	border-color: color-mix(in srgb, var(--accent) 58%, transparent);
	background: rgba(255,255,255,.08);
	box-shadow: 0 26px 70px rgba(0,0,0,.34);
}
.tv-card-img {
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, rgba(231,76,60,.26), rgba(255,255,255,.06)),
		var(--ink);
	position: relative;
	overflow: hidden;
}
.tv-card-img::after {
	content: "";
	position: absolute;
	left: 12px;
	bottom: 12px;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(0,0,0,.58);
	border: 1px solid rgba(255,255,255,.18);
	backdrop-filter: blur(10px);
}
.tv-card-img::before {
	content: "";
	position: absolute;
	left: 26px;
	bottom: 22px;
	z-index: 2;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid #fff;
}
.tv-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .22s ease, filter .22s ease;
}
.tv-card-duration {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 3;
	padding: 4px 7px;
	border-radius: 6px;
	background: rgba(0,0,0,.72);
	border: 1px solid rgba(255,255,255,.16);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .02em;
	backdrop-filter: blur(10px);
}
.tv-card:hover .tv-card-img img {
	filter: saturate(1.08) contrast(1.04);
}
.tv-card-body { padding: 13px 14px 15px; }
.tv-card-title {
	font-size: 14px;
	font-weight: 760;
	margin: 0 0 6px;
	min-height: 2.45em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	letter-spacing: 0;
	line-height: 1.22;
}
.tv-card-desc {
	color: var(--muted);
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.38;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 0;
}
.tv-card-meta {
	color: var(--accent);
	margin: 0;
	font-size: 10px;
	font-weight: 560;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tv-watch {
	width: min(100%, var(--content-max));
	margin: 0 auto;
	padding: clamp(20px, 4vw, 56px) var(--content-pad) 48px;
}
.tv-player {
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.12);
	aspect-ratio: 16 / 9;
	box-shadow: 0 22px 72px rgba(0,0,0,.46);
}
.tv-player mux-player, .tv-player iframe { width: 100%; height: 100%; display: block; border: 0; }
.tv-player-poster {
	width: 100%;
	height: 100%;
	background-color: #050505;
	background-position: center;
	background-size: cover;
}
.tv-player-gate {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	padding: clamp(22px, 4vw, 42px);
	background-size: cover;
	background-position: center;
	position: relative;
	isolation: isolate;
}
.tv-player-gate::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(15,17,19,.86), rgba(15,17,19,.46)),
		rgba(15,17,19,.48);
}
.tv-player-gate > div {
	max-width: 460px;
	text-align: center;
}
.tv-player-gate h2 {
	margin: 0 0 10px;
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1.05;
}
.tv-player-gate p {
	margin: 0 0 18px;
	color: rgba(247,247,245,.72);
	font-size: 14px;
	line-height: 1.5;
}
.tv-player-gate form {
	display: inline-flex;
}
.tv-payment-options {
	display: grid;
	gap: 10px;
	margin: 18px 0;
	text-align: left;
}
.tv-payment-options > div {
	padding: 12px 14px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 12px;
	background: rgba(255,255,255,.07);
}
.tv-payment-options strong,
.tv-payment-options span {
	display: block;
}
.tv-payment-options strong {
	margin-bottom: 3px;
	font-size: 13px;
}
.tv-payment-options span {
	color: rgba(247,247,245,.72);
	font-size: 12px;
	line-height: 1.35;
}
.tv-watch-details {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
	padding-top: 22px;
}
.tv-watch-copy {
	max-width: 840px;
}
.tv-watch h1 {
	font-size: clamp(26px, 3.4vw, 44px);
	line-height: 1.08;
	margin: 0 0 12px;
}
.tv-watch-copy p {
	max-width: 760px;
	font-size: 15px;
	color: rgba(247,247,245,.68);
}
.tv-watch-meta {
	background: rgba(255,255,255,.055);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 12px;
	padding: 18px 18px 16px;
	box-shadow: 0 18px 54px rgba(0,0,0,.18);
}
.tv-watch-meta-tabs {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
	padding: 4px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 999px;
	background: rgba(0,0,0,.14);
}
.tv-watch-meta-tabs button {
	flex: 1;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(247,247,245,.6);
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	padding: 8px 10px;
	cursor: pointer;
}
.tv-watch-meta-tabs button.is-active {
	background: var(--accent);
	color: #fff;
}
.tv-watch-meta-panel {
	display: none;
}
.tv-watch-meta-panel.is-active {
	display: block;
}
.tv-watch-meta dl {
	margin: 0;
	display: grid;
	gap: 0;
}
.tv-watch-meta dl > div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-top: 1px solid rgba(255,255,255,.08);
}
.tv-watch-meta dt {
	color: rgba(247,247,245,.48);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}
.tv-watch-meta dd {
	margin: 0;
	color: rgba(247,247,245,.9);
	font-size: 13px;
	font-weight: 650;
	text-align: right;
}
.tv-watch-meta a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,.26);
}
.tv-watch-meta a:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.tv-chapters {
	display: grid;
	gap: 8px;
}
.tv-chapters a {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 8px 10px;
	align-items: baseline;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
	text-decoration: none;
}
.tv-chapters a:last-child {
	border-bottom: 0;
}
.tv-chapters span {
	color: var(--accent);
	font-size: 11px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}
.tv-chapters strong {
	color: rgba(247,247,245,.92);
	font-size: 13px;
	line-height: 1.25;
}
.tv-chapters small {
	grid-column: 2;
	color: rgba(247,247,245,.52);
	font-size: 12px;
	line-height: 1.35;
}
.tv-watch-related {
	padding-left: 0;
	padding-right: 0;
	margin-top: 28px;
}

.tv-library {
	width: min(100%, var(--content-max));
	margin: 0 auto;
	padding: clamp(52px, 8vw, 96px) var(--content-pad) 48px;
}
.tv-library-head {
	margin-bottom: 34px;
}
.tv-library-head h1 {
	margin: 0;
	font-size: clamp(38px, 6vw, 72px);
	line-height: .96;
	letter-spacing: 0;
}
.tv-library-toolbar {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
	margin: 0 0 28px;
}
.tv-library-search {
	display: flex;
	gap: 10px;
	padding: 8px;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 999px;
	background: rgba(255,255,255,.055);
}
.tv-library-search input {
	min-width: 0;
	flex: 1;
	border: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 14px;
	padding: 0 12px;
	outline: none;
}
.tv-library-search input::placeholder {
	color: rgba(247,247,245,.44);
}
.tv-library-search button {
	border: 0;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	padding: 10px 16px;
	cursor: pointer;
}
.tv-library-tabs {
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 5px;
	width: fit-content;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 999px;
	background: rgba(255,255,255,.045);
}
.tv-library-tabs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border-radius: 999px;
	color: rgba(247,247,245,.68);
	text-decoration: none;
	font-size: 13px;
	font-weight: 800;
}
.tv-library-tabs a:hover {
	color: #fff;
	background: rgba(255,255,255,.06);
}
.tv-library-tabs a.is-active {
	color: #fff;
	background: var(--accent);
	box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 20%, transparent);
}
.tv-library-results-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.tv-library-results-head h2,
.tv-library-sidebar h2 {
	margin: 0;
	font-size: 19px;
}
.tv-library-results-head p,
.tv-library-sidebar p {
	margin: 0;
	color: rgba(247,247,245,.52);
	font-size: 13px;
}
.tv-library-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding-top: 16px;
}
.tv-library-item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	align-items: stretch;
	color: var(--text);
	text-decoration: none;
	padding: 0;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 12px;
	background: rgba(255,255,255,.045);
	overflow: hidden;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.tv-library-item:hover {
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--accent) 66%, rgba(255,255,255,.12));
	background: rgba(255,255,255,.075);
}
.tv-library-item-media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(231,76,60,.26), rgba(255,255,255,.06)),
		var(--ink);
}
.tv-library-item-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.tv-library-item-body {
	min-width: 0;
	padding: 12px 13px 14px;
}
.tv-library-item-body h3 {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.22;
	letter-spacing: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tv-library-item-body p {
	margin: 0 0 12px;
	max-width: 720px;
	color: rgba(247,247,245,.66);
	font-size: 12px;
	line-height: 1.38;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tv-library-item-body span {
	color: rgba(247,247,245,.48);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}
.tv-library-collection-item .tv-library-item-body p {
	min-height: 34px;
}

.tv-auth-page {
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: clamp(64px, 10vw, 120px) clamp(20px, 4vw, 56px);
}
.tv-account {
	width: 100%;
	margin: 0;
	padding: clamp(64px, 10vw, 120px) max(var(--content-pad), calc((100vw - var(--content-max)) / 2 + 56px));
}
.tv-auth-page {
	min-height: calc(100vh - 74px);
	display: grid;
	place-items: center;
}
.tv-auth-shell main {
	padding-bottom: 0;
}
.tv-auth-shell .tv-auth-page {
	min-height: max(430px, calc(100vh - 74px - 214px));
	padding-top: clamp(24px, 5vw, 54px);
	padding-bottom: clamp(24px, 5vw, 54px);
}
.tv-auth-card {
	width: min(100%, 560px);
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 14px;
	background: rgba(255,255,255,.06);
	box-shadow: 0 26px 84px rgba(0,0,0,.28);
	position: relative;
}
.tv-auth-logo {
	display: block;
	max-width: 136px;
	height: 30px;
	object-fit: contain;
	object-position: right center;
	position: absolute;
	top: clamp(22px, 4vw, 34px);
	right: clamp(22px, 4vw, 34px);
}
.tv-auth-card h1,
.tv-account-head h1 {
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.02;
	letter-spacing: 0;
}
.tv-auth-card h1 {
	font-size: clamp(30px, 3.4vw, 44px);
	max-width: 520px;
	padding-right: 124px;
	white-space: nowrap;
}
.tv-auth-card p,
.tv-account-head p {
	margin: 0 0 22px;
	color: rgba(247,247,245,.68);
	font-size: 15px;
	line-height: 1.5;
}
.tv-auth-card form {
	display: grid;
	gap: 12px;
}
.tv-auth-card label {
	color: rgba(247,247,245,.58);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}
.tv-auth-card input {
	width: 100%;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 10px;
	background: rgba(0,0,0,.2);
	color: #fff;
	font: inherit;
	font-size: 16px;
	padding: 13px 14px;
	outline: none;
}
.tv-auth-card input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.tv-form-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: 4px;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font: inherit;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 16px 42px color-mix(in srgb, var(--accent) 24%, transparent);
}
.tv-form-button:hover {
	filter: brightness(1.08);
}
.tv-auth-secondary {
	display: inline-flex;
	width: fit-content;
	margin-top: 16px;
	color: rgba(247,247,245,.72);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}
.tv-auth-secondary:hover {
	color: #fff;
}
.tv-auth-alert,
.tv-dev-code,
.tv-empty-state {
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 10px;
	background: rgba(255,255,255,.06);
	color: rgba(247,247,245,.8);
	padding: 12px 14px;
	font-size: 13px;
	line-height: 1.4;
}
.tv-auth-alert {
	margin-bottom: 14px;
	border-color: color-mix(in srgb, var(--accent) 42%, rgba(255,255,255,.1));
	color: #fff;
}
.tv-dev-code {
	margin: 0;
	color: #fff;
	font-weight: 800;
}
.tv-account-head {
	margin-bottom: 28px;
}
.tv-account-tabs {
	display: inline-flex;
	gap: 6px;
	margin-bottom: 20px;
	padding: 5px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	background: rgba(255,255,255,.055);
}
.tv-account-tabs a {
	padding: 9px 14px;
	border-radius: 999px;
	color: rgba(247,247,245,.68);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}
.tv-account-tabs a.is-active {
	background: var(--accent);
	color: #fff;
}
.tv-account-table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 14px;
	background: rgba(255,255,255,.055);
	box-shadow: 0 20px 70px rgba(0,0,0,.22);
}
.tv-account-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
}
.tv-account-table th,
.tv-account-table td {
	padding: 15px 16px;
	border-bottom: 1px solid rgba(255,255,255,.08);
	text-align: left;
	vertical-align: middle;
}
.tv-account-table tr:last-child td {
	border-bottom: 0;
}
.tv-account-table th {
	color: rgba(247,247,245,.52);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}
.tv-account-action-col {
	text-align: right !important;
	width: 74px;
}
.tv-account-webtv {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}
.tv-account-webtv img {
	width: 84px;
	height: 34px;
	object-fit: contain;
	flex: 0 0 auto;
}
.tv-account-webtv strong {
	display: block;
	margin-bottom: 3px;
	font-size: 14px;
}
.tv-account-webtv p,
.tv-account-muted {
	margin: 0;
	color: rgba(247,247,245,.66);
	font-size: 12px;
	line-height: 1.35;
}
.tv-table-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 13px;
	border: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
	border-radius: 999px;
	background: transparent;
	color: var(--accent);
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
}
.tv-table-button:hover {
	background: var(--accent);
	color: #fff;
}
.tv-table-button-muted,
.tv-table-button:disabled {
	border-color: rgba(255,255,255,.14);
	color: rgba(247,247,245,.36);
	cursor: not-allowed;
}
.tv-table-button-muted:hover,
.tv-table-button:disabled:hover {
	background: transparent;
	color: rgba(247,247,245,.36);
}
.tv-table-arrow {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
	border-radius: 999px;
	color: var(--accent);
	text-decoration: none;
	transition: background .18s ease, color .18s ease, transform .18s ease;
}
.tv-table-arrow::before {
	content: "";
	width: 9px;
	height: 9px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: -2px;
}
.tv-table-arrow:hover {
	background: var(--accent);
	color: #fff;
	transform: translateX(2px);
}

.tv-footer {
	width: 100%;
	margin: 32px 0 0;
	padding: 38px max(var(--content-pad), calc((100vw - var(--content-max)) / 2 + 56px)) 46px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 4vw, 56px);
	border-top: 1px solid rgba(255,255,255,.08);
	background: color-mix(in srgb, var(--bg) 35%, transparent);
	color: rgba(247,247,245,.7);
}
.tv-footer-panel {
	min-width: 0;
}
.tv-footer-panel p {
	max-width: 560px;
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.55;
}
.tv-footer-brand,
.tv-footer-link {
	color: rgba(247,247,245,.86);
	text-decoration: none;
}
.tv-footer-brand:hover,
.tv-footer-link:hover {
	color: #fff;
}
.tv-footer-brand img {
	width: 96px;
	height: auto;
	display: block;
}
.tv-footer-link {
	display: inline-flex;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 700;
}
.tv-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 14px;
}
.tv-footer-links .tv-footer-link {
	margin-top: 0;
}
.tv-footer-customer {
	border-left: 1px solid rgba(255,255,255,.08);
	padding-left: clamp(20px, 4vw, 56px);
}
.tv-footer-customer-head {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #fff;
}
.tv-footer-customer-head img {
	max-width: 132px;
	height: 28px;
	object-fit: contain;
}
.tv-footer-customer-head strong {
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 980px) {
	.tv-grid { grid-auto-columns: minmax(210px, 42%); }
	.tv-header nav { max-width: 54vw; overflow-x: auto; overflow-y: visible; justify-content: flex-start; }
	.tv-library-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
	.tv-header {
		padding: 12px 18px;
		height: auto;
		min-height: 70px;
	}
	.tv-header-inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 10px;
	}
	.tv-header nav {
		width: 100%;
		max-width: none;
		overflow-x: auto;
		overflow-y: visible;
		padding-bottom: 2px;
	}
	.tv-hero { margin-top: -116px; }
	.tv-slide {
		padding: 150px 20px 70px;
		min-height: 560px;
	}
	.tv-slides { min-height: 560px; }
	.tv-slide h1, .tv-title h1, .tv-watch h1 { font-size: clamp(28px, 8.5vw, 42px); }
	.tv-grid { grid-auto-columns: minmax(210px, 78%); gap: 14px; }
	.tv-video-feature { grid-template-columns: 1fr; }
	.tv-series-feature-main { grid-template-columns: 1fr; }
	.tv-series-feature-videos { grid-template-columns: 1fr 1fr; }
	.tv-watch-details { grid-template-columns: 1fr; }
	.tv-library { padding-left: 16px; padding-right: 16px; }
	.tv-library-head { grid-template-columns: 1fr; }
	.tv-library-toolbar { grid-template-columns: 1fr; }
	.tv-library-tabs { width: 100%; overflow-x: auto; }
	.tv-library-tabs a { flex: 1; }
	.tv-library-list { grid-template-columns: 1fr; }
	.tv-library-search { border-radius: 16px; }
	.tv-title, .tv-title-media, .tv-watch { padding-left: 20px; padding-right: 20px; }
	.tv-account { padding-left: 18px; padding-right: 18px; }
	.tv-watch { padding-top: 20px; }
	.tv-title-media { min-height: 420px; }
	.tv-section { padding-left: 16px; padding-right: 16px; }
	.tv-footer { grid-template-columns: 1fr; }
	.tv-footer-customer { border-left: 0; padding-left: 0; }
}
