.header nav {
	width: 100%;
    background: rgba(0, 0, 0, .85);
    position: fixed !important;
	top: 0;
	left: 0;
    z-index: 1000 !important;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
}

.header nav > .container {
	position: relative;
	z-index: 2;
}

.header nav > .container::before {
	content: "";
	position: absolute;
	inset: 0.7rem 0.6rem 0.7rem 0.6rem;
	pointer-events: none;
	opacity: 0.42;
	background-image:
		repeating-linear-gradient(
			90deg,
			transparent 0,
			transparent 47px,
			rgba(255, 255, 255, 0.14) 47px,
			rgba(255, 255, 255, 0.14) 48px
		);
	mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
	background-position: 0 0;
	animation: filmFrames 4s linear infinite;
}

.header nav::before {
	z-index:0;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
	top: 0;
    width: 110%;
    height: 18px;
    background: rgba(0, 0, 0, .85);
    /* Crear agujeros cuadrados con bordes redondeados */
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 15px,
            rgb(32, 32, 31) 15px,
            rgb(32, 32, 31) 20px
        );
    background-position: 0 0;
    background-size: 24px 24px;
    /* Añadir bordes redondeados a los agujeros */
    mask-image: 
        linear-gradient(to bottom, 
            transparent 0%, 
            transparent 50%, 
            black 50%, 
            black 100%
        );
    -webkit-mask-image: 
        linear-gradient(to bottom, 
            transparent 0%, 
            transparent 50%, 
            black 50%, 
            black 100%
        );
    animation: filmStrip 2s linear infinite;
}

.header nav::after {
	z-index:0;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
	bottom: 10px;
    width: 110%;
    height: 18px;
    background: rgba(0, 0, 0, .85);
    /* Crear agujeros cuadrados con bordes redondeados */
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 15px,
            rgb(32, 32, 31) 15px,
            rgb(32, 32, 31) 20px
        );
    background-position: 0 0;
    background-size: 24px 24px;
    /* Añadir bordes redondeados a los agujeros */
    mask-image: 
        linear-gradient(to bottom, 
            transparent 0%, 
            transparent 50%, 
            black 50%, 
            black 100%
        );
    -webkit-mask-image: 
        linear-gradient(to bottom, 
            transparent 0%, 
            transparent 50%, 
            black 50%, 
            black 100%
        );
    animation: filmStrip 2s linear infinite;
}

@keyframes filmStrip {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -24px 0;
    }
}

@keyframes filmFrames {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -48px 0;
	}
}

@media (max-width: 767px) {
	.header nav > .container::before {
		inset: 0.75rem 0.45rem 0.8rem 0.45rem;
		opacity: 0.3;
		background-image:
			repeating-linear-gradient(
				90deg,
				transparent 0,
				transparent 35px,
				rgba(255, 255, 255, 0.12) 35px,
				rgba(255, 255, 255, 0.12) 36px
			);
		animation: filmFramesMobile 3s linear infinite;
	}
}

@keyframes filmFramesMobile {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -36px 0;
	}
}

.header {
	overflow-x: hidden;
}

.home-page .header {
	padding-top: 0;
}

.latest-series-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.serie-detail-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.latest-seasons-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.latest-episodes-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.latest-reviews-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.latest-characters-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.legal-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.signup-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.actor-detail-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.character-detail-page .header {
	height: auto !important;
	min-height: 0 !important;
}

.review-detail-page .header {
	height: auto !important;
	min-height: 0 !important;
}

:root {
	--site-nav-height: 64px;
	--main-gap: 2vh;
}

.logo {
	width:10rem;
	height:auto;
}

.nav-search-desktop-item,
.nav-search-mobile-item,
.nav-legal-mobile {
	list-style: none;
}

.nav-legal-mobile,
.nav-search-mobile-item {
	display: none;
}

.nav-search-trigger,
.nav-search-mobile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	text-decoration: none;
}

.nav-search-trigger.is-active,
.nav-search-trigger.is-open,
.nav-search-mobile-toggle.is-active,
.nav-search-mobile-toggle.is-open {
	border-color: rgba(249, 178, 51, 0.8);
	color: rgba(249, 178, 51, 0.96);
}

.nav-search-icon {
	font-size: 1.2rem;
	line-height: 1;
}

.nav-search-desktop-form {
	display: none;
	position: absolute;
	right: 7.8rem;
	top: 0.85rem;
	width: min(620px, calc(100vw - 220px));
	opacity: 0;
	pointer-events: none;
	transform: translateX(36px) scaleX(0.72);
	transform-origin: right center;
	transition: opacity 220ms ease, transform 260ms ease;
	z-index: 1200;
}

.nav-search-desktop-form.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0) scaleX(1);
}

.nav-search-desktop-shell {
	display: flex;
	align-items: center;
	min-height: 54px;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.94);
	border: 1px solid rgba(249, 178, 51, 0.34);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.nav-search-desktop-shell input,
.nav-search-mobile-row input {
	width: 100%;
	border: 0;
	outline: none;
	background: transparent;
	color: #fff;
	font-size: 1rem;
	padding: 0.5rem 0.85rem;
}

.nav-search-desktop-shell input::placeholder,
.nav-search-mobile-row input::placeholder {
	color: rgba(255, 255, 255, 0.48);
}

.nav-search-mobile-form {
	display: block;
	margin-top: 0;
	width: 100%;
}

.headline-accented .headline-accent-main,
.headline-accented .headline-accent-suffix {
	color: #fff;
}

.headline-accented .headline-accent-highlight {
	color: rgba(249, 178, 51, 0.98);
}

.nav-search-mobile-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.2rem 0.5rem;
	border-radius: 14px;
	background: rgba(16, 16, 16, 1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	width: 100%;
}

.nav-search-mobile-row .nav-search-icon {
	color: rgba(249, 178, 51, 0.96);
	margin-left: 0.25rem;
}

.site-footer {
	display: none;
	padding: 1.2rem 0 2rem;
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.site-footer a:hover {
	color: rgba(249, 178, 51, 0.96);
}

.search-main {
	padding: calc(var(--site-nav-height) + 1.4rem) 0 4rem;
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, rgba(249, 178, 51, 0.15), transparent 30%),
		linear-gradient(180deg, #0b0b0c 0%, #131316 48%, #0b0b0c 100%);
}

.search-hero-panel,
.search-section {
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(10, 10, 12, 0.92);
}

.search-hero-panel {
	padding: 1.7rem;
}

.search-kicker,
.search-section-kicker {
	display: inline-block;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(249, 178, 51, 0.92);
}

.search-title {
	margin: 0.55rem 0 0.7rem;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.03;
	color: #fff;
}

.search-subtitle {
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.6;
}

.search-section {
	margin-top: 1.15rem;
	padding: 1.25rem;
}

.search-section-head {
	margin-bottom: 0.95rem;
}

.search-section-title {
	margin: 0.3rem 0 0;
	font-size: 1.45rem;
	line-height: 1.1;
	color: #fff;
}

.search-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.95rem;
}

.search-card {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 0.85rem;
	padding: 0.68rem;
	border-radius: 18px;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-card-image {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	border-radius: 14px;
	background: #121212;
}

.search-card-copy {
	min-width: 0;
}

.search-card-type {
	display: inline-flex;
	margin-bottom: 0.35rem;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	color: #111;
	background: rgba(249, 178, 51, 0.94);
}

.search-card-title {
	margin: 0 0 0.3rem;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
}

.search-card-text,
.search-empty {
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.55;
}
.poster-thumb {
	width:150px;
	max-width:150px;
}
.youtube-video-background{
	width: 100%;
}
.episodeItem img {
	width:200px;
	max-width:200px;
	min-width:200px;
}
.hero-last {
	margin-top: 0.4rem;
	padding-top: 0;
	width: 100%;
	height: auto;
	min-height: 0;
	display: flex !important;
	flex-wrap: nowrap;
	gap: 0.35rem;
	overflow: hidden;
}
.videoBig h1 {
	font-size: clamp(1.5rem, 5vw, 3.8rem);
	font-weight: 600;
	color: rgb(249, 178, 51, .8);
	line-height: 1.1;
}

.videoBig p {
	font-size: clamp(0.875rem, 2vw, 1.125rem);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.videoBig .btn-primary {
	padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1.25rem, 4vw, 2.5rem);
	font-size: clamp(0.875rem, 2vw, 1rem);
	margin-top: clamp(0.5rem, 1.5vw, 0.75rem);
}

.hero-last h2 {
	position: absolute;
	left: 0.4rem;
	right: 0.4rem;
	bottom: 0.6rem;
	width: auto;
	padding: 0.5rem 0.45rem;
	margin: 0;
	background-color: rgba(0, 0, 0, .6);
	font-size: 1.05rem;
	line-height: 1.15;
	font-weight: 600;
	color: rgb(249, 178, 51, .8);
}
.hero-col25{
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 70vh;
	min-height: 360px;
	max-height: 620px;
	background-size: cover;
    background-position: center;
}

.hero-last > a {
	display: block;
	flex: 0 0 25%;
	width: 25%;
	min-width: 25%;
}

/* Home Hero Featured with Video Background */
.home-hero-featured {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: clamp(300px, 70vh, 600px);
	margin-bottom: 0;
}

.home-hero-video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.home-hero-player,
.home-hero-player iframe {
	width: 100%;
	height: 100%;
}

.signup-main {
	padding: calc(var(--site-nav-height) + 1.5rem) 0 4rem;
	background:
		radial-gradient(circle at top left, rgba(249, 178, 51, 0.18), transparent 32%),
		radial-gradient(circle at top right, rgba(196, 34, 34, 0.18), transparent 28%),
		linear-gradient(180deg, #0b0b0c 0%, #121214 52%, #0b0b0c 100%);
	min-height: 100vh;
}

.signup-hero {
	padding: 1.5rem 0 0.75rem;
}

.signup-hero-panel {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	padding: 2rem;
	background:
		linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		linear-gradient(135deg, rgba(16, 16, 18, 0.95), rgba(30, 30, 34, 0.92));
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.signup-hero-panel::after {
	content: "";
	position: absolute;
	inset: auto -12% -30% auto;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(249, 178, 51, 0.3) 0%, rgba(249, 178, 51, 0) 70%);
	pointer-events: none;
}

.signup-hero-panel.signup-activation-ok::after {
	background: radial-gradient(circle, rgba(58, 173, 110, 0.28) 0%, rgba(58, 173, 110, 0) 72%);
}

.signup-hero-panel.signup-activation-error::after {
	background: radial-gradient(circle, rgba(196, 34, 34, 0.3) 0%, rgba(196, 34, 34, 0) 72%);
}

.signup-kicker,
.signup-card-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.76rem;
	font-weight: 700;
	color: rgba(249, 178, 51, 0.92);
}

.signup-title {
	margin: 0.7rem 0 0.9rem;
	font-size: clamp(2rem, 4vw, 3.8rem);
	line-height: 1.02;
	font-weight: 700;
	color: #fff8ea;
	max-width: 12ch;
}

.signup-subtitle {
	max-width: 60ch;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
}

.signup-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.4rem;
}

.signup-hero-badges span {
	display: inline-flex;
	align-items: center;
	padding: 0.7rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.92rem;
}

.signup-section {
	padding-top: 1.25rem;
}

.signup-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 1.5rem;
	align-items: start;
}

.signup-card {
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(12, 12, 14, 0.92);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
	padding: 1.7rem;
}

.signup-card-secondary {
	background:
		linear-gradient(180deg, rgba(18, 18, 21, 0.98), rgba(13, 13, 15, 0.98)),
		#101012;
}

.signup-card-header h2 {
	margin: 0.35rem 0 0.65rem;
	font-size: clamp(1.6rem, 2vw, 2.1rem);
	line-height: 1.1;
	color: #fff;
}

