:root {
	--bg: #141414;
	--bg-deep: #0a0a0a;
	--surface: #1a1a1a;
	--surface-2: #232323;
	--surface-3: #2c2c2c;
	--text: #ffffff;
	--muted: #b3b3b3;
	--faint: #808080;
	--accent: #e50914;
	--accent-hover: #f40612;
	--radius: 4px;
	--wrap: 1500px;
	--header-h: 68px;
	--ease: cubic-bezier(0.2, 0, 0.2, 1);
}

* { box-sizing: border-box; }

/* Visually hidden, but available to screen readers and search crawlers — used
   for the page <h1> on the browse home, whose visual identity is the header. */
.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: "Be Vietnam Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; border-radius: 2px; }

/* Full-bleed main; pages center their own content in .wrap. */
main { width: 100%; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 4%; }

/* --- Header ------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	display: flex;
	align-items: center;
	gap: 32px;
	height: var(--header-h);
	padding: 0 4%;
	background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0) 100%);
}
.brand {
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--accent);
	text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.site-nav { display: flex; gap: 22px; }
.site-nav a {
	font-size: 0.92rem; font-weight: 500; color: #e5e5e5;
	transition: color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--muted); }
/* Discord support link: a brand-coloured pill pinned to the header's right edge.
   Kept outside .site-nav so it survives the mobile breakpoint that hides the nav. */
