/*
 * SharkAnime — superficies públicas portadas directamente de SharkMovie.
 * Paleta bloqueada: las opciones cromáticas históricas se conservan, pero no
 * participan en estos componentes.
 */

body.sa-sharkmovie-ui {
	--sa-primary: #1a6ef5;
	--sa-primary-hover: #1153c8;
	--sa-accent: var(--sa-primary, #1a6ef5);
	--sa-accent-strong: var(--sa-primary-hover, #1153c8);
	--sa-success: #22c55e;
	--sa-bg: #f1f5f9;
	--sa-surface: #ffffff;
	--sa-surface-alt: #f1f5f9;
	--sa-text-primary: #0f172a;
	--sa-text-secondary: #64748b;
	--sa-text-muted: #94a3b8;
	--sa-border: #e2e8f0;
	--sa-line: #e2e8f0;
	--sa-brand: #1a6ef5;
	--sa-brand-strong: #1153c8;
	--sa-ink: #0f172a;
	--sa-muted: #64748b;
	--sa-shadow: 0 16px 40px rgba(15, 23, 42, .16);
	margin: 0;
	background: var(--sa-bg);
	color: var(--sa-text-primary);
}

body.sa-sharkmovie-ui .sa-container {
	box-sizing: border-box;
	width: 100%;
	max-width: 1360px;
	margin-inline: auto;
	padding-inline: 20px;
}

body.sa-sharkmovie-ui a,
body.sa-sharkmovie-ui button,
body.sa-sharkmovie-ui input {
	font-family: inherit;
}

/* Header */
body.sa-sharkmovie-ui .sa-header {
	position: sticky;
	top: 0;
	z-index: 300;
	display: block;
	border-bottom: 1px solid var(--sa-border);
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

body.sa-sharkmovie-ui.admin-bar .sa-header {
	top: 32px;
}

body.sa-sharkmovie-ui .sa-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	min-height: 72px;
	gap: 12px;
}

body.sa-sharkmovie-ui .sa-header__logo {
	justify-self: start;
	min-width: 0;
}

body.sa-sharkmovie-ui .sa-logo,
body.sa-sharkmovie-ui .custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--sa-ink);
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

body.sa-sharkmovie-ui .sa-logo__icon {
	display: inline-flex;
	width: auto;
	height: 40px;
	align-items: center;
	justify-content: flex-start;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

body.sa-sharkmovie-ui .sa-logo__icon img,
body.sa-sharkmovie-ui .sa-logo__icon svg,
body.sa-sharkmovie-ui .custom-logo {
	display: block;
	width: auto;
	max-width: 160px;
	height: 40px;
	object-fit: contain;
}

body.sa-sharkmovie-ui .sa-logo__text {
	color: var(--sa-ink);
	text-transform: none;
	letter-spacing: normal;
}

body.sa-sharkmovie-ui .sa-nav {
	justify-self: center;
	min-width: 0;
}

body.sa-sharkmovie-ui .sa-nav__menu {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	list-style: none;
}

body.sa-sharkmovie-ui .sa-nav__menu > li {
	margin: 0;
	padding: 0;
}

body.sa-sharkmovie-ui .sa-nav__menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	color: var(--sa-ink);
	font-size: .92rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background .15s ease, color .15s ease;
}

body.sa-sharkmovie-ui .sa-nav__menu > li > a::before,
body.sa-sharkmovie-ui .sa-nav__menu > li > a::after {
	display: none;
}

body.sa-sharkmovie-ui .sa-nav__menu > li > a:hover {
	background: #eaf2ff;
	color: var(--sa-primary);
}

body.sa-sharkmovie-ui .sa-nav__menu > li.current-menu-item > a,
body.sa-sharkmovie-ui .sa-nav__menu > li.current_page_item > a,
body.sa-sharkmovie-ui .sa-nav__menu > li > a[aria-current="page"],
body.sa-sharkmovie-ui .sa-nav__menu > li.current-menu-item > a:hover,
body.sa-sharkmovie-ui .sa-nav__menu > li.current_page_item > a:hover,
body.sa-sharkmovie-ui .sa-nav__menu > li > a[aria-current="page"]:hover {
	background: var(--sa-primary);
	color: #fff;
}

body.sa-sharkmovie-ui .sa-nav__icon {
	display: inline-flex;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	color: currentColor;
}

body.sa-sharkmovie-ui .sa-nav__icon svg {
	width: 16px;
	height: 16px;
	color: currentColor;
	stroke: currentColor;
}

body.sa-sharkmovie-ui.sa-home .sa-nav__menu li a .sa-nav__icon {
	color: inherit;
}

body.sa-sharkmovie-ui .sa-header__actions {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

body.sa-sharkmovie-ui .sa-language {
	position: relative;
}

body.sa-sharkmovie-ui .sa-language__trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 40px;
	padding: 0 10px 0 8px;
	border: 1px solid var(--sa-border);
	border-radius: 999px;
	background: #fff;
	color: var(--sa-ink);
	cursor: pointer;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .02em;
}

body.sa-sharkmovie-ui .sa-language__trigger:hover,
body.sa-sharkmovie-ui .sa-language__trigger[aria-expanded="true"] {
	border-color: var(--sa-primary);
	color: var(--sa-primary);
}

body.sa-sharkmovie-ui .sa-language__flag {
	display: inline-block;
	flex: 0 0 20px;
	width: 20px;
	height: 15px;
	overflow: hidden;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(15, 23, 42, .08);
	object-fit: cover;
	vertical-align: middle;
}

body.sa-sharkmovie-ui .sa-language__flag--img {
	background: transparent;
}

body.sa-sharkmovie-ui .sa-language__menu {
	position: absolute;
	inset-block-start: calc(100% + 8px);
	inset-inline-end: 0;
	z-index: 320;
	width: 210px;
	max-height: min(70vh, 420px);
	margin: 0;
	padding: 6px;
	overflow-y: auto;
	border: 1px solid var(--sa-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--sa-shadow);
}

body.sa-sharkmovie-ui .sa-language__menu[hidden] {
	display: none;
}

body.sa-sharkmovie-ui .sa-language__menu button {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 8px 10px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--sa-ink);
	cursor: pointer;
	font-size: .86rem;
	font-weight: 600;
	text-align: start;
}