.signup-card-header p:last-child,
.signup-note p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.65;
}

.signup-form {
	display: grid;
	gap: 1rem;
	margin-top: 1.35rem;
}

.signup-field {
	display: grid;
	gap: 0.45rem;
}

.signup-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.signup-field span {
	font-size: 0.92rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

.signup-field input,
.signup-field select {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	padding: 0.95rem 1rem;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.signup-field input::placeholder {
	color: rgba(255, 255, 255, 0.38);
}

.signup-field input:focus,
.signup-field select:focus {
	border-color: rgba(249, 178, 51, 0.82);
	box-shadow: 0 0 0 3px rgba(249, 178, 51, 0.14);
	transform: translateY(-1px);
}

.signup-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.2rem;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, #f9b233, #ff7f32);
	color: #151515;
	font-weight: 700;
	font-size: 0.98rem;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
	box-shadow: 0 14px 30px rgba(249, 178, 51, 0.24);
}

.signup-submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(249, 178, 51, 0.28);
}

.signup-submit-secondary {
	background: linear-gradient(135deg, #f4f4f4, #d7d7d7);
	box-shadow: 0 14px 30px rgba(255, 255, 255, 0.12);
}

.signup-alert {
	margin-top: 1.2rem;
	padding: 0.95rem 1rem;
	border-radius: 16px;
	border: 1px solid transparent;
	line-height: 1.55;
}

.signup-alert-success {
	background: rgba(58, 173, 110, 0.14);
	border-color: rgba(58, 173, 110, 0.42);
	color: #b7ffd8;
}

.signup-alert-warning {
	background: rgba(249, 178, 51, 0.14);
	border-color: rgba(249, 178, 51, 0.38);
	color: #ffe3b0;
}

.signup-alert-error {
	background: rgba(196, 34, 34, 0.15);
	border-color: rgba(232, 87, 87, 0.3);
	color: #ffc3c3;
}

.signup-alert-info {
	background: rgba(97, 165, 255, 0.13);
	border-color: rgba(97, 165, 255, 0.26);
	color: #d1e5ff;
}

.signup-note {
	margin-top: 1.4rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signup-note h3 {
	margin: 0 0 0.45rem;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.signup-activation-card {
	display: grid;
	gap: 1.5rem;
}

.signup-activation-copy {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.02rem;
	line-height: 1.8;
}

.signup-activation-copy p {
	margin: 0 0 1rem;
}

.signup-activation-copy p:last-child {
	margin-bottom: 0;
}

.signup-activation-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.signup-submit-ghost {
	color: #151515;
	text-decoration: none;
}

.nav-account-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.nav-account-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1rem;
	height: 1.1rem;
	font-size: 0.8rem;
	color: rgba(249, 178, 51, 0.95);
}

.profile-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 1.5rem;
}

.profile-hero-panel::after {
	background: radial-gradient(circle, rgba(97, 165, 255, 0.26) 0%, rgba(97, 165, 255, 0) 72%);
}

.profile-form input[readonly] {
	opacity: 0.82;
	cursor: default;
}

.profile-stats {
	display: grid;
	gap: 1rem;
	margin-top: 1.3rem;
}

.profile-stat {
	padding: 1rem 1.05rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
}

.profile-stat-label {
	display: block;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.35rem;
}

.profile-stat-value {
	display: block;
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	line-height: 1;
	color: #fff;
}

.profile-favorites-panel {
	margin-top: 0.2rem;
}

.profile-favorites-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.profile-favorite-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(8, 8, 8, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-favorite-image {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	display: block;
	background: #111;
}

.profile-favorite-title {
	padding: 0.75rem 0.8rem 0.85rem;
	font-size: 0.95rem;
	line-height: 1.35;
	font-weight: 600;
	color: #fff;
}

.favorite-toggle {
	position: absolute;
	top: auto;
	right: 0.7rem;
	bottom: 0.7rem;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 999px;
	text-decoration: none;
	background: rgba(6, 6, 6, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.favorite-toggle:hover {
	transform: scale(1.05);
}

.favorite-toggle-heart {
	font-size: 1.3rem;
	line-height: 1;
	color: rgba(214, 214, 214, 0.8);
}

.favorite-toggle.is-favorited .favorite-toggle-heart {
	color: rgba(228, 36, 62, 1);
}

.favorite-toggle.is-loading {
	pointer-events: none;
	opacity: 0.7;
}

.favorite-toggle-detail {
	position: relative;
	top: auto;
	right: auto;
	width: auto;
	height: auto;
	padding: 0.72rem 1rem;
	border-radius: 999px;
	gap: 0.5rem;
}

.favorite-toggle-detail::after {
	content: "Favorito";
	font-size: 0.92rem;
	font-weight: 700;
	color: #fff;
}

.home-strip-card,
.latest-series-card,
.serie-cast-card,
.actor-series-card,
.actor-hero-copy {
	position: relative;
}

.favorite-toast {
	position: fixed;
	left: 50%;
	bottom: 1.25rem;
	transform: translate(-50%, 18px);
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	background: rgba(12, 12, 12, 0.95);
	color: #fff;
	border: 1px solid rgba(249, 178, 51, 0.38);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 1400;
}

.favorite-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.actor-hero-actions {
	margin: 0.9rem 0 0.6rem;
}

@media (max-width: 960px) {
	.signup-grid {
		grid-template-columns: 1fr;
	}

	.profile-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) {
	.profile-favorites-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.signup-main {
		padding-bottom: 3rem;
	}

	.signup-hero-panel,
	.signup-card {
		padding: 1.2rem;
		border-radius: 22px;
	}

	.signup-field-row {
		grid-template-columns: 1fr;
	}

	.signup-title {
		max-width: none;
	}

	.signup-activation-actions {
		flex-direction: column;
	}
}

.home-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 1;
}

.home-hero-content {
	position: relative;
	z-index: 2;
	padding: clamp(2rem, 10vh, 4rem) 0;
	display: flex;
	align-items: flex-end;
	min-height: clamp(300px, 70vh, 600px);
}

.home-hero-content .btn-primary {
	padding: clamp(0.50rem, 0.75vw, 0.50rem) clamp(1.55rem, 4vw, 2.5rem);
	font-size: clamp(0.875rem, 2vw, 1rem);
	margin-top: clamp(0.5rem, 1.5vw, 0.75rem);
	/* Cambiado de border a box-shadow para crear separación */
	box-shadow: 0 0 0 2px gold !important;
	border-radius: 12px !important;
	color: gold;
	background-color: rgb(82, 78, 78) !important;
}

/* Home hero video removes from header */
.header .youtube-video-background {
	display: none;
}

/* Old videoBig class for compatibility - update to use new hero */
.home-hero {
	margin-top: 0.45rem;
}

.home-hero-frame {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.11);
	min-height: clamp(330px, 62vh, 680px);
	background: #000;
}

.home-hero-video-wrap {
	position: absolute;
	inset: 0;
}

.home-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	pointer-events: none;
}

.home-hero-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 36%, rgba(0, 0, 0, 0.78) 100%);
}

.home-hero-overlay-pill {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 0.9rem;
	z-index: 2;
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	padding: 0.8rem 0.9rem;
	backdrop-filter: blur(2px);
}

.home-hero-title {
	font-size: clamp(1.55rem, 3.8vw, 3rem);
	line-height: 1.05;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.34rem;
}

.home-hero-entry {
	font-size: clamp(0.88rem, 1.5vw, 1.05rem);
	line-height: 1.4;
	color: rgba(239, 239, 239, 0.88);
	margin: 0 0 0.52rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-strip-section {
	margin-top: 1rem;
	padding: 0.95rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background:
		radial-gradient(circle at 0% 0%, rgba(249, 178, 51, 0.1), rgba(249, 178, 51, 0) 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.home-strip-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.65rem;
}

.home-strip-head h2 {
	font-size: clamp(1.25rem, 3.2vw, 2rem);
	line-height: 1.1;
	font-weight: 800;
	color: #fff;
	margin: 0;
}

.home-strip-head a {
	color: rgba(249, 178, 51, 0.95);
	font-size: 0.88rem;
	text-decoration: none;
}

.home-auto-strip {
	overflow-x: auto;
	overflow-y: hidden;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(8, 8, 8, 0.78);
	cursor: grab;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.home-auto-strip::-webkit-scrollbar {
	display: none;
}

.home-auto-strip.is-dragging {
	cursor: grabbing;
}

.home-auto-track {
	display: flex;
	width: max-content;
	gap: 0.55rem;
	padding: 0.55rem;
}

.home-strip-card {
	flex: 0 0 clamp(226px, 24vw, 298px);
	width: clamp(226px, 24vw, 298px);
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(9, 9, 9, 0.92);
}

.home-strip-card-link {
	position: relative;
	display: block;
	min-height: 300px;
}

.home-strip-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-strip-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.82) 78%, rgba(0, 0, 0, 0.93) 100%);
}

.home-strip-copy {
	position: absolute;
	left: 0.6rem;
	right: 0.6rem;
	bottom: 0.6rem;
	z-index: 2;
}

.home-strip-title {
	font-size: 1.18rem;
	line-height: 1.15;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.3rem;
}

.home-strip-meta {
	font-size: 0.78rem;
	color: rgba(249, 178, 51, 0.92);
	margin: 0 0 0.3rem;
}