.discord-link {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: #5865f2;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
	transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.discord-link:hover { background: #4752c4; transform: translateY(-1px); }
.discord-icon { display: block; }

/* --- Hero billboard ----------------------------------------------------- */
.hero {
	position: relative;
	min-height: min(78vh, 760px);
	margin-top: calc(var(--header-h) * -1);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
/* Carousel: slides stack and cross-fade, one active at a time. */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
	position: absolute; inset: 0;
	display: flex; align-items: flex-end;
	opacity: 0; visibility: hidden;
	transition: opacity 0.8s var(--ease), visibility 0s linear 0.8s;
}
.hero-slide.is-active {
	opacity: 1; visibility: visible; z-index: 1;
	transition: opacity 0.8s var(--ease);
}
.hero-bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center 18%;
	z-index: 0;
}
.hero-scrim {
	position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 38%, rgba(10,10,10,0) 70%),
		linear-gradient(0deg, var(--bg) 2%, rgba(20,20,20,0.2) 38%, rgba(20,20,20,0) 60%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 96px; padding-bottom: clamp(40px, 7vw, 90px); }
.hero-body { max-width: 640px; }
.hero-eyebrow {
	display: inline-block;
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}
.hero-title {
	margin: 0;
	font-size: clamp(2.1rem, 6vw, 4.4rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero-meta {
	display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
	margin: 18px 0 0;
	color: #d8d8d8; font-size: 0.95rem; font-weight: 500;
}
.hero-score { color: var(--text); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.hero-score::before { content: "★"; color: var(--accent); }
.hero-overview {
	margin: 16px 0 0;
	max-width: 56ch;
	color: #d2d2d2; font-size: 1.02rem;
	text-shadow: 0 1px 12px rgba(0,0,0,0.7);
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn-play, .btn-info {
	display: inline-flex; align-items: center; gap: 10px;
	font-weight: 700; font-size: 1.02rem; padding: 12px 28px; border-radius: var(--radius);
	transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn-play { background: #fff; color: #000; }
.btn-play:hover { background: rgba(255,255,255,0.78); }
.btn-info { background: rgba(109,109,110,0.55); color: #fff; backdrop-filter: blur(2px); }
.btn-info:hover { background: rgba(109,109,110,0.4); }
.btn-play:active, .btn-info:active { transform: scale(0.97); }
.btn-play .ico, .btn-info .ico { font-size: 1.1em; line-height: 1; }

/* Dot navigation (only rendered when more than one slide). */
.hero-dots {
	position: absolute; z-index: 3; left: 0; right: 0; bottom: 22px;
	display: flex; justify-content: center; gap: 10px;
}
.hero-dot {
	width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%;
	cursor: pointer; background: rgba(255,255,255,0.4);
	transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.is-active { background: var(--accent); transform: scale(1.3); }

/* Staggered load-in, replayed each time a slide becomes active (suppressed
   under reduced motion, below). */
.hero-slide.is-active .hero-eyebrow,
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-meta,
.hero-slide.is-active .hero-overview,
.hero-slide.is-active .hero-actions {
	animation: heroRise 0.7s var(--ease) both;
}
.hero-slide.is-active .hero-title { animation-delay: 0.06s; }
.hero-slide.is-active .hero-meta { animation-delay: 0.12s; }
.hero-slide.is-active .hero-overview { animation-delay: 0.18s; }
.hero-slide.is-active .hero-actions { animation-delay: 0.24s; }
@keyframes heroRise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

/* --- Browse container --------------------------------------------------- */
.browse { padding-top: 26px; padding-bottom: 56px; }
.hero + .browse { padding-top: 8px; }

/* --- Filters ------------------------------------------------------------ */
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}
.filters input,
.filters select {
	background: rgba(0,0,0,0.55);
	border: 1px solid #404040;
	color: var(--text);
	padding: 11px 14px;
	border-radius: var(--radius);
	font-size: 0.95rem;
	font-family: inherit;
}
.filters select { cursor: pointer; }
.filters select option { background: var(--surface); }
.filters .search { flex: 1 1 280px; }
.filter-btn {
	background: var(--accent); border: 1px solid var(--accent); color: #fff;
	padding: 11px 22px; border-radius: var(--radius); font-size: 0.95rem;
	font-weight: 700; cursor: pointer; font-family: inherit;
	transition: background 0.15s var(--ease);
}
.filter-btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.filters input::placeholder { color: #8c8c8c; }
.filters input:focus,
.filters select:focus { outline: none; border-color: var(--text); background: rgba(0,0,0,0.85); }

/* --- Grid --------------------------------------------------------------- */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
	gap: 22px 14px;
}
.empty { color: var(--muted); grid-column: 1 / -1; padding: 48px 0; text-align: center; }

/* --- Card (grid + row) -------------------------------------------------- */
.card {
	border-radius: var(--radius);
	transition: transform 0.28s var(--ease);
	position: relative;
}
.card:hover { transform: scale(1.06); z-index: 6; }
.poster {
	aspect-ratio: 2 / 3;
	background: var(--surface-2);
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	box-shadow: 0 4px 14px rgba(0,0,0,0.45);
	transition: box-shadow 0.28s var(--ease), outline-color 0.28s var(--ease);
	outline: 2px solid transparent;
	outline-offset: -2px;
}
.card:hover .poster { box-shadow: 0 16px 38px rgba(0,0,0,0.75); outline-color: var(--accent); }
.poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster-empty {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	padding: 10px; text-align: center; color: var(--muted); font-size: 0.85rem;
}
/* Rating badge (top-right, always visible) + play badge (center, hover only). */
.card-score {
	position: absolute; top: 8px; right: 8px; z-index: 2;
	display: inline-flex; align-items: center; gap: 3px;
	font-size: 0.7rem; font-weight: 700; letter-spacing: 0.01em;
	padding: 3px 8px; border-radius: 3px;
	background: rgba(0,0,0,0.66); color: var(--text);
}
.card-score::before { content: "★"; color: var(--accent); }
/* "Vietsub" badge (bottom-right): the movie has a Vietnamese subtitle saved. */
.card-vietsub {
	position: absolute; bottom: 8px; right: 8px; z-index: 2;
	font-size: 0.66rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
	padding: 3px 7px; border-radius: 3px;
	background: var(--accent); color: #fff;
}
.card-play {
	position: absolute; inset: 0; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem; color: #fff;
	background: rgba(0,0,0,0.32);
	opacity: 0; transition: opacity 0.25s var(--ease);
}
.card:hover .card-play { opacity: 1; }
.card-body { padding: 9px 2px 0; }
.card-title {
	font-weight: 600; font-size: 0.92rem; line-height: 1.3;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-original {
	color: var(--muted); font-size: 0.76rem; margin-top: 2px; font-style: italic;
	display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta { color: var(--faint); font-size: 0.78rem; margin-top: 3px; }

/* --- Browse rows (carousels) -------------------------------------------- */
.row { margin-bottom: 40px; }
.row-title { font-size: 1.32rem; font-weight: 700; margin: 0 0 14px; letter-spacing: -0.01em; }
.row-title a { display: inline-flex; align-items: baseline; gap: 6px; }
.row-title span { color: inherit; }
.row-chevron {
	color: var(--accent); font-weight: 900;
	opacity: 0; transform: translateX(-6px);
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.row-title a:hover .row-chevron { opacity: 1; transform: translateX(0); }

/* The rail holds the scrolling track plus the edge arrow buttons. */
/* The rail breaks out by the hover-room inset on each side so the edge arrows
   (positioned to the rail) line up with the track's visible edges, while the
   track's own padding keeps the cards aligned with the row title. */
.row-rail { position: relative; margin: 0 -16px; }
.row-track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 16px;
	margin: -16px 0;
	scroll-padding: 0 16px;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.row-track::-webkit-scrollbar { display: none; }
.row-track .card { flex: 0 0 168px; scroll-snap-align: start; }

/* Hover arrows replace the scrollbar; each hides at the end it reaches. */
.row-arrow {
	position: absolute; top: 16px; bottom: 16px; z-index: 7;
	width: 46px; border: none; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	background: rgba(0,0,0,0.55); color: #fff;
	font-size: 2rem; line-height: 1; font-family: inherit;
	opacity: 0; transition: opacity 0.2s var(--ease), background 0.2s var(--ease);
}
.row-rail:hover .row-arrow { opacity: 1; }
.row-arrow:hover { background: rgba(0,0,0,0.82); }
.row-arrow:focus-visible { opacity: 1; }
.row-arrow[hidden] { display: none; }
.row-arrow-prev { left: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.row-arrow-next { right: 0; border-radius: var(--radius) 0 0 var(--radius); }

/* --- Ranked "Top 10" row ------------------------------------------------ */
.row-ranked .row-track .rank-card { scroll-snap-align: start; }
.rank-card {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-end;
	transition: transform 0.28s var(--ease);
}
.rank-card:hover { transform: scale(1.05); z-index: 6; }
.rank-num {
	font-size: clamp(110px, 13vw, 168px);
	font-weight: 900;
	line-height: 0.7;
	color: #141414;
	-webkit-text-stroke: 3px #565656;
	letter-spacing: -0.05em;
	margin-right: -14px;
	flex: 0 0 auto;
	transition: -webkit-text-stroke-color 0.28s var(--ease);
}
.rank-card:hover .rank-num { -webkit-text-stroke-color: var(--accent); }
.rank-poster {
	flex: 0 0 118px;
	aspect-ratio: 2 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--surface-2);
	box-shadow: 0 6px 18px rgba(0,0,0,0.55);
}
.rank-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Pager -------------------------------------------------------------- */
.pager {
	display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
	align-items: center; margin: 36px 0 8px;
}
.pager-btn, .pager-num {
	font: inherit; cursor: pointer; min-width: 40px; padding: 9px 13px;
	border-radius: var(--radius); border: 1px solid var(--surface-3);
	background: var(--surface); color: inherit; text-align: center;
	display: inline-flex; align-items: center; justify-content: center;
	text-decoration: none; line-height: 1.2;
	transition: background 0.15s var(--ease);
}
.pager-btn:hover, .pager-num:hover { background: var(--surface-3); }
.pager-num.current {
	background: var(--accent); border-color: var(--accent);
	color: #fff; font-weight: 700; cursor: default;
}
.pager-btn.disabled { opacity: 0.4; cursor: default; pointer-events: none; }
.pager-gap { color: var(--muted); padding: 0 4px; }

/* --- Detail ------------------------------------------------------------- */
.detail { position: relative; padding-bottom: 56px; }
.backdrop {
	position: absolute; inset: 0 -4% auto -4%; height: clamp(340px, 50vw, 600px);
	background-size: cover; background-position: center top;
	opacity: 0.5;
	z-index: 0;
}
.backdrop::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(77deg, rgba(20,20,20,0.88) 0%, rgba(20,20,20,0.2) 62%),
		linear-gradient(180deg, rgba(20,20,20,0) 28%, var(--bg) 100%);
}
.detail-main {
	position: relative; z-index: 1;
	display: flex; gap: 36px; flex-wrap: wrap;
	padding-top: 104px;
}
.detail-poster { flex: 0 0 280px; max-width: 100%; }
.detail-poster img { width: 100%; border-radius: var(--radius); display: block; box-shadow: 0 18px 44px rgba(0,0,0,0.65); }
.detail-poster .poster-empty { aspect-ratio: 2/3; background: var(--surface-2); border-radius: var(--radius); }
.detail-info { flex: 1 1 320px; }
.detail-info h1 { margin: 0 0 6px; font-size: clamp(1.8rem, 4.5vw, 2.7rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.detail-info h1 .year { color: var(--muted); font-weight: 400; font-size: clamp(1.1rem, 2.8vw, 1.6rem); }
.original-title { color: var(--muted); font-style: italic; margin: 0 0 12px; }
.meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 16px 0; color: var(--muted); }
.badge { background: rgba(255,255,255,0.12); padding: 4px 10px; border-radius: var(--radius); font-size: 0.8rem; color: var(--text); }
.rating { color: var(--text); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.rating::before { content: "★"; color: var(--accent); }
.genres { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.genre-chip { background: rgba(255,255,255,0.1); padding: 5px 14px; border-radius: 999px; font-size: 0.82rem; }
.overview { margin-top: 18px; max-width: 70ch; color: #d2d2d2; }

/* --- Watch buttons (detail) --------------------------------------------- */
.watch-btn {
	display: inline-flex; align-items: center; gap: 10px;
	margin-top: 24px;
	background: #fff; color: #000;
	font-weight: 700; font-size: 1.05rem; padding: 13px 32px; border-radius: var(--radius);
	transition: background 0.15s var(--ease);
}
.watch-btn:hover { background: rgba(255,255,255,0.78); }
.watch-btn-sm {
	flex: 0 0 auto; align-self: center; margin-left: auto;
	background: var(--accent); color: #fff;
	font-weight: 600; font-size: 0.85rem; padding: 8px 16px; border-radius: var(--radius);
	white-space: nowrap; transition: background 0.15s var(--ease);
}
.watch-btn-sm:hover { background: var(--accent-hover); }

/* --- Seasons (TV) ------------------------------------------------------- */
.seasons { position: relative; z-index: 1; margin-top: 52px; }
.seasons h2 { font-size: 1.4rem; margin-bottom: 16px; font-weight: 700; }
.season { background: var(--surface); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.season-head {
	display: flex; justify-content: space-between; align-items: center;
	color: var(--text); list-style: none;
	padding: 16px 18px; font-size: 1.05rem; font-weight: 600; cursor: pointer;
}
.season-head::-webkit-details-marker { display: none; }
.season-head:hover { background: var(--surface-2); }
.ep-count { color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.episodes { padding: 4px 18px 16px; }
.episode { display: flex; gap: 16px; align-items: center; padding: 14px 0; border-top: 1px solid #333; transition: background 0.15s var(--ease); }
.episode:hover { background: rgba(255,255,255,0.03); }
.ep-num { color: var(--muted); font-weight: 700; font-size: 1.3rem; min-width: 28px; text-align: center; }
.ep-title { font-weight: 600; }
.ep-overview { color: var(--muted); font-size: 0.9rem; margin-top: 2px; }

/* --- Watch page --------------------------------------------------------- */
.watch { padding-top: 24px; padding-bottom: 56px; }
.watch .back-link { color: var(--muted); }
.watch .back-link:hover { color: var(--text); }
.player {
	margin: 16px 0 24px;
	background: #000; border-radius: var(--radius); overflow: hidden;
	box-shadow: 0 20px 56px rgba(0,0,0,0.7);
}
.player video { width: 100%; max-height: 78vh; display: block; }
.watch-sub { color: var(--text); margin: 0 0 10px; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
	border-top: 1px solid var(--surface-2);
	background: var(--bg-deep);
	padding: 38px 0 48px;
	margin-top: 8px;
}
.footer-brand {
	display: inline-block;
	font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px;
	color: var(--accent); font-size: 1.15rem; margin-bottom: 10px;
}
.site-footer p { margin: 0; color: var(--faint); font-size: 0.86rem; max-width: 60ch; }

/* --- 404 ---------------------------------------------------------------- */
.notfound { text-align: center; padding: 120px 20px; }
.notfound h1 { font-size: 5rem; margin: 0; color: var(--accent); font-weight: 900; }
.back-link { display: inline-block; margin-top: 16px; color: var(--text); }

/* --- Responsive --------------------------------------------------------- */

/* On touch devices the hover-zoom can clip a card against the screen edge and
   feels janky, so neutralise it (hover styles are pointer-only anyway). */
@media (hover: none) {
	.card:hover { transform: none; }
	.card:hover .poster { box-shadow: 0 4px 14px rgba(0,0,0,0.45); outline-color: transparent; }
	.rank-card:hover { transform: none; }
	.rank-card:hover .rank-num { -webkit-text-stroke-color: #565656; }
	.row-chevron { opacity: 1; transform: none; }
	.card-play { display: none; }
	.row-arrow { display: none; }
	/* No hover-zoom here, so drop the breakout/inset (also avoids a sliver of
	   horizontal overflow when the page gutter is narrower than the inset). */
	.row-rail { margin: 0; }
	.row-track { padding-inline: 0; scroll-padding-inline: 0; }
}

/* Tablets / small laptops. */
@media (max-width: 900px) {
	.detail-main { gap: 24px; padding-top: 72px; }
	.detail-poster { flex: 0 0 220px; }
	.row-title { font-size: 1.18rem; }
	.site-nav { gap: 16px; }
}

/* Phones. */
@media (max-width: 600px) {
	.site-header { gap: 18px; }
	.brand { font-size: 1.35rem; }
	.site-nav { display: none; }

	.hero { min-height: 70vh; }
	.hero-overview { -webkit-line-clamp: 4; font-size: 0.96rem; }
	.hero-actions .btn-play, .hero-actions .btn-info { flex: 1 1 auto; justify-content: center; padding: 12px; }

	.filters { gap: 10px; margin-bottom: 22px; }
	.filters .search { flex: 1 1 100%; }
	.filters select { flex: 1 1 calc(50% - 5px); min-width: 0; }
	.filter-btn { flex: 1 1 100%; }

	.grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 18px 10px; }
	.card-title { font-size: 0.86rem; }
	.card-meta { font-size: 0.73rem; }

	.row { margin-bottom: 30px; }
	.row-track .card { flex: 0 0 134px; }
	.rank-poster { flex: 0 0 96px; }
	.rank-num { font-size: 96px; -webkit-text-stroke-width: 2px; margin-right: -10px; }

	.detail-main { padding-top: 44px; gap: 18px; }
	.detail-poster { flex: 0 0 150px; }
	.detail-info { flex: 1 1 100%; }
	.meta-row { gap: 10px; margin: 12px 0; }
	.overview { margin-top: 14px; }
	.watch-btn { display: flex; width: 100%; justify-content: center; font-size: 1rem; padding: 13px; }

	.seasons { margin-top: 36px; }
	.season-head { padding: 13px 14px; font-size: 0.96rem; }
	.episodes { padding: 4px 14px 14px; }
	.episode { gap: 12px; flex-wrap: wrap; }
	.ep-num { font-size: 1.1rem; min-width: 22px; }
	.ep-body { flex: 1 1 auto; min-width: 0; }
	.watch-btn-sm { margin-left: auto; }

	.notfound { padding: 80px 20px; }
	.notfound h1 { font-size: 3.5rem; }
}

/* Respect reduced-motion: drop the hero load-in and all transitions. */
@media (prefers-reduced-motion: reduce) {
	.hero-slide.is-active .hero-eyebrow,
	.hero-slide.is-active .hero-title,
	.hero-slide.is-active .hero-meta,
	.hero-slide.is-active .hero-overview,
	.hero-slide.is-active .hero-actions {
		animation: none;
	}
	* { transition: none !important; }
}