body.sa-sharkmovie-ui .sa-language__menu button:hover,
body.sa-sharkmovie-ui .sa-language__menu button[aria-checked="true"] {
	background: #eef4ff;
	color: var(--sa-primary);
}

body.sa-sharkmovie-ui .sa-language__menu small {
	color: var(--sa-muted);
}

body.sa-sharkmovie-ui .sa-header__search-btn,
body.sa-sharkmovie-ui .sa-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--sa-ink);
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}

body.sa-sharkmovie-ui .sa-header__search-btn:hover,
body.sa-sharkmovie-ui .sa-nav-toggle:hover {
	background: #eaf2ff;
	color: var(--sa-primary);
}

body.sa-sharkmovie-ui .sa-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
}

body.sa-sharkmovie-ui .sa-nav-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
}

/* Modal de búsqueda */
body.sa-sharkmovie-ui .sa-search-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	box-sizing: border-box;
	align-items: flex-start;
	justify-content: center;
	padding: 12vh 16px 16px;
}

body.sa-sharkmovie-ui .sa-search-modal[hidden] {
	display: none;
}

body.sa-sharkmovie-ui .sa-search-modal__overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, .55);
	backdrop-filter: blur(2px);
}

body.sa-sharkmovie-ui .sa-search-modal__dialog {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 640px;
	max-height: 76vh;
	overflow: hidden;
	border: 1px solid var(--sa-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 24px 64px rgba(15, 23, 42, .28);
}

body.sa-sharkmovie-ui .sa-search-modal__bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--sa-border);
}

body.sa-sharkmovie-ui .sa-search-modal__icon {
	color: var(--sa-text-muted);
}

body.sa-sharkmovie-ui .sa-search-modal__input {
	flex: 1;
	min-width: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	color: var(--sa-ink);
	font-size: 1rem;
}

body.sa-sharkmovie-ui .sa-search-modal__input::-webkit-search-cancel-button {
	display: none;
	appearance: none;
}

body.sa-sharkmovie-ui .sa-search-modal__submit,
body.sa-sharkmovie-ui .sa-search-modal__close {
	display: inline-flex;
	flex: 0 0 34px;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--sa-text-muted);
	cursor: pointer;
}

body.sa-sharkmovie-ui .sa-search-modal__submit {
	color: var(--sa-primary);
}