.home-strip-episode-code {
	display: inline-flex;
	align-items: baseline;
	gap: 0.22rem;
	font-size: 1.28rem;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.home-strip-episode-season {
	color: rgba(249, 178, 51, 0.98);
}

.home-strip-episode-number {
	color: #fff;
}

.home-strip-excerpt {
	font-size: 0.84rem;
	line-height: 1.4;
	color: rgba(231, 231, 231, 0.86);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Ultimas temporadas */
.season-page-head {
	margin-top: 0.7rem;
	margin-bottom: 0.95rem;
}

.season-page-kicker {
	display: inline-block;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.26rem 0.64rem;
	border-radius: 999px;
	color: rgba(249, 178, 51, 0.96);
	border: 1px solid rgba(249, 178, 51, 0.42);
	background: rgba(249, 178, 51, 0.11);
	margin-bottom: 0.5rem;
}

.season-page-title {
	font-size: 2rem;
	line-height: 1.03;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.4rem;
}

.season-page-subtitle {
	max-width: 72ch;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(231, 231, 231, 0.78);
}

.season-hero-wrap {
	margin-bottom: 1rem;
}

.season-hero-grid {
	display: block;
}

.season-filmstrip {
	overflow-x: auto;
	overflow-y: hidden;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(8, 8, 8, 0.75);
	-ms-overflow-style: none;
	scrollbar-width: none;
	cursor: grab;
}

.season-filmstrip::-webkit-scrollbar {
	display: none;
}

.season-filmstrip.is-dragging {
	cursor: grabbing;
}

.season-filmstrip-track {
	display: flex;
	width: max-content;
	gap: 0.55rem;
	padding: 0.55rem;
}

.season-filmstrip-track.is-static {
	animation: none;
	width: 100%;
}

.season-hero-card {
	border-radius: 14px;
	overflow: hidden;
	flex: 0 0 clamp(210px, 24vw, 290px);
	width: clamp(210px, 24vw, 290px);
	background: rgba(10, 10, 10, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.season-hero-card-link {
	position: relative;
	display: block;
	min-height: 330px;
	text-decoration: none;
	background: #101010;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.season-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.season-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 24%, rgba(0, 0, 0, 0.83) 76%, rgba(0, 0, 0, 0.94) 100%);
}

.season-overlay-center {
	position: absolute;
	left: 50%;
	top: 47%;
	transform: translate(-50%, -50%);
	z-index: 6;
	display: flex;
	flex-direction: column;
	align-items: center;
	pointer-events: none;
	width: 100%;
}

.season-overlay-number {
	font-size: clamp(8rem, 18vw, 12rem);
	line-height: 0.82;
	font-weight: 800;
	color: rgba(236, 172, 38, 0.72);
	-webkit-text-stroke: 1.6px rgba(0, 0, 0, 0.9);
	paint-order: stroke fill;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.58);
	display: block;
	text-align: center;
}

.season-overlay-badge {
	margin-top: 0.24rem;
	font-size: 0.64rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
	background: rgba(249, 178, 51, 0.92);
	border-radius: 999px;
	padding: 0.24rem 0.6rem;
	white-space: nowrap;
}

.season-hero-copy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 0.72rem 0.7rem 0.74rem;
}

.season-hero-badge {
	display: inline-block;
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
	background: rgba(249, 178, 51, 0.94);
	border-radius: 999px;
	padding: 0.18rem 0.5rem;
	margin-bottom: 0.38rem;
}

.season-hero-title {
	font-size: 1.2rem;
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.2rem;
}

.season-hero-meta {
	font-size: 0.79rem;
	color: rgba(231, 231, 231, 0.84);
	margin-bottom: 0.24rem;
}

.season-hero-links,
.season-hero-links a {
	font-size: 0.78rem;
	color: rgba(249, 178, 51, 0.96);
}

.season-hero-series-link {
	display: block;
	padding: 0.5rem 0.62rem 0.58rem;
	text-decoration: none;
	font-size: 0.78rem;
	color: rgba(249, 178, 51, 0.96);
}

.season-hero-series-link:hover {
	color: rgba(255, 208, 121, 1);
}

.season-grid-section,
.season-question-section {
	margin-top: 1rem;
}

.season-grid-section {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	padding: 0.75rem 0.55rem 1.2rem;
	background:
		radial-gradient(120% 70% at 12% 0%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 55%),
		radial-gradient(90% 60% at 92% 12%, rgba(249, 178, 51, 0.08) 0%, rgba(249, 178, 51, 0) 58%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.season-grid-head {
	margin-bottom: 0.85rem;
}

.season-grid-kicker {
	display: inline-block;
	margin-bottom: 0.35rem;
	padding: 0.24rem 0.64rem;
	border-radius: 999px;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(249, 178, 51, 0.95);
	background: rgba(249, 178, 51, 0.11);
	border: 1px solid rgba(249, 178, 51, 0.36);
}

.season-grid-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.08;
	color: #fff;
	margin-bottom: 0.34rem;
}

.season-grid-subtitle {
	font-size: 0.92rem;
	line-height: 1.52;
	color: rgba(232, 232, 232, 0.74);
	max-width: 72ch;
}

.season-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.season-grid-card {
	border-radius: 12px;
	background: rgba(10, 10, 10, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.season-grid-card-link {
	display: grid;
	grid-template-columns: 122px minmax(0, 1fr);
	gap: 0.65rem;
	text-decoration: none;
	padding: 0.52rem;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.season-grid-copy {
	padding-right: 0.12rem;
}

.season-grid-media {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.season-grid-image {
	width: 100%;
	height: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
}

.season-grid-overlay-number {
	position: absolute;
	left: 50%;
	top: 46%;
	transform: translate(-50%, -50%);
	font-size: clamp(5.5rem, 11vw, 8rem);
	line-height: 0.82;
	font-weight: 800;
	color: rgba(236, 172, 38, 0.72);
	-webkit-text-stroke: 1.6px rgba(0, 0, 0, 0.9);
	paint-order: stroke fill;
	text-shadow: 0 6px 20px rgba(0, 0, 0, 0.58);
	z-index: 4;
	pointer-events: none;
}

.season-grid-overlay-badge {
	position: absolute;
	left: 50%;
	top: calc(46% + 2.9rem);
	transform: translate(-50%, 0);
	font-size: 0.58rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
	background: rgba(249, 178, 51, 0.92);
	border-radius: 999px;
	padding: 0.2rem 0.5rem;
	white-space: nowrap;
	z-index: 4;
	pointer-events: none;
}

.season-grid-card-title {
	font-size: 0.95rem;
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.26rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.season-grid-meta {
	font-size: 0.77rem;
	color: rgba(236, 236, 236, 0.74);
	line-height: 1.4;
	margin-bottom: 0.24rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.season-grid-cta,
.season-grid-cta a {
	font-size: 0.76rem;
	color: rgba(249, 178, 51, 0.95);
}

.season-grid-series-link {
	display: block;
	padding: 0.44rem 0.56rem 0.52rem;
	text-decoration: none;
	font-size: 0.76rem;
	color: rgba(249, 178, 51, 0.95);
}

.season-grid-series-link:hover {
	color: rgba(255, 208, 121, 1);
}

.season-question-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
}

.season-question-card {
	border-radius: 12px;
	padding: 0;
	background:
		radial-gradient(circle at 12% 10%, rgba(249, 178, 51, 0.16), rgba(249, 178, 51, 0) 35%),
		linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(8, 8, 8, 0.95));
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.season-question-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	text-decoration: none;
}

.season-question-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.season-editorial-label {
	position: absolute;
	right: 0.55rem;
	top: 0.55rem;
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 0.2rem 0.52rem;
	border: 1px solid transparent;
}

.season-editorial-label.is-confirmed {
	color: #0c120f;
	background: rgba(101, 230, 138, 0.9);
	border-color: rgba(101, 230, 138, 0.95);
}

.season-editorial-label.is-rumor {
	color: #111;
	background: rgba(255, 195, 91, 0.9);
	border-color: rgba(255, 195, 91, 0.95);
}

.season-editorial-label.is-unknown {
	color: rgba(238, 238, 238, 0.95);
	background: rgba(130, 130, 130, 0.5);
	border-color: rgba(190, 190, 190, 0.6);
}

.season-question-copy {
	padding: 0.8rem 0.85rem 0.86rem;
}

.season-question-q {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	margin-bottom: 0.35rem;
}

.season-question-a {
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(235, 235, 235, 0.78);
	margin-bottom: 0.35rem;
}

/* Últimos episodios (calendario) */
.episode-page-head {
	padding-top: 0.45rem;
	margin-bottom: 1rem;
}

.episode-page-title {
	font-size: clamp(2rem, 5.2vw, 4rem);
	line-height: 1;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.65rem;
}

.episode-page-subtitle {
	font-size: 1.06rem;
	line-height: 1.6;
	color: rgba(229, 229, 229, 0.8);
	max-width: 65ch;
}

.episode-calendar-section {
	margin-top: 1.05rem;
	padding: 1.1rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at 0% 0%, rgba(249, 178, 51, 0.12), rgba(249, 178, 51, 0) 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.episode-calendar-headline {
	margin-bottom: 0.85rem;
}

.episode-calendar-headline h2 {
	font-size: clamp(1.2rem, 3vw, 1.85rem);
	line-height: 1.15;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.35rem;
}

.episode-calendar-headline p {
	font-size: 0.92rem;
	line-height: 1.45;
	color: rgba(224, 224, 224, 0.78);
	margin: 0;
}

.episode-calendar-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.episode-date-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	min-height: 220px;
	border-radius: 18px;
	border: 1px solid rgba(249, 178, 51, 0.38);
	background: linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(6, 6, 6, 0.96));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.episode-date-label {
	font-size: 0.76rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(249, 178, 51, 0.9);
	margin: 0 0 0.15rem;
}

.episode-date-number {
	width: 100%;
	text-align: center;
	font-size: clamp(3.7rem, 8.5vw, 5.8rem);
	line-height: 0.9;
	font-weight: 800;
	color: #fff;
	font-variant-numeric: tabular-nums;
	margin: 0 0 0.2rem;
}

.episode-date-range {
	font-size: clamp(2.1rem, 5vw, 3.1rem);
}

.episode-date-month {
	width: 100%;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.05;
	font-weight: 700;
	color: rgba(236, 236, 236, 0.9);
	margin: 0;
	text-transform: capitalize;
}

.episode-calendar-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.95rem;
}

.episode-calendar-card {
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(11, 11, 11, 0.94);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.episode-calendar-media {
	position: relative;
	display: block;
	overflow: hidden;
}

.episode-calendar-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	transition: transform 260ms ease;
}

.episode-calendar-card:hover .episode-calendar-image {
	transform: scale(1.035);
}

.episode-calendar-badge {
	position: absolute;
	top: 0.55rem;
	left: 0.55rem;
	padding: 0.25rem 0.58rem;
	border-radius: 999px;
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #111;
	background: rgba(249, 178, 51, 0.95);
}

.episode-calendar-copy {
	padding: 0.82rem 0.84rem 0.78rem;
}

.episode-calendar-title {
	font-size: 1.06rem;
	line-height: 1.25;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.32rem;
}

.episode-calendar-series {
	font-size: 0.92rem;
	line-height: 1.4;
	color: rgba(232, 232, 232, 0.86);
	margin: 0 0 0.46rem;
}

.episode-calendar-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	font-size: 0.74rem;
	color: rgba(201, 201, 201, 0.77);
	margin: 0 0 0.5rem;
}

.episode-calendar-cta,
.episode-calendar-series-link {
	display: block;
	font-size: 0.96rem;
	color: rgba(249, 178, 51, 0.95);
	text-decoration: none;
}

.episode-calendar-series-link {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.58rem 0.84rem 0.72rem;
}


/* Mobile film menu */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(0.6px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
	z-index: 1000;
}

.mobile-menu-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.mobile-clapper-btn {
	width: 2.1rem;
	height: 2.1rem;
	margin-right: .6rem;
	margin-bottom: .6rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 0;
	background: transparent;
	box-shadow: none;
	outline: none;
	padding: 0;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.mobile-clapper-btn:focus,
.mobile-clapper-btn:focus-visible,
.mobile-clapper-btn:active {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}

.mobile-menu-icon {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
	box-shadow: none;
	border-radius: 8px;
}

.mobile-clapper-btn.is-clacking .mobile-menu-icon {
	animation: clapperClack 420ms cubic-bezier(0.25, 0.7, 0.2, 1) 1;
	transform-origin: 52% 18%;
}

@keyframes clapperClack {
	0% { transform: rotate(0deg) scale(1); }
	24% { transform: rotate(-16deg) scale(1.02); }
	52% { transform: rotate(0deg) scale(1); }
	74% { transform: rotate(-7deg) scale(1.01); }
	100% { transform: rotate(0deg) scale(1); }
}

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

/* Ultimas series (5-26) */
.latest-series-grid-section {
	position: relative;
	margin-top: 1.5rem;
	padding: 1.25rem;
	border-radius: 18px;
	background:
		radial-gradient(circle at 10% 10%, rgba(249, 178, 51, 0.18), rgba(249, 178, 51, 0) 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.latest-series-grid-head {
	margin-bottom: 1.1rem;
	text-align: center;
}

.latest-series-grid-kicker {
	display: inline-block;
	margin-bottom: 0.35rem;
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(249, 178, 51, 0.95);
	background-color: rgba(249, 178, 51, 0.12);
	border: 1px solid rgba(249, 178, 51, 0.35);
}

.latest-series-grid-title {
	font-size: 1.5rem;
	line-height: 1.15;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.45rem;
}

.latest-series-grid-subtitle {
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(230, 230, 230, 0.75);
	max-width: 52ch;
	margin: 0 auto;
}

.latest-series-grid {
	display: grid;
	gap: 0.95rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.latest-series-page-head {
	padding: 1rem 1rem 0.2rem;
}

.latest-series-page-title {
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1;
	font-weight: 800;
	color: #fff;
	margin: 0;
}

.latest-series-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 1.2rem;
}

.latest-series-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.8rem;
	padding: 0.68rem 0.92rem;
	border-radius: 999px;
	text-decoration: none;
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.latest-series-page-link.is-active {
	color: #111;
	background: rgba(249, 178, 51, 0.96);
	border-color: rgba(249, 178, 51, 1);
	font-weight: 700;
}

.latest-series-page-link.is-disabled {
	opacity: 0.45;
}

.latest-series-card {
	width: 100%;
}

.latest-series-card-link {
	display: block;
	height: 100%;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(10, 10, 10, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.latest-series-card-link:hover {
	transform: translateY(-4px);
	border-color: rgba(249, 178, 51, 0.55);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
}

.latest-series-card-media {
	position: relative;
	aspect-ratio: 2 / 3;
	overflow: hidden;
}

.latest-series-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.76) 100%);
}

.latest-series-card-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 260ms ease;
}

.latest-series-card-link:hover .latest-series-card-image {
	transform: scale(1.06);
}

.latest-series-card-copy {
	padding: 0.65rem 0.7rem 0.8rem;
}

.latest-series-card-title {
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.25;
	color: rgba(249, 178, 51, 0.95);
	margin-bottom: 0.38rem;
}

.latest-series-card-overview {
	font-size: 0.8rem;
	line-height: 1.45;
	color: rgba(232, 232, 232, 0.8);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.text-golden {
	font-weight: 800;
	color: rgb(249, 178, 51, .8);
}

#imgContainer {
    padding: 1rem 0; /* Espaciado superior e inferior */
}
#iframe_video-0, #player {
	display:none;
}
.seasons-list{
	display: flex;
	width: 100%;
	list-style-type: none;
	padding: .4rem;
}
.seasons-list ul{
	display: inline-flex;
	align-items: center;
	text-align: center;
	margin:0 auto 0 auto;
}

.season-number {
	height: 6rem;
	min-height: 6rem;
	max-height: 6rem;
	min-width: 6rem;
	font-size: 1.4rem;
	color:#fff;
	background-color: rgb(249, 178, 51, .8);
	border-radius: 8px;
	padding: .8rem;
	margin:.4rem;
	text-align: center;
	vertical-align: middle;
}

.season-number-active {
	height: 6rem;
	min-height: 6rem;
	max-height: 6rem;
	min-width: 6rem;
	font-size: 1.4rem;
	font-weight: 600;
	color: rgb(249, 178, 51, .8);
	background-color: #010101;
	border-width: 4px;
	border-color:rgb(249, 178, 51, .8);
	border-radius: 8px;
	padding: .8rem;
	margin:.4rem;
	text-align: center;
	vertical-align: middle;
}

#seasons-list li:hover {
	background-color: #fff;
	color: rgb(249, 178, 51, .8);
}

/* Estilos para la sección de la última serie */
.video-cta {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-cta .z-negative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.video-cta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-cta .bg-black {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.video-cta .container {
    position: relative;
    z-index: 10;
}


/* Episodes widget */
.episodes-wrapper { 
	width:100%; 
	max-width:100%; 
	position:relative; 
	overflow-x:hidden; 
	box-sizing:border-box; 
}

/* Key: allow vertical pan by default so page scroll works when gesture starts on a card.
   Horizontal dragging is handled by JS (touchmove + preventDefault when horizontal). */
.episodes-container { 
	width:100%; 
	max-width:100%; 
	display:flex; 
	flex-wrap:nowrap; 
	overflow-x:auto; 
	-webkit-overflow-scrolling:touch; 
	scroll-behavior:smooth; 
	box-sizing:border-box; 
	touch-action: pan-y; /* allow vertical scrolling by default; horizontal handled by JS */ 
}

.episodes-container .episodeItem { 
	flex: 0 0 auto; 
	box-sizing:border-box; 
	touch-action: auto; /* allow vertical gestures on children */ 
}

/* Asegurar que las imágenes no provoquen overflow */
.episodes-container .episodeItem img { 
	max-width:100%; 
	height:auto; 
	display:block; 
}

/* Nav buttons visual tweaks */
.episodes-nav button {
  cursor: pointer;
}
.episodes-nav button:disabled {
  opacity: 0.45;
  cursor: default;
}
.episodes-nav button:focus,
.episodes-nav button:active {
  outline: none;
  box-shadow: none;
}

/* Ocultar scrollbars pero mantener scroll funcional */
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* Serie detail page */
.serie-main {
	padding-top: calc(var(--site-nav-height) + 1.2rem);
}

.legal-hero {
	margin-top: 0.7rem;
	margin-bottom: 0.9rem;
}

.legal-title {
	font-size: clamp(2rem, 5.1vw, 3.6rem);
	line-height: 1.03;
	font-weight: 800;
	color: #fff;
	margin-bottom: 0.6rem;
}

.legal-subtitle {
	font-size: 1rem;
	line-height: 1.62;
	color: rgba(231, 231, 231, 0.8);
	max-width: 72ch;
}

.legal-section {
	margin-top: 0.95rem;
	padding: 1rem 1.05rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(circle at 0% 0%, rgba(249, 178, 51, 0.11), rgba(249, 178, 51, 0) 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.legal-section h2 {
	font-size: clamp(1.1rem, 2.2vw, 1.38rem);
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.55rem;
}

.legal-section p {
	font-size: 0.95rem;
	line-height: 1.63;
	color: rgba(228, 228, 228, 0.84);
	margin: 0 0 0.52rem;
}

.legal-note {
	font-size: 0.88rem;
	color: rgba(249, 178, 51, 0.95) !important;
}

.episode-detail-hero {
	margin-top: 0.7rem;
}

.episode-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
	gap: 1rem;
	border-radius: 20px;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(circle at 0% 0%, rgba(249, 178, 51, 0.18), rgba(249, 178, 51, 0) 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.episode-detail-media {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.episode-detail-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.episode-detail-copy {
	padding: 0.2rem 0.2rem 0.1rem;
}

.episode-detail-kicker {
	font-size: 1.48rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(249, 178, 51, 0.95);
	margin-bottom: 0.42rem;
}

.episode-detail-title {
	font-size: clamp(1.6rem, 4.2vw, 2.9rem);
	line-height: 1.05;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.45rem;
}

.episode-detail-series {
	margin: 0 0 0.55rem;
	font-size: 1.02rem;
	line-height: 1.3;
}

.episode-detail-series a {
	color: rgba(249, 178, 51, 0.95);
	text-decoration: none;
}

.episode-detail-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.7rem;
}

.episode-chip {
	font-size: 1.45rem;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	color: rgba(249, 178, 51, 0.95);
	border: 1px solid rgba(249, 178, 51, 0.35);
	background: rgba(249, 178, 51, 0.11);
}

.episode-detail-overview {
	font-size: 0.98rem;
	line-height: 1.62;
	color: rgba(231, 231, 231, 0.86);
	margin-bottom: 0.85rem;
}

.episode-detail-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
}

.episode-detail-link {
	color: rgba(249, 178, 51, 0.95);
	font-size: 0.95rem;
	text-decoration: none;
}

/* Últimas críticas */
.review-page-head {
	padding-top: 0.45rem;
	margin-bottom: 0.9rem;
}

.review-page-title {
	font-size: clamp(2rem, 5.2vw, 4rem);
	line-height: 1;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.65rem;
}

.review-page-subtitle {
	font-size: 1.03rem;
	line-height: 1.6;
	color: rgba(229, 229, 229, 0.8);
	max-width: 65ch;
}

.review-featured-section,
.review-grid-section {
	margin-top: 1rem;
	padding: 1.1rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at 0% 0%, rgba(249, 178, 51, 0.12), rgba(249, 178, 51, 0) 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.review-featured-head h2,
.review-grid-head h2 {
	font-size: clamp(1.2rem, 3vw, 1.75rem);
	line-height: 1.1;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.8rem;
}

.review-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.review-featured-card,
.review-grid-card {
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(11, 11, 11, 0.94);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.review-card-media {
	position: relative;
	display: block;
}

.review-card-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.review-card-badge {
	position: absolute;
	top: 0.55rem;
	left: 0.55rem;
	padding: 0.24rem 0.56rem;
	border-radius: 999px;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #111;
	background: rgba(249, 178, 51, 0.95);
}

.review-card-copy {
	padding: 0.82rem 0.84rem 0.78rem;
}

.review-card-title {
	font-size: 1.05rem;
	line-height: 1.25;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.3rem;
}

.review-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	font-size: 0.74rem;
	color: rgba(201, 201, 201, 0.78);
	margin: 0 0 0.34rem;
}

.review-card-subtitle {
	font-size: 0.82rem;
	line-height: 1.4;
	color: rgba(233, 233, 233, 0.9);
	margin: 0 0 0.42rem;
}

.review-card-text {
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(222, 222, 222, 0.82);
	margin: 0 0 0.52rem;
}

.review-card-cta {
	display: inline-block;
	font-size: 0.94rem;
	color: rgba(249, 178, 51, 0.95);
	text-decoration: none;
}

.review-pagination {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.review-pagination-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	padding: 0 0.68rem;
	border-radius: 999px;
	font-size: 0.85rem;
	text-decoration: none;
	color: rgba(243, 243, 243, 0.93);
	background: rgba(18, 18, 18, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.review-pagination-link.is-current {
	color: #111;
	background: rgba(249, 178, 51, 0.96);
	border-color: rgba(249, 178, 51, 0.96);
	font-weight: 700;
}

.review-pagination-dots {
	color: rgba(205, 205, 205, 0.85);
	padding: 0 0.1rem;
}

.review-main {
	padding-top: 6rem;
}

.review-detail-hero {
	margin-top: 1.6rem;
}

.review-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
	gap: 1.6rem;
	align-items: center;
	padding: 1.1rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at 0% 0%, rgba(249, 178, 51, 0.1), rgba(249, 178, 51, 0) 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.review-detail-media {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(10, 10, 10, 0.95);
}

.review-detail-image {
	width: 100%;
	height: auto;
	display: block;
}

.review-detail-copy {
	color: #fff;
}

.review-detail-icon-bk {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(14, 14, 14, 0.9);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.9rem;
}

.review-detail-icon svg {
	width: 38px;
	height: 38px;
}

.review-detail-kicker {
	font-size: 0.86rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(249, 178, 51, 0.86);
	margin: 0 0 0.5rem;
}

.review-detail-title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.05;
	font-weight: 800;
	margin: 0 0 0.5rem;
}

.review-detail-subtitle {
	font-size: 1.05rem;
	color: rgba(229, 229, 229, 0.78);
	margin: 0 0 0.9rem;
}

.review-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	font-size: 0.92rem;
	color: rgba(214, 214, 214, 0.75);
	margin-bottom: 0.7rem;
}

.review-detail-series-link {
	display: inline-block;
	font-size: 0.85rem;
	color: rgba(200, 200, 200, 0.7);
	text-decoration: none;
	border-bottom: 1px solid rgba(200, 200, 200, 0.25);
}

.review-detail-body {
	margin-top: 1.2rem;
}

.review-detail-content {
	padding: 1.4rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(9, 9, 9, 0.92);
}

.review-detail-heading {
	margin: 0 0 0.9rem;
	font-size: 1.4rem;
	font-weight: 800;
	color: #fff;
}

.review-detail-text {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(230, 230, 230, 0.86);
}

.serie-section {
	margin-top: 1.25rem;
}

.serie-section-head {
	margin-bottom: 0.9rem;
}

.serie-section-title {
	display: inline-block;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.1;
	padding-bottom: 0.3rem;
	border-bottom: 2px solid rgba(249, 178, 51, 0.75);
}

.serie-hero {
	margin-top: 0.8rem;
}

.serie-hero-inner {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 430px;
	background-size: cover;
	background-position: center 20%;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.serie-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(0, 0, 0, 0.92) 14%, rgba(0, 0, 0, 0.6) 48%, rgba(0, 0, 0, 0.88) 100%),
		radial-gradient(circle at 12% 28%, rgba(249, 178, 51, 0.3), rgba(249, 178, 51, 0) 38%);
}

.serie-hero-content {
	position: relative;
	z-index: 2;
	padding: 1.4rem 1.2rem 1.5rem;
}

.serie-hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 132px;
	gap: 1rem;
	align-items: start;
}

.serie-hero-copy-main {
	min-width: 0;
}

.serie-hero-poster-wrap {
	position: relative;
}

.serie-hero-kicker {
	color: rgba(255, 255, 255, 0.96);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: none;
	margin-bottom: 0.5rem;
}

.serie-hero-kicker-accent {
	color: rgba(249, 178, 51, 0.95);
}

.serie-hero-title {
	color: #fff;
	font-size: 2rem;
	line-height: 1.04;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.serie-hero-subtitle {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.95rem;
	margin-bottom: 0.8rem;
}

.serie-hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.9rem;
}

.serie-chip {
	background: rgba(249, 178, 51, 0.14);
	border: 1px solid rgba(249, 178, 51, 0.36);
	color: rgba(249, 178, 51, 0.97);
	padding: 0.36rem 0.62rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
}

.serie-hero-overview {
	color: rgba(243, 243, 243, 0.9);
	font-size: 0.96rem;
	line-height: 1.58;
	max-width: 64ch;
}

.serie-hero-actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	align-items: center;
}

.serie-hero-poster-toggle {
	position: relative;
	display: block;
	width: 132px;
	margin-top: 5.7rem;
	padding: 0;
	border: 2px solid rgba(249, 178, 51, 0.84);
	border-radius: 18px;
	overflow: hidden;
	background: rgba(6, 6, 6, 0.94);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
	z-index: 3;
}

.serie-hero-poster-toggle:hover {
	transform: translateY(-2px) scale(1.02);
	border-color: rgba(249, 178, 51, 1);
	box-shadow: 0 24px 46px rgba(0, 0, 0, 0.4);
}

.serie-hero-poster-image {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
}

.serie-hero-poster-rating {
	display: none;
	margin-top: 0.45rem;
}

.serie-hero-poster-favorite {
	display: none;
}

.serie-poster-close {
	display: none;
}

.serie-hero-poster-toggle.is-expanded {
	position: fixed;
	left: 50%;
	top: 50%;
	width: min(86vw, 460px);
	margin-top: 0;
	transform: translate(-50%, -50%);
	z-index: 2600;
	border-color: rgba(249, 178, 51, 1);
	background: rgba(8, 8, 8, 0.98);
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.7);
}

body.serie-poster-expanded::after {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.04);
	z-index: 2500;
}

.serie-poster-close.is-visible {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 2650;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(10, 10, 10, 0.92);
	color: #fff;
	font-size: 1.55rem;
	line-height: 1;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
}

@media (max-width: 767px) {
	.serie-hero-content {
		padding: 1rem 0.85rem 1.15rem;
	}

	.serie-hero-layout {
		grid-template-columns: minmax(0, 1fr) minmax(118px, 38vw);
		grid-template-areas:
			"kicker kicker"
			"title title"
			"meta meta"
			"chips poster"
			"overview overview";
		align-items: start;
		column-gap: 0.9rem;
		row-gap: 0.25rem;
	}

	.serie-hero-copy-main {
		display: contents;
	}

	.serie-hero-kicker {
		grid-area: kicker;
		margin-bottom: 0.25rem;
	}

	.serie-hero-title {
		grid-area: title;
		font-size: 1.75rem;
		line-height: 1.02;
		margin-bottom: 0.18rem;
	}

	.serie-hero-subtitle {
		grid-area: meta;
		margin-bottom: 0.55rem;
		font-size: 0.92rem;
		line-height: 1.35;
	}

	.serie-hero-chips {
		grid-area: chips;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.4rem;
		margin-bottom: 0;
		padding-top: 0.05rem;
	}

	.serie-chip-popularity {
		display: none;
	}

	.serie-chip {
		font-size: 0.84rem;
		padding: 0.42rem 0.72rem;
	}

	.serie-hero-poster-wrap {
		grid-area: poster;
		align-self: start;
		justify-self: end;
		width: min(38vw, 152px);
	}

	.serie-hero-poster-toggle {
		left:-30%;
		width: 130%;
		margin-top: 0;
	}

	.serie-hero-poster-rating {
		display: block;
		margin-top: 0.4rem;
		text-align: center;
	}

	.serie-hero-poster-favorite {
		display: block;
		position: absolute;
		right: 0.35rem;
		bottom: 2.2rem;
		z-index: 4;
	}

	.serie-hero-poster-favorite .favorite-toggle {
		position: static;
		width: 2.35rem;
		height: 2.35rem;
		background: rgba(6, 6, 6, 0.82);
	}

	.serie-hero-poster-favorite .favorite-toggle::after,
	.serie-hero-poster-favorite .favorite-toggle-detail::after {
		display: none;
	}

	.serie-poster-close.is-visible {
		top: 0.75rem;
		right: 0.75rem;
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1.4rem;
	}

	.serie-hero-poster-toggle.is-expanded {
		width: min(88vw, 420px);
	}

	.serie-hero-overview {
		grid-area: overview;
		margin-top: 0.8rem;
		max-width: none;
		font-size: 1.4rem;
		line-height: 1.62;
	}

	.serie-hero-actions {
		display: none;
	}

	.serie-hero-actions .favorite-toggle,
	.serie-hero-actions .favorite-toggle-detail {
		display: none;
	}
}

.serie-open-video-btn {
	border: 1px solid rgba(249, 178, 51, 0.5);
	background: rgba(249, 178, 51, 0.15);
	color: rgba(249, 178, 51, 0.98);
	padding: 0.5rem 0.8rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: background 180ms ease, transform 180ms ease;
}

.serie-open-video-btn:hover {
	background: rgba(249, 178, 51, 0.26);
	transform: translateY(-1px);
}

.serie-trailer-frame-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.serie-trailer-frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.serie-video-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
	margin-top: 0.7rem;
}

.serie-video-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: #090909;
	cursor: pointer;
}

.serie-video-card-image {
	width: 100%;
	height: 100%;
	min-height: 95px;
	object-fit: cover;
	opacity: 0.84;
	transition: opacity 180ms ease, transform 180ms ease;
}

.serie-video-card:hover .serie-video-card-image {
	opacity: 1;
	transform: scale(1.04);
}

.serie-video-card-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	font-size: 0.72rem;
}

.serie-seasons-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.serie-season-card {
	position: relative;
	display: block;
	min-height: 140px;
	border-radius: 12px;
	overflow: hidden;
	background: #0c0c0c;
	border: 1px solid rgba(255, 255, 255, 0.09);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.serie-season-card:hover {
	transform: translateY(-2px);
	border-color: rgba(249, 178, 51, 0.58);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.serie-season-card-media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
	filter: saturate(0.9) contrast(1.05);
}

.serie-season-card-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(165deg, rgba(8, 8, 8, 0.66) 0%, rgba(8, 8, 8, 0.9) 56%, rgba(8, 8, 8, 0.97) 100%),
		linear-gradient(90deg, rgba(249, 178, 51, 0.22) 0%, rgba(249, 178, 51, 0) 30%);
}

.serie-season-card::after {
	content: "";
	position: absolute;
	right: -32px;
	bottom: -36px;
	width: 120px;
	height: 120px;
	background: rgba(249, 178, 51, 0.13);
	border-radius: 22px;
	transform: rotate(25deg);
	pointer-events: none;
}

.serie-season-card-content {
	position: relative;
	z-index: 2;
	padding: 0.85rem;
}

.serie-season-card-kicker {
	display: block;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.serie-season-card-title {
	margin-top: 0.25rem;
	font-size: 1.45rem;
	font-weight: 700;
	color: rgba(249, 178, 51, 0.95);
	line-height: 1;
}

.serie-season-card-meta {
	margin-top: 0.3rem;
	font-size: 0.86rem;
	color: rgba(236, 236, 236, 0.8);
}

.serie-episodes-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

.serie-episodes-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.75rem;
}

.serie-episode-filter {
	font-size: 0.76rem;
	color: rgba(232, 232, 232, 0.85);
	padding: 0.32rem 0.58rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.serie-episode-filter.is-active {
	color: #151515;
	background: rgba(249, 178, 51, 0.95);
	border-color: rgba(249, 178, 51, 1);
}

.serie-episode-card-link {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 0.75rem;
	background: rgba(14, 14, 14, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease;
}

.serie-episode-card-link:hover {
	transform: translateY(-2px);
	border-color: rgba(249, 178, 51, 0.45);
}

.serie-episode-card-image {
	width: 100%;
	height: 100%;
	min-height: 120px;
	object-fit: cover;
}

.serie-episode-card-copy {
	padding: 0.65rem 0.7rem 0.72rem 0;
}

.serie-episode-card-top {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	margin-bottom: 0.4rem;
}

.serie-episode-card-badge {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #111;
	background: rgba(249, 178, 51, 0.92);
	padding: 0.24rem 0.48rem;
	border-radius: 999px;
}

.serie-episode-card-date {
	font-size: 0.72rem;
	color: rgba(232, 232, 232, 0.72);
}

.serie-episode-card-title {
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	margin-bottom: 0.35rem;
}

.serie-episode-card-overview {
	font-size: 0.82rem;
	line-height: 1.45;
	color: rgba(230, 230, 230, 0.78);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.serie-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
}

.serie-gallery-item {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.serie-gallery-image {
	width: 100%;
	height: 100%;
	min-height: 100px;
	object-fit: cover;
	transition: transform 220ms ease;
}

.serie-gallery-item:hover .serie-gallery-image {
	transform: scale(1.05);
}

.serie-cast-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.serie-cast-card {
	border-radius: 12px;
	overflow: hidden;
	background: rgba(14, 14, 14, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.serie-cast-media {
	position: relative;
}

.serie-cast-link {
	display: block;
	text-decoration: none;
}

.serie-cast-image {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}

.serie-cast-copy {
	display: block;
	padding: 0.56rem 0.62rem 0.65rem;
	text-decoration: none;
}

.serie-cast-name {
	font-size: 0.88rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.22;
	margin-bottom: 0.18rem;
}

.serie-cast-role {
	font-size: 0.75rem;
	color: rgba(249, 178, 51, 0.92);
}

.serie-cast-link:hover .serie-cast-name {
	color: rgba(249, 178, 51, 0.95);
}

.serie-cast-copy:hover .serie-cast-name {
	color: rgba(249, 178, 51, 0.95);
}

.serie-cast-media .favorite-toggle-cast {
	top: auto !important;
	right: 0.65rem !important;
	bottom: 0.65rem !important;
	left: auto !important;
}

.serie-review-box {
	margin-top: 0.5rem;
	padding: 1rem;
	border-radius: 14px;
	background:
		radial-gradient(circle at 20% 10%, rgba(249, 178, 51, 0.2), rgba(249, 178, 51, 0) 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
	border: 1px solid rgba(255, 255, 255, 0.11);
}

.serie-review-kicker {
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(249, 178, 51, 0.9);
	margin-bottom: 0.36rem;
}

.serie-review-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.55rem;
}

.serie-review-text {
	font-size: 0.95rem;
	line-height: 1.58;
	color: rgba(235, 235, 235, 0.85);
}

.serie-empty {
	padding: 0.9rem 1rem;
	background: rgba(20, 20, 20, 0.88);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(239, 239, 239, 0.75);
	font-size: 0.9rem;
}

.serie-video-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.serie-video-modal.is-open {
	display: block;
}

.serie-video-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.74);
	backdrop-filter: blur(3px);
}

.serie-video-modal-panel {
	position: relative;
	z-index: 2;
	width: min(94vw, 1080px);
	margin: 6vh auto 0;
}

.serie-video-modal-close {
	position: absolute;
	right: 0;
	top: -2.2rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	font-size: 1rem;
}

.serie-video-modal-frame-wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: #000;
}

.serie-video-modal-frame {
	width: 100%;
	height: 100%;
}

body.video-modal-open {
	overflow: hidden;
}


/* Actor detail page */
.actor-main {
	padding-top: calc(var(--site-nav-height) + var(--main-gap) + 1.2rem);
}

.actor-hero {
	margin-top: 0.2rem;
}

.actor-hero-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	padding: 1rem;
	border-radius: 18px;
	background:
		radial-gradient(circle at 10% 12%, rgba(249, 178, 51, 0.2), rgba(249, 178, 51, 0) 36%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.actor-hero-photo-wrap {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #0a0a0a;
}

.actor-hero-photo {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}

.actor-hero-favorite {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	z-index: 4;
}

.actor-hero-favorite .favorite-toggle {
	position: relative;
	top: auto;
	right: auto;
	left: auto;
	bottom: auto;
	display: inline-flex;
}

.actor-hero-kicker {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(249, 178, 51, 0.95);
	margin-bottom: 0.45rem;
}

.actor-hero-title {
	font-size: 2rem;
	line-height: 1.05;
	color: #fff;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.actor-hero-subtitle {
	font-size: 0.95rem;
	color: rgba(236, 236, 236, 0.74);
	margin-bottom: 0.72rem;
}

.actor-hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.9rem;
}

.actor-chip {
	padding: 0.34rem 0.58rem;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 600;
	color: rgba(249, 178, 51, 0.96);
	background: rgba(249, 178, 51, 0.14);
	border: 1px solid rgba(249, 178, 51, 0.34);
}

.actor-hero-bio {
	font-size: 1.15rem;
	line-height: 2 !important;
	color: rgba(240, 240, 240, 0.88);
	max-width: 70ch;
}

.actor-meta-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.45rem;
	margin-top: 0.95rem;
}

.actor-meta-item {
	padding: 0.6rem 0.7rem;
	border-radius: 10px;
	background: rgba(14, 14, 14, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.actor-meta-item span {
	display: block;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.58);
	margin-bottom: 0.2rem;
}

.actor-meta-item strong,
.actor-meta-item a {
	font-size: 0.88rem;
	color: #fff;
	font-weight: 600;
}

.actor-meta-item a:hover {
	color: rgba(249, 178, 51, 0.95);
}

.actor-section {
	margin-top: 1.4rem;
}

.actor-section-head {
	margin-bottom: 0.82rem;
}

.actor-section-title {
	display: inline-block;
	font-size: 1.35rem;
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	padding-bottom: 0.28rem;
	border-bottom: 2px solid rgba(249, 178, 51, 0.72);
}

.actor-filters-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 0.8rem;
}

.actor-filter-label {
	font-size: 0.75rem;
	color: rgba(230, 230, 230, 0.78);
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.actor-filter-select {
	min-width: 180px;
	border-radius: 10px;
	padding: 0.42rem 0.55rem;
	background: rgba(13, 13, 13, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 0.82rem;
}

.actor-subsection-head {
	margin: 1.2rem 0 0.7rem;
}

.actor-subsection-title {
	display: inline-block;
	font-size: 1.05rem;
	line-height: 1.1;
	font-weight: 700;
	color: rgba(249, 178, 51, 0.96);
	padding-bottom: 0.22rem;
	border-bottom: 1px solid rgba(249, 178, 51, 0.45);
}

.actor-metro-timeline {
	position: relative;
	display: grid;
	gap: 1rem;
	padding-left: 0.15rem;
}

.actor-metro-timeline::before {
	content: "";
	position: absolute;
	left: 6.55rem;
	top: 0.2rem;
	bottom: 0.2rem;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(249, 178, 51, 0.95), rgba(249, 178, 51, 0.35));
	box-shadow: 0 0 18px rgba(249, 178, 51, 0.16);
}

.actor-metro-stop {
	position: relative;
	display: grid;
	grid-template-columns: 5.8rem 2.2rem minmax(0, 1fr);
	align-items: start;
	column-gap: 0.85rem;
}

.actor-metro-year {
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
	color: rgba(249, 178, 51, 0.96);
	padding-top: 0.12rem;
	text-align: right;
}

.actor-metro-node {
	position: relative;
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.05rem;
	border-radius: 999px;
	background: rgba(249, 178, 51, 0.98);
	border: 3px solid rgba(8, 8, 8, 0.92);
	box-shadow: 0 0 0 4px rgba(249, 178, 51, 0.16);
	z-index: 2;
}

.actor-metro-events {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 0.02rem 0 0.2rem;
}

.actor-metro-event {
	display: inline-flex;
	align-items: flex-start;
	width: fit-content;
	max-width: 100%;
	padding: 0.48rem 0.68rem;
	border-radius: 12px;
	text-decoration: none;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #fff;
	background: rgba(13, 13, 13, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 170ms ease, border-color 170ms ease, color 170ms ease;
}

.actor-metro-event:hover {
	transform: translateX(2px);
	border-color: rgba(249, 178, 51, 0.56);
	color: rgba(249, 178, 51, 0.98);
}

.actor-metro-event.is-program {
	color: rgba(234, 234, 234, 0.84);
	border-color: rgba(255, 255, 255, 0.12);
}

.actor-series-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.actor-series-card {
	display: block;
	text-decoration: none;
	border-radius: 12px;
	overflow: hidden;
	background: rgba(12, 12, 12, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 170ms ease, border-color 170ms ease;
}

.actor-series-card:hover {
	transform: translateY(-2px);
	border-color: rgba(249, 178, 51, 0.54);
}

.actor-series-image {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
}

.actor-series-meta {
	padding: 0.44rem 0.62rem 0;
	font-size: 0.72rem;
	color: rgba(249, 178, 51, 0.86);
}

.actor-series-title {
	padding: 0.56rem 0.62rem 0.66rem;
	font-size: 0.86rem;
	line-height: 1.25;
	color: #fff;
	font-weight: 700;
}

.actor-series-card:hover .actor-series-title {
	color: rgba(249, 178, 51, 0.95);
}

.actor-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 1rem;
}

.actor-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.2rem;
	height: 2.2rem;
	padding: 0 0.72rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	color: rgba(244, 244, 244, 0.9);
	background: rgba(13, 13, 13, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.14);
	transition: transform 170ms ease, border-color 170ms ease, color 170ms ease, background 170ms ease;
}

.actor-page-link:hover {
	transform: translateY(-1px);
	color: rgba(249, 178, 51, 0.98);
	border-color: rgba(249, 178, 51, 0.56);
}

.actor-page-link.is-active {
	color: #111;
	background: rgba(249, 178, 51, 0.96);
	border-color: rgba(249, 178, 51, 1);
}

.actor-page-link.is-disabled {
	opacity: 0.45;
	pointer-events: none;
}

.actor-page-status {
	margin-top: 0.55rem;
	text-align: center;
	font-size: 0.78rem;
	color: rgba(223, 223, 223, 0.72);
}

.actor-chapters-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
}

.actor-chapter-card {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 0.7rem;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	background: rgba(13, 13, 13, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.09);
}

.actor-chapter-image {
	width: 100%;
	height: 100%;
	min-height: 105px;
	object-fit: cover;
}

.actor-chapter-copy {
	padding: 0.58rem 0.62rem 0.62rem 0;
}

.actor-chapter-top {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: space-between;
	font-size: 0.72rem;
	color: rgba(238, 238, 238, 0.74);
	margin-bottom: 0.28rem;
}

.actor-chapter-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 0.26rem;
}

.actor-chapter-series {
	font-size: 0.78rem;
	color: rgba(249, 178, 51, 0.9);
}

.pop-stars {
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	line-height: 1;
	font-size: 0.92rem;
	vertical-align: middle;
}

.pop-star-glyph {
	display: inline-block;
	line-height: 1;
	color: rgba(255, 255, 255, 0.2);
}

.pop-star-glyph.is-filled {
	color: rgba(249, 178, 51, 0.98);
}

.pop-star-glyph.is-half {
	background: linear-gradient(90deg, rgba(249, 178, 51, 0.98) 50%, rgba(255, 255, 255, 0.2) 50%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.actor-roles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 0.9rem;
}

.actor-role-card {
	display: block;
	text-decoration: none;
	background: rgba(12, 12, 12, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
	transition: transform 170ms ease, border-color 170ms ease;
}

.actor-role-card:hover {
	transform: translateY(-2px);
	border-color: rgba(249, 178, 51, 0.55);
}

.actor-role-media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: rgba(18, 18, 18, 0.9);
}

.actor-role-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.actor-role-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
	display: flex;
	align-items: flex-end;
	padding: 0.55rem;
}

.actor-role-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	background: rgba(5, 5, 5, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.78rem;
	font-weight: 700;
	color: #fff;
}

.actor-role-band {                                                                                 
  display: inline-flex;                                                                            
  align-items: center;                                                                             
  padding: 0.5rem 1.8rem 0.5rem 1.8rem; /* Más padding derecha, ajustado izquierda */
  margin-left: -0.8rem; /* Elimina el espacio hueco izquierdo */
  margin-bottom: 1.8rem; /* Sube la pastilla */
  border-radius: 0 999px 999px 0;                                                                  
  background: rgba(5, 5, 5, 0.85);                                                                  
  font-size: 1.78rem;                                                                              
  font-weight: 800;                                                                                
  font-style: italic; /* Texto en cursiva */
  color: #000;                                                                                    
  position: relative;                                                                             
  z-index: 1;                                                                                      
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Sombra cinematográfica */
  backdrop-filter: blur(5px); /* Efecto vidrio */
}                                                                                                  
                                                                                                  
/* Degradado base oro-plata */
.actor-role-band::before {                                                                         
  content: '';                                                                                     
  position: absolute;                                                                              
  top: 0;                                                                                          
  left: 0;                                                                                         
  right: 0;                                                                                        
  bottom: 0;                                                                                    
  background: linear-gradient(90deg, 
    rgba(255, 215, 0, 0.7) 0%, 
    rgba(255, 215, 0, 0.3) 50%, 
    rgba(192, 192, 192, 0.5) 100%);
  border-radius: 0 999px 999px 0;                                                                 
  z-index: -2;                                                                                                 
}

/* Borde animado con efecto "shimmer" cinematográfico */
.actor-role-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 999px 999px 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 215, 0, 0.8) 25%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 215, 0, 0.8) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  opacity: 0.6;
}

/* Animación de brillo tipo "alfombra roja" */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    background-position: 200% 0;
    opacity: 0.3;
  }
}

/* Efecto hover opcional - más dramático */
.actor-role-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

/* Texto con sutil brillo dorado */
.actor-role-band span {
  background: linear-gradient(90deg, #fff 0%, #ffd700 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  }
}

.actor-role-body {
	padding: 0.65rem 0.75rem 0.8rem;
}

.actor-role-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.35rem;
}

.actor-role-card:hover .actor-role-title {
	color: rgba(249, 178, 51, 0.96);
}

.actor-role-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.actor-role-meta-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.18rem 0.5rem;
	border-radius: 999px;
	background: rgba(249, 178, 51, 0.12);
	border: 1px solid rgba(249, 178, 51, 0.35);
	font-size: 0.72rem;
	color: rgba(249, 178, 51, 0.95);
}

.actor-role-meta-pill.is-dim {
	color: rgba(230, 230, 230, 0.8);
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
}

.actor-roles-grid--characters {
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.actor-roles-grid--characters .actor-role-card {
	background: linear-gradient(180deg, rgba(16, 16, 16, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
	border-color: rgba(249, 178, 51, 0.2);
}

.actor-roles-grid--characters .actor-role-media-dvd {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: visible;
	padding: 0.5rem 0.9rem 0.4rem 0.48rem;
	background: radial-gradient(circle at 14% 18%, rgba(249, 178, 51, 0.18) 0%, rgba(14, 14, 14, 0.96) 62%);
}

.actor-roles-grid--characters .actor-role-dvd {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
	border: 2px solid rgba(249, 178, 51, 0.9);
	background: #111;
	box-shadow: -16px 12px 24px rgba(0, 0, 0, 0.5), 8px 9px 16px rgba(0, 0, 0, 0.34);
	transform: perspective(760px) rotateY(-27deg);
	transform-origin: 14% 50%;
}

.actor-roles-grid--characters .actor-role-dvd::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 14px;
	background: linear-gradient(180deg, rgba(255, 214, 133, 0.95) 0%, rgba(249, 178, 51, 0.95) 46%, rgba(171, 112, 16, 0.95) 100%);
	box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.25), inset -4px 0 6px rgba(0, 0, 0, 0.26);
	z-index: 2;
	pointer-events: none;
}

.actor-roles-grid--characters .actor-role-dvd::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(118deg, rgba(255, 255, 255, 0.2) 4%, rgba(255, 255, 255, 0.03) 24%, rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.42) 100%), linear-gradient(90deg, rgba(0,0,0,0) 94.7%, rgba(249, 178, 51, 0.98) 94.7%);
	pointer-events: none;
	z-index: 3;
}