body.sa-sharkmovie-ui .sa-search-modal__submit:hover,
body.sa-sharkmovie-ui .sa-search-modal__close:hover {
	background: #f1f5f9;
	color: var(--sa-ink);
}

/* Portada y slider */
body.sa-sharkmovie-ui .sa-main.sa-home {
	padding-block: 30px 60px;
}

body.sa-sharkmovie-ui .sa-home__inner {
	max-width: 1360px;
	padding-top: 0;
}

body.sa-sharkmovie-ui .sa-hero-slider {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 500px;
	margin: 0 0 24px;
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, .24);
	border-radius: 24px;
	background: #111827;
	box-shadow: 0 18px 44px rgba(15, 23, 42, .13);
}

body.sa-sharkmovie-ui .sa-hero-slider__track,
body.sa-sharkmovie-ui .sa-hero-slider__slide {
	width: 100%;
	height: 100%;
	min-height: 0;
}

body.sa-sharkmovie-ui .sa-hero-slider__track {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	overflow: hidden;
	touch-action: pan-y;
}

body.sa-sharkmovie-ui .sa-hero-slider__slide {
	position: relative;
	display: block;
	grid-area: 1 / 1;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	background: transparent;
}

body.sa-sharkmovie-ui .sa-hero-slider__slide[hidden] {
	display: none;
}

body.sa-sharkmovie-ui .sa-hero-slider__slide.is-active {
	animation: sa-hero-slide-in 240ms ease both;
}

@keyframes sa-hero-slide-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

body.sa-sharkmovie-ui .sa-hero-banner__art {
	position: absolute;
	inset: 0;
	display: block;
	width: auto;
	height: auto;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #111827;
	box-shadow: none;
}

body.sa-sharkmovie-ui .sa-hero-banner__art::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	display: block;
	background:
		linear-gradient(90deg, rgba(5, 12, 24, .62) 0%, rgba(8, 16, 30, .24) 55%, rgba(5, 12, 24, .48) 100%),
		linear-gradient(180deg, rgba(3, 7, 18, .12) 0%, rgba(3, 7, 18, .46) 100%);
	pointer-events: none;
	width: 100%;
}

body.sa-sharkmovie-ui .sa-hero-banner__art::after {
	display: none;
}

body.sa-sharkmovie-ui .sa-hero-banner__backdrop {
	position: absolute;
	inset: -28px;
	width: calc(100% + 56px);
	height: calc(100% + 56px);
	max-width: none;
	object-fit: cover;
	object-position: center;
	filter: blur(18px) saturate(.9);
	opacity: .82;
	transform: scale(1.06);
}

body.sa-sharkmovie-ui .sa-hero-banner__img {
	position: absolute;
	top: 50%;
	right: 5%;
	z-index: 3;
	display: block;
	width: auto;
	max-width: 30%;
	height: 84%;
	object-fit: contain;
	object-position: right center;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 18px;
	box-shadow: 0 24px 54px rgba(0, 0, 0, .38);
	transform: translateY(-50%);
}

body.sa-sharkmovie-ui .sa-hero-banner__img--placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 280px;
	background: #334155;
	color: #94a3b8;
	font-weight: 800;
	text-align: center;
}

body.sa-sharkmovie-ui .sa-hero-banner__img--placeholder small {
	margin-top: 8px;
	font-size: .72rem;
	font-weight: 500;
}

body.sa-sharkmovie-ui .sa-hero-banner__body {
	position: absolute;
	top: 32px;
	bottom: 56px;
	left: 64px;
	z-index: 4;
	display: flex;
	box-sizing: border-box;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 12px;
	width: min(570px, calc(100% - 120px));
	max-width: calc(100% - 120px);
	min-height: 0;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 16px;
	background: rgba(7, 20, 38, .82);
	box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

body.sa-sharkmovie-ui .sa-hero-banner__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--sa-primary);
	color: #fff;
	font-size: .7rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .08em;
	text-transform: uppercase;
}

body.sa-sharkmovie-ui .sa-hero-banner__title,
body.sa-sharkmovie-ui .sa-hero-slider__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-width: 100%;
	margin: 0;
	overflow: hidden;
	color: #fff;
	font-family: var(--sa-font-heading, "Dosis", sans-serif);
	font-size: clamp(2rem, 3vw, 48px);
	font-weight: 800;
	line-height: 1.08;
}