.actor-roles-grid--characters .actor-role-image-dvd {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.actor-roles-grid--characters .actor-role-overlay {
	padding: 0.55rem 0.68rem;
}

.actor-roles-grid--characters .actor-role-chip {
	background: rgba(7, 7, 7, 0.72);
	border-color: rgba(249, 178, 51, 0.35);
}

@media (max-width: 767px) {
	.actor-roles-grid--characters .actor-role-dvd {
		transform: perspective(730px) rotateY(-23deg) scale(0.85);
		transform-origin: 50% 54%;
	}
	.actor-roles-grid--characters .actor-role-media-dvd {
		padding: 0.66rem 0.9rem 0.58rem 0.56rem;
	}
}

.actor-roles-grid--programs .actor-role-card {
	background: linear-gradient(180deg, rgba(11, 12, 14, 0.96) 0%, rgba(8, 9, 10, 0.96) 100%);
	border-color: rgba(140, 180, 220, 0.24);
}

.actor-roles-grid--programs .actor-role-media-tv {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: visible;
	padding: 0.58rem 0.62rem 0.52rem 0.72rem;
	background: radial-gradient(circle at 86% 20%, rgba(147, 200, 255, 0.18) 0%, rgba(11, 13, 15, 0.96) 58%);
}

.actor-roles-grid--programs .actor-role-tv {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid rgba(150, 170, 190, 0.52);
	background: #030406;
	box-shadow: 14px 10px 22px rgba(0, 0, 0, 0.42), -8px 6px 14px rgba(0, 0, 0, 0.3);
	transform: perspective(860px) rotateY(23deg);
	transform-origin: 84% 50%;
}

.actor-roles-grid--programs .actor-role-tv::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 8px solid rgba(26, 30, 35, 0.9);
	border-radius: 10px;
	pointer-events: none;
	z-index: 2;
	box-shadow: inset 0 0 0 1px rgba(200, 220, 245, 0.16);
}

.actor-roles-grid--programs .actor-role-tv::after {
	content: "";
	position: absolute;
	left: 30%;
	right: 30%;
	bottom: -7px;
	height: 7px;
	border-radius: 3px;
	background: linear-gradient(180deg, rgba(122, 140, 160, 0.9) 0%, rgba(70, 82, 96, 0.98) 100%);
	box-shadow: 0 4px 9px rgba(0, 0, 0, 0.45);
	pointer-events: none;
	z-index: 3;
}

.actor-roles-grid--programs .actor-role-image-tv {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.actor-roles-grid--programs .actor-role-overlay {
	padding: 0.52rem 0.65rem;
}

.actor-roles-grid--programs .actor-role-chip {
	background: rgba(5, 8, 12, 0.74);
	border-color: rgba(165, 195, 230, 0.35);
}

@media (max-width: 767px) {
	.actor-roles-grid--programs .actor-role-tv {
		transform: perspective(760px) rotateY(19deg) scale(0.95);
		transform-origin: 50% 52%;
	}
	.actor-roles-grid--programs .actor-role-media-tv {
		padding: 0.66rem 0.64rem 0.62rem 0.76rem;
	}
}

.actor-role-card.no-shell-border-dvd,
.actor-role-card.no-shell-border-tv {
	border-color: transparent;
}

.actor-role-card.no-shell-border-dvd:hover,
.actor-role-card.no-shell-border-tv:hover {
	border-color: transparent;
}


.character-page-head {
	margin-top: 1.5rem;
}

.character-page-title {
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
}

.character-page-subtitle {
	max-width: 640px;
	color: rgba(226, 226, 226, 0.78);
	margin-top: 0.4rem;
}

.character-grid-section {
	margin-top: 1.4rem;
}

.character-latest-grid {
	margin-top: 0.8rem;
}

.character-hero {
	margin-top: 1.6rem;
}

.character-hero-layout {
	display: grid;
	gap: 1.4rem;
}

.character-hero-media {
	position: relative;
	border-radius: 18px;
	overflow: visible;
	background: rgba(10, 10, 10, 0.95);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.character-hero-image {
	width: 100%;
	height: 100%;
	min-height: 240px;
	object-fit: cover;
	display: block;
	border-radius: 18px;
}

.character-hero-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(130deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
	pointer-events: none;
	border-radius: 18px;
}

.character-hero-actor {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	border: 0;
	box-shadow: none;
	background: #111;
	object-fit: cover;
}

.character-hero-dvd {
	position: absolute;
	right: -0.9rem;
	bottom: 0.7rem;
	width: 124px;
	height: 170px;
	border-radius: 5px;
	overflow: hidden;
	border: 2px solid rgba(249, 178, 51, 0.92);
	background: #0f0f0f;
	box-shadow: -20px 15px 30px rgba(0, 0, 0, 0.58), 10px 9px 18px rgba(0, 0, 0, 0.34);
	transform: perspective(760px) rotateY(-25deg);
	transform-origin: 14% 50%;
	z-index: 4;
}

.character-hero-dvd::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 14px;
	background: linear-gradient(180deg, rgba(255, 214, 133, 0.95) 0%, rgba(249, 178, 51, 0.95) 46%, rgba(171, 112, 16, 0.95) 100%);
	box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.25), inset -4px 0 6px rgba(0, 0, 0, 0.26);
	z-index: 2;
	pointer-events: none;
}