body.sa-sharkmovie-ui .sa-hero-banner__subtitle {
	margin: 0 0 2px;
	color: #e2e8f0;
	font-size: .9rem;
	font-weight: 700;
	line-height: 1.45;
}

body.sa-sharkmovie-ui .sa-hero-banner__synopsis {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	max-width: 48ch;
	margin: 0;
	overflow: hidden;
	color: #e2e8f0;
	font-size: .95rem;
	line-height: 1.55;
}

body.sa-sharkmovie-ui .sa-hero-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
}

body.sa-sharkmovie-ui .sa-hero-banner__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding-inline: 20px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
}

body.sa-sharkmovie-ui .sa-hero-banner__action.sa-btn--primary {
	background: var(--sa-primary);
	color: #fff;
}

body.sa-sharkmovie-ui .sa-hero-banner__action.sa-btn--primary:hover {
	background: var(--sa-primary-hover);
}

body.sa-sharkmovie-ui .sa-hero-banner__action.sa-btn--outline {
	border-color: #fff;
	background: #fff;
	color: var(--sa-ink);
}

body.sa-sharkmovie-ui .sa-hero-banner__action.sa-btn--outline:hover,
body.sa-sharkmovie-ui .sa-hero-banner__action.sa-btn--outline:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--sa-ink);
}

body.sa-sharkmovie-ui .sa-hero-slider__controls {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: block;
	pointer-events: none;
}

body.sa-sharkmovie-ui .sa-hero-slider__controls[hidden] {
	display: none;
}