.character-hero-dvd::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(118deg, rgba(255, 255, 255, 0.2) 4%, rgba(255, 255, 255, 0.03) 24%, rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.42) 100%), linear-gradient(90deg, rgba(0,0,0,0) 94.7%, rgba(249, 178, 51, 0.98) 94.7%);
	pointer-events: none;
	z-index: 3;
}

.character-hero-copy {
	color: #fff;
}

.character-hero-kicker {
	font-size: 1rem;
	color: rgba(249, 178, 51, 0.92);
	margin-top: 0.3rem;
	margin-bottom: 0.5rem;
}

.character-hero-title {
	font-size: 2.4rem;
	font-weight: 700;
}

.character-hero-overview {
	margin-top: 0.5rem;
	color: rgba(234, 234, 234, 0.82);
	line-height: 1.6;
}

.character-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 0.9rem;
}

.character-hero-dashboard {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.9rem;
}

.character-hero-stat-card {
	padding: 0.95rem 1rem;
	border-radius: 14px;
	background: rgba(14, 14, 14, 0.92);
	border: 1px solid rgba(249, 178, 51, 0.32);
}

.character-hero-stat-label {
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.character-hero-stat-value {
	margin-top: 0.25rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
}

.character-hero-stat-number {
	margin-top: 0.2rem;
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 1.05;
	color: rgba(249, 178, 51, 0.98);
}

.character-hero-inline-action {
	margin-top: 0.7rem;
}

.character-hero-inline-action .character-hero-btn {
	min-height: 42px;
	padding: 0.56rem 0.9rem;
	font-size: 0.9rem;
	border-radius: 11px;
}

.character-hero-actions {
	margin-top: 1rem;
	display: grid;
	gap: 0.6rem;
	max-width: 560px;
}

.character-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.7rem 1rem;
	border-radius: 12px;
	font-size: 0.94rem;
	font-weight: 700;
	text-decoration: none;
	color: #111;
	background: linear-gradient(180deg, rgba(252, 188, 77, 0.99) 0%, rgba(249, 178, 51, 0.94) 100%);
	border: 1px solid rgba(249, 178, 51, 0.9);
	box-shadow: inset 0 1px 0 rgba(255, 243, 208, 0.75), 0 10px 20px rgba(0, 0, 0, 0.28);
	transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease, background-color 170ms ease;
}

.character-hero-btn:hover {
	transform: translateY(-1px);
	filter: saturate(1.03);
	box-shadow: inset 0 1px 0 rgba(255, 243, 208, 0.85), 0 14px 24px rgba(0, 0, 0, 0.34);
}

.character-hero-btn.is-secondary {
	color: rgba(249, 178, 51, 0.98);
	background: linear-gradient(180deg, rgba(39, 29, 13, 0.86) 0%, rgba(24, 19, 10, 0.9) 100%);
	border-color: rgba(249, 178, 51, 0.38);
	box-shadow: inset 0 1px 0 rgba(255, 224, 165, 0.12), 0 10px 18px rgba(0, 0, 0, 0.3);
}

.character-hero-btn.is-disabled {
	opacity: 0.55;
	cursor: default;
	pointer-events: none;
}

.character-hero-kicker a,
.character-hero-stat-value a {
	color: inherit;
	text-decoration: none;
}

.character-hero-context {
	margin-top: 0.85rem;
	color: rgba(216, 216, 216, 0.85);
	font-size: 0.9rem;
}

.character-main {
	padding-top: calc(var(--site-nav-height) + var(--main-gap) + 1.2rem);
}

.character-section {
	margin-top: 2.2rem;
}

.character-section-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
}

.character-section-subtitle {
	font-size: 1.15rem;
}

.character-curiosities-copy {
	margin-top: 0.6rem;
	max-width: 70ch;
	font-size: 1.02rem;
	line-height: 1.62;
	color: rgba(232, 232, 232, 0.84);
}

.character-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 0.9rem;
	margin-top: 0.8rem;
}