body.sa-sharkmovie-ui .sa-hero-slider__nav {
	position: absolute;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 50%;
	background: #fff;
	color: #334155;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
	cursor: pointer;
	pointer-events: auto;
	transform: translateY(-50%);
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

body.sa-sharkmovie-ui .sa-hero-slider__nav--prev { left: 16px; }
body.sa-sharkmovie-ui .sa-hero-slider__nav--next { right: 16px; }

body.sa-sharkmovie-ui .sa-hero-slider__nav svg {
	width: 21px;
	height: 21px;
}

body.sa-sharkmovie-ui .sa-hero-slider__nav:hover {
	border-color: var(--sa-primary-hover);
	background: var(--sa-primary-hover);
	color: #fff;
}

body.sa-sharkmovie-ui .sa-hero-slider__count {
	position: absolute;
	right: 22px;
	bottom: 18px;
	margin: 0;
	color: rgba(255, 255, 255, .9);
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.4;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
	font-variant-numeric: tabular-nums;
}

body.sa-sharkmovie-ui .sa-hero-slider:focus {
	outline: none;
}

body.sa-sharkmovie-ui .sa-hero-slider:focus-visible,
body.sa-sharkmovie-ui .sa-hero-slider__nav:focus-visible,
body.sa-sharkmovie-ui .sa-hero-banner__action:focus-visible,
body.sa-sharkmovie-ui .sa-nav__menu a:focus-visible,
body.sa-sharkmovie-ui .sa-header button:focus-visible {
	outline: 2px solid var(--sa-primary);
	outline-offset: 3px;
}

/* Publicidad */
body.sa-sharkmovie-ui .sa-ad-slot {
	width: 100%;
	max-width: 970px;
	margin: 30px auto;
	overflow: hidden;
}

body.sa-sharkmovie-ui .sa-ad-slot__code {
	display: flex;
	width: 100%;
	min-width: 0;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}

body.sa-sharkmovie-ui .sa-ad-slot__code > *,
body.sa-sharkmovie-ui .sa-ad-slot__code iframe,
body.sa-sharkmovie-ui .sa-ad-slot__code img {
	max-width: 100% !important;
}

body.sa-sharkmovie-ui .sa-ad-demo {
	display: flex;
	min-height: 112px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border: 1px dashed #86d6a7;
	border-radius: 12px;
	background: #fff;
	color: var(--sa-muted);
	text-align: center;
}

body.sa-sharkmovie-ui .sa-ad-demo strong {
	color: var(--sa-success);
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: .04em;
}

body.sa-sharkmovie-ui .sa-ad-demo span {
	font-size: .82rem;
}

body.sa-sharkmovie-ui .sa-ad-slot--home_before_latest { margin-top: 8px; }
body.sa-sharkmovie-ui .sa-ad-slot--home_after_latest { margin-bottom: 8px; }
body.sa-sharkmovie-ui .sa-ad-slot--single_before_downloads,
body.sa-sharkmovie-ui .sa-ad-slot--single_before_related { margin-block: 36px; }

/* Compartir — botones cuadrados con color de marca */
body.sa-sharkmovie-ui .sa-share {
	box-sizing: border-box;
	width: 100%;
	margin: 30px 0;
	padding: 24px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

body.sa-sharkmovie-ui .sa-share__eyebrow {
	display: none;
}

body.sa-sharkmovie-ui .sa-share h2 {
	margin: 0 0 16px;
	color: #0f172a;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
}

body.sa-sharkmovie-ui .sa-share__buttons {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

body.sa-sharkmovie-ui .sa-share__button {
	display: inline-flex;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	min-height: 88px;
	padding: 14px 10px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	color: #4b5563;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

body.sa-sharkmovie-ui .sa-share__button svg {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	fill: currentColor;
	stroke: none;
}

body.sa-sharkmovie-ui .sa-share__button--whatsapp { color: #25D366; border-color: #d1fae5; }
body.sa-sharkmovie-ui .sa-share__button--facebook { color: #1877F2; border-color: #dbeafe; }
body.sa-sharkmovie-ui .sa-share__button--x { color: #0f172a; border-color: #e5e7eb; }
body.sa-sharkmovie-ui .sa-share__button--telegram { color: #229ED9; border-color: #e0f2fe; }
body.sa-sharkmovie-ui .sa-share__button--copy { color: #4B5563; border-color: #e5e7eb; }

body.sa-sharkmovie-ui .sa-share__button:hover {
	background: #f8fafc;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

body.sa-sharkmovie-ui .sa-share__button.is-copied,
body.sa-sharkmovie-ui .sa-share__button--copy.is-copied {
	border-color: var(--sa-success);
	color: #16a34a;
}

@media (max-width: 720px) {
	body.sa-sharkmovie-ui .sa-share__buttons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Relacionados */
body.sa-sharkmovie-ui .sa-related {
	margin: 36px 0 12px;
}

body.sa-sharkmovie-ui .sa-related__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

body.sa-sharkmovie-ui .sa-related__heading h2 {
	margin: 0;
	color: var(--sa-ink);
	font-size: 1.5rem;
	font-weight: 800;
}

body.sa-sharkmovie-ui .sa-related__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

body.sa-sharkmovie-ui .sa-anime-page .sa-related .sa-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--sa-border, #e2e8f0);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

body.sa-sharkmovie-ui .sa-anime-page .sa-related .sa-card__link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	padding: 0;
	color: inherit;
	text-decoration: none;
}

body.sa-sharkmovie-ui .sa-anime-page .sa-related .sa-card__poster {
	position: relative;
	width: 100%;
	margin: 0;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	border-radius: 0;
	background: #e2e8f0;
}

body.sa-sharkmovie-ui .sa-anime-page .sa-related .sa-card__img,
body.sa-sharkmovie-ui .sa-anime-page .sa-related .sa-card__img-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	object-fit: cover;
	vertical-align: top;
}

body.sa-sharkmovie-ui .sa-anime-page .sa-related .sa-card__info {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	padding: 12px 12px 8px;
}

body.sa-sharkmovie-ui .sa-anime-page .sa-related .sa-card__btn-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	gap: 6px;
	box-sizing: border-box;
	width: auto;
	min-height: 40px;
	margin: 0 12px 12px;
	padding: 0 12px;
	border: 0;
	border-radius: 999px;
	background: var(--sa-button-bg, var(--sa-primary, #1a6ef5));
	color: var(--sa-button-text, #fff) !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

body.sa-sharkmovie-ui .sa-anime-page .sa-related .sa-card__btn-download svg {
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	stroke: currentColor;
}

@media (max-width: 1100px) {
	body.sa-sharkmovie-ui .sa-related__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	body.sa-sharkmovie-ui .sa-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Footer */
body.sa-sharkmovie-ui .sa-site-footer {
	margin-top: 40px;
	padding-top: 60px;
	border-top: 1px solid var(--sa-border);
	background: #fff;
	color: var(--sa-muted);
	font-size: .9rem;
}

body.sa-sharkmovie-ui .sa-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
	gap: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--sa-border);
}

body.sa-sharkmovie-ui .sa-footer-col {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

body.sa-sharkmovie-ui .sa-footer-brand {
	margin-bottom: 16px;
}

body.sa-sharkmovie-ui .sa-footer-tagline {
	max-width: 280px;
	margin: 0 0 20px;
	color: var(--sa-muted);
	line-height: 1.6;
}

body.sa-sharkmovie-ui .sa-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

body.sa-sharkmovie-ui .sa-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--sa-surface-alt);
	color: var(--sa-ink);
	text-decoration: none;
	transition: background .25s ease, color .25s ease, transform .25s ease;
}

body.sa-sharkmovie-ui .sa-social-icon svg {
	width: 16px;
	height: 16px;
}

body.sa-sharkmovie-ui .sa-social-icon:hover {
	background: var(--sa-primary);
	color: #fff;
	transform: translateY(-2px);
}

body.sa-sharkmovie-ui .sa-footer-title {
	margin: 0 0 18px;
	color: var(--sa-ink);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}

body.sa-sharkmovie-ui .sa-footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.sa-sharkmovie-ui .sa-footer-links li {
	margin: 0;
}

body.sa-sharkmovie-ui .sa-footer-links a {
	color: var(--sa-muted);
	text-decoration: none;
	transition: color .2s ease, padding .2s ease;
}

body.sa-sharkmovie-ui .sa-footer-links a:hover {
	padding-inline-start: 4px;
	color: var(--sa-primary);
}

body.sa-sharkmovie-ui .sa-footer-empty {
	margin: 0;
	color: var(--sa-muted);
	font-size: .85rem;
}

body.sa-sharkmovie-ui .sa-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
	font-size: .85rem;
}

body.sa-sharkmovie-ui .sa-footer-credit {
	color: var(--sa-muted);
}

/* RTL */
[dir="rtl"] body.sa-sharkmovie-ui .sa-hero-banner__body {
	right: 64px;
	left: auto;
	align-items: flex-start;
	text-align: right;
}

[dir="rtl"] body.sa-sharkmovie-ui .sa-hero-banner__img {
	right: auto;
	left: 5%;
	object-position: left center;
}

[dir="rtl"] body.sa-sharkmovie-ui .sa-hero-slider__nav--prev {
	right: 16px;
	left: auto;
	transform: translateY(-50%) scaleX(-1);
}

[dir="rtl"] body.sa-sharkmovie-ui .sa-hero-slider__nav--next {
	right: auto;
	left: 16px;
	transform: translateY(-50%) scaleX(-1);
}

[dir="rtl"] body.sa-sharkmovie-ui .sa-hero-slider__count {
	right: auto;
	left: 22px;
}

@media (max-width: 1180px) {
	body.sa-sharkmovie-ui .sa-header__inner {
		position: relative;
		grid-template-columns: 1fr auto;
	}

	body.sa-sharkmovie-ui .sa-header {
		position: static;
		top: auto;
	}

	body.sa-sharkmovie-ui .sa-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: 400;
		display: none;
		justify-self: stretch;
		max-height: calc(100vh - 84px);
		padding: 12px;
		overflow-y: auto;
		border: 1px solid var(--sa-border);
		border-radius: 0 0 16px 16px;
		background: #fff;
		box-shadow: 0 18px 36px rgba(15, 23, 42, .16);
	}

	body.sa-sharkmovie-ui .sa-nav.is-open {
		display: block;
	}

	body.sa-sharkmovie-ui .sa-nav__menu {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
	}

	body.sa-sharkmovie-ui .sa-nav__menu > li > a {
		justify-content: flex-start;
		width: 100%;
		min-height: 44px;
		padding-inline: 14px;
		font-size: .88rem;
	}

	body.sa-sharkmovie-ui .sa-nav-toggle {
		display: inline-flex;
	}
}

@media (min-width: 641px) and (max-width: 1023px) {
	body.sa-sharkmovie-ui .sa-hero-slider { height: 460px; }
	body.sa-sharkmovie-ui .sa-hero-banner__body {
		top: 24px;
		bottom: 44px;
		left: 40px;
		width: min(520px, calc(100% - 80px));
		max-width: calc(100% - 80px);
		padding: 28px;
	}
	body.sa-sharkmovie-ui .sa-hero-banner__img {
		right: 3.5%;
		max-width: 34%;
	}
	body.sa-sharkmovie-ui .sa-hero-banner__title,
	body.sa-sharkmovie-ui .sa-hero-slider__title {
		font-size: clamp(1.75rem, 4vw, 2.35rem);
	}
	body.sa-sharkmovie-ui .sa-related__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	body.sa-sharkmovie-ui .sa-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 640px) {
	body.sa-sharkmovie-ui .sa-container {
		padding-inline: 14px;
	}

	body.sa-sharkmovie-ui .sa-header__inner {
		min-height: 68px;
	}

	body.sa-sharkmovie-ui .custom-logo {
		max-width: 170px;
		height: 36px;
	}

	body.sa-sharkmovie-ui .sa-language__trigger {
		padding-inline: 7px;
	}

	body.sa-sharkmovie-ui .sa-language__trigger > span:not(.sa-language__flag) {
		display: none;
	}

	body.sa-sharkmovie-ui .sa-main.sa-home {
		padding-block: 20px 44px;
	}

	body.sa-sharkmovie-ui .sa-hero-slider {
		height: 420px;
		margin-bottom: 20px;
		border-radius: 20px;
	}

	body.sa-sharkmovie-ui .sa-hero-banner__art::before {
		background: linear-gradient(to bottom, rgba(3, 7, 18, .08) 0%, rgba(3, 7, 18, .25) 44%, rgba(3, 7, 18, .78) 100%);
	}

	body.sa-sharkmovie-ui.sa-home .sa-hero-slider__slide .sa-hero-banner__art {
		display: block;
	}

	body.sa-sharkmovie-ui .sa-hero-banner__img {
		top: 18px;
		right: 18px;
		width: auto;
		max-width: 44%;
		height: 54%;
		object-position: center top;
		border-radius: 13px;
		transform: none;
	}

	body.sa-sharkmovie-ui .sa-hero-banner__body {
		top: auto;
		right: 12px;
		bottom: 12px;
		left: 12px;
		width: auto;
		max-width: none;
		max-height: calc(100% - 24px);
		padding: 20px;
		border-radius: 14px;
		gap: 8px;
	}

	body.sa-sharkmovie-ui.sa-home .sa-hero-slider__slide .sa-hero-banner__body {
		width: auto;
	}

	body.sa-sharkmovie-ui .sa-hero-banner__title,
	body.sa-sharkmovie-ui .sa-hero-slider__title {
		font-size: 1.5rem;
	}

	body.sa-sharkmovie-ui .sa-hero-banner__synopsis {
		-webkit-line-clamp: 2;
		font-size: .85rem;
		line-height: 1.45;
	}

	body.sa-sharkmovie-ui .sa-hero-banner__actions {
		width: 100%;
		gap: 8px;
	}

	body.sa-sharkmovie-ui .sa-hero-banner__action {
		flex: 1 1 0;
		min-width: 0;
		padding-inline: 10px;
		font-size: .82rem;
	}

	body.sa-sharkmovie-ui .sa-hero-slider__nav {
		width: 40px;
		height: 40px;
		min-width: 40px;
		min-height: 40px;
	}

	body.sa-sharkmovie-ui .sa-hero-slider__nav--prev { left: 8px; }
	body.sa-sharkmovie-ui .sa-hero-slider__nav--next { right: 8px; }
	body.sa-sharkmovie-ui .sa-hero-slider__count {
		top: 12px;
		right: 12px;
		bottom: auto;
		padding: 4px 8px;
		border-radius: 999px;
		background: rgba(7, 20, 38, .78);
	}

	body.sa-sharkmovie-ui .sa-ad-slot {
		max-width: 360px;
		margin-block: 22px;
	}

	body.sa-sharkmovie-ui .sa-ad-demo {
		min-height: 100px;
	}

	body.sa-sharkmovie-ui .sa-share {
		padding: 22px 16px 18px;
	}

	body.sa-sharkmovie-ui .sa-share__buttons {
		grid-template-columns: 1fr 1fr;
	}

	body.sa-sharkmovie-ui .sa-share__button--copy {
		grid-column: 1 / -1;
	}

	body.sa-sharkmovie-ui .sa-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	body.sa-sharkmovie-ui .sa-footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	body.sa-sharkmovie-ui .sa-footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.sa-sharkmovie-ui .sa-hero-slider__slide.is-active {
		animation: none;
	}
	body.sa-sharkmovie-ui .sa-hero-slider__nav,
	body.sa-sharkmovie-ui .sa-share__button {
		transition: none;
	}
}