.character-related-card {
	background: rgba(12, 12, 12, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 170ms ease, border-color 170ms ease;
}

.character-related-card a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.character-related-card:hover {
	transform: translateY(-2px);
	border-color: rgba(249, 178, 51, 0.45);
}

.character-related-media {
	aspect-ratio: 16 / 9;
	background: rgba(18, 18, 18, 0.9);
}

.character-related-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.character-related-copy {
	padding: 0.65rem 0.75rem 0.8rem;
}

.character-related-copy h3 {
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
}

.character-related-copy p {
	margin-top: 0.35rem;
	font-size: 0.78rem;
	color: rgba(226, 226, 226, 0.7);
}

@media (min-width: 768px) {
	.mobile-clapper-btn {
		display: none !important;
	}
	.actor-hero-bio {
		font-size: 1.15rem;
		line-height: 1.64;
		color: white;
		max-width: 70ch;
		line-height: 2 !important;
	}
}

@media (max-width: 767px) {
	.season-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.6rem;
	}
	.season-grid-card-link {
		display: block;
		padding: 0;
		border-bottom: 0;
	}
	.season-grid-media {
		width: 100%;
		aspect-ratio: 3 / 4;
		border-radius: 10px 10px 0 0;
	}
	.season-grid-image {
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}
	.season-grid-copy {
		padding: 0.5rem 0.55rem 0.52rem;
	}
	.season-grid-series-link {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		padding: 0.46rem 0.55rem 0.55rem;
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.home-hero-featured {
		min-height: clamp(280px, 60vh, 500px);
	}
	
	.home-hero-content {
		min-height: clamp(280px, 60vh, 500px);
		padding: clamp(1.5rem, 8vh, 3rem) 0;
	}
	.actor-hero-photo-wrap {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100% !important;
	}
	
	.actor-hero-photo {
		width: 100%;
		max-width: 100%;
		height: auto;
		
	}
}

@media (min-width: 1024px) {
    .header {
        height: auto !important;
    }
}

@media (max-width: 1100px) {
	.episode-calendar-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.home-page .header {
		padding-top: 0 !important;
	}
	.home-page .videoBig {
		margin-top: calc(var(--site-nav-height) + 2vh) !important;
		padding-top: 4.35rem !important;
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
		position: relative;
		z-index: 2;
	}
	.home-page .serie-main {
		padding-top: 0 !important;
		margin-top: 0 !important;
	}
	.home-page .home-strip-section:first-child {
		margin-top: 0 !important;
	}

	.home-hero-frame {
		min-height: 54vh;
	}
	.home-hero-overlay-pill {
		left: 0.65rem;
		right: 0.65rem;
		bottom: 0.65rem;
		padding: 0.56rem 0.62rem;
		max-height: 20%;
		overflow: hidden;
	}
	.home-hero-title {
		font-size: clamp(1.15rem, 5.4vw, 1.55rem);
		margin-bottom: 0.2rem;
	}
	.home-hero-entry {
		font-size: 0.82rem;
		line-height: 1.25;
		-webkit-line-clamp: 2;
		margin-bottom: 0.36rem;
	}
	.home-strip-section {
		padding: 0.82rem;
	}
	.home-strip-card {
		flex: 0 0 72vw;
		width: 72vw;
	}
	.home-strip-card-link {
		min-height: 260px;
	}

	.episode-page-head {
		padding-top: 1rem;
	}
	.episode-page-subtitle {
		font-size: 0.98rem;
	}
	.episode-calendar-section {
		padding: 0.9rem;
		margin-top: 0.9rem;
	}
	.episode-calendar-layout {
		grid-template-columns: 1fr;
	}
	.episode-date-tile {
		min-height: 186px;
		overflow: hidden;
	}
	.episode-date-label {
		font-size: 1.45rem;
		letter-spacing: 0.09em;
		margin-bottom: 0.18rem;
	}
	.episode-date-number {
		font-size: clamp(7.2rem, 30vw, 10rem);
		line-height: 0.88;
		margin-bottom: 0.16rem;
	}
	.episode-date-month {
		font-size: clamp(2.2rem, 8.5vw, 3.2rem);
		line-height: 1;
	}
	.episode-date-range {
		font-size: clamp(3.6rem, 15vw, 5.8rem);
	}
	.episode-calendar-grid {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}
	.episode-calendar-badge {
		font-size: 1.35rem;
		padding: 0.45rem 0.85rem;
	}
	.episode-calendar-meta {
		font-size: 1.45rem;
	}
	.episode-calendar-cta {
		font-size: 1.8rem;
	}
}

@media (max-width: 767px) {
	.mobile-film-menu {
		position: fixed;
		left: 0.75rem;
		right: 0.75rem;
		top: calc(var(--mobile-header-offset, 88px) + 0.45rem);
		max-height: 80vh;
		overflow-y: auto;
		padding: 0.6rem 1.42rem 0.75rem;
		background:
			linear-gradient(180deg, rgba(26, 26, 26, 0.7), rgba(14, 14, 14, 0.7));
		border: 1px solid rgba(249, 178, 51, 0.32);
		border-radius: 12px;
		box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
		z-index: 2147483647;
		transform-origin: top center;
		transform: translateY(-16px) scaleY(0.22);
		opacity: 0;
		filter: blur(1.2px);
		pointer-events: none;
		transition: transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 620ms ease, filter 570ms ease;
	}

	.mobile-film-menu::before,
	.mobile-film-menu::after {
		content: "";
		position: absolute;
		top: 0.35rem;
		bottom: 0.35rem;
		width: 20px;
		border-radius: 999px;
		background:
			radial-gradient(circle at center, rgba(3, 3, 3, 0.96) 0 4.8px, transparent 4.9px 100%) center top / 100% 24px repeat-y,
			linear-gradient(180deg, rgba(52, 52, 52, 0.94), rgba(24, 24, 24, 0.94));
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
		pointer-events: none;
		opacity: 0.7;
	}

	.mobile-film-menu::before { left: 0; }
	.mobile-film-menu::after { right: 0; }

	.mobile-film-menu.is-open {
		transform: translateY(0) scaleY(1);
		opacity: 1;
		filter: blur(0);
		pointer-events: auto;
	}

	.mobile-film-menu li {
		margin: 0.12rem 0;
		font-size: 1.4rem;
	}

	.mobile-film-menu li.md\:px-6.py-2,
	.mobile-film-menu li.py-2 {
		padding-top: 0.12rem !important;
		padding-bottom: 0.12rem !important;
	}

	.mobile-film-menu li a {
		display: block;
		position: relative;
		z-index: 2;
		pointer-events: auto;
		padding: 0.48rem 0.7rem;
		border-radius: 8px;
		border: 1px solid rgba(255, 255, 255, 0.16);
		background: rgba(16, 16, 16, 1);
		color: #f9b233;
		opacity: 1;
	}

	.mobile-film-menu li a.text-brand,
	.mobile-film-menu li a.is-current,
	.mobile-film-menu li a[aria-current="page"] {
		background: rgba(249, 178, 51, 0.95);
		border-color: rgba(249, 178, 51, 1);
		color: #111;
		font-weight: 700;
	}
}

@media (min-width: 640px) {
	.latest-series-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.latest-series-card {
		max-width: 220px;
		justify-self: center;
	}
	.season-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.hero-last {
		margin-top: 0.7rem;
		gap: 0.7rem;
	}
	.hero-col25 {
		height: 70vh;
		min-height: 460px;
		max-height: 760px;
	}
	.hero-last h2 {
		left: 0.75rem;
		right: 0.75rem;
		bottom: 0.9rem;
		width: auto;
		padding: 0.75rem 0.7rem;
		font-size: 2rem;
		line-height: 1.08;
	}
	.latest-series-grid-section {
		padding: 1.65rem 1.35rem;
	}
	.latest-series-grid-title {
		font-size: 2rem;
	}
	.latest-series-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 1rem;
	}
	.latest-series-card-title {
		font-size: 1.02rem;
	}
	.season-page-head {
		margin-top: 0.8rem;
	}
	.season-page-title {
		font-size: 3rem;
	}
	.season-hero-card-link {
		min-height: 500px;
	}
	.season-filmstrip-track.is-static {
		gap: 0.72rem;
	}
	.season-filmstrip-track.is-static .season-hero-card {
		flex: 1 1 0;
		width: auto;
	}
	.season-overlay-number {
		font-size: clamp(9rem, 13vw, 13rem);
	}
	.season-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.season-grid-card-link {
		grid-template-columns: 1fr;
		gap: 0.52rem;
	}
	.season-grid-media {
		max-width: 220px;
		justify-self: center;
	}
	.season-question-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.season-question-media {
		aspect-ratio: 3 / 4;
	}
}

.latest-seasons-main,
.season-detail-main {
	padding-bottom: 5.5rem !important;
}

.latest-seasons-page .site-footer,
.serie-detail-page .site-footer {
	margin-top: 1.5rem;
}

@media (max-width: 1100px) {
	.review-featured-grid,
	.review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.nav-search-desktop-item,
	.nav-search-desktop-form {
		display: none !important;
	}

	.nav-legal-mobile,
	.nav-search-mobile-item {
		display: block;
	}

	.nav-search-mobile-item {
		width: 100%;
	}

	.nav-search-mobile-item .nav-search-mobile-row {
		min-height: 44px;
	}

	.site-footer {
		display: none !important;
	}

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

	.search-card {
		grid-template-columns: 92px minmax(0, 1fr);
	}

	.review-page-head {
		padding-top: 1rem;
	}
	.review-featured-section,
	.review-grid-section {
		padding: 0.9rem;
	}
	.review-featured-grid,
	.review-grid {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.review-detail-layout {
		grid-template-columns: 1fr;
	}

	.episode-detail-layout {
		grid-template-columns: 1fr;
		padding: 0.8rem;
	}

	.episode-detail-title {
		font-size: clamp(1.5rem, 8vw, 2.2rem);
	}

	.legal-section {
		padding: 0.9rem;
	}
}

@media (min-width: 768px) {
	.nav-legal-mobile,
	.nav-search-mobile-item {
		display: none !important;
	}

	.nav-search-desktop-item {
		display: list-item;
	}

	.nav-search-desktop-form {
		display: block;
	}

	.site-footer {
		display: block;
	}

	:root {
		--site-nav-height: 76px;
		--main-gap: 2vh;
	}
	.serie-main {
		padding-top: calc(var(--site-nav-height) + var(--main-gap) + 1.2rem);
	}
	.actor-main {
		padding-top: calc(var(--site-nav-height) + var(--main-gap) + 1.2rem);
	}
	.serie-section {
		margin-top: 1.4rem;
	}
	.serie-hero-content {
		padding: 2rem 1.8rem 2.1rem;
	}
	.serie-hero-layout {
		grid-template-columns: minmax(0, 1fr) 170px;
		gap: 1.25rem;
	}
	.serie-hero-poster-toggle {
		width: 170px;
		margin-top: 4.9rem;
	}
	.serie-hero-title {
		font-size: 3rem;
	}
	.serie-section-title {
		font-size: 1.7rem;
	}
	.serie-seasons-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.serie-episodes-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.serie-gallery-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.serie-cast-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.serie-video-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 1280px) {
	.serie-hero-inner {
		min-height: 520px;
	}
	.serie-hero-content {
		padding: 2.3rem 2.2rem 2.4rem;
		max-width: 1000px;
	}
	.serie-hero-layout {
		grid-template-columns: minmax(0, 1fr) 210px;
	}
	.serie-hero-poster-toggle {
		width: 210px;
		margin-top: 4.8rem;
	}
	.serie-hero-title {
		font-size: 3.6rem;
	}
	.serie-episodes-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.serie-gallery-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
	.serie-cast-grid {
		grid-template-columns: repeat(8, minmax(0, 1fr));
	}
	.serie-video-strip {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}


@media (min-width: 768px) {
	.actor-hero-layout {
		grid-template-columns: 300px minmax(0, 1fr);
		gap: 1.2rem;
		align-items: start;
	}
	.actor-hero-title {
		font-size: 3rem;
	}
	.actor-meta-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.actor-series-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.actor-metro-stop {
		grid-template-columns: 6.1rem 2.2rem minmax(0, 1fr);
	}
	.actor-chapters-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1280px) {
	.actor-series-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
	.actor-chapters-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.character-hero-layout {
		grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
		align-items: start;
		gap: 2rem;
	}
	.character-hero-title {
		font-size: 3rem;
	}
	.character-hero-copy {
		padding-left: 0.9rem;
	}
	.character-hero-dvd {
		width: 148px;
		height: 203px;
		right: -1.15rem;
		bottom: 0.55rem;
		transform: perspective(860px) rotateY(-27deg);
	}
	.character-hero-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 660px;
	}
	.character-hero-actions .character-hero-btn:first-child {
		grid-column: 1 / -1;
	}
}
