
/* BASIC LAYOUT
----------------------------------------------- */
.wrapper {min-width: 320px; position: relative; overflow: clip;}
.wrapper__container {max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 20;}
.header {padding: 40px 0;}
.carou {background-color: rgba(0,0,0,0.5); padding: 30px var(--indent); margin-bottom: 40px; 
	border: 2px solid var(--accent-fade); border-left: 0; border-right: 0; 
	backdrop-filter: blur(3px); box-shadow: var(--bsh-long)}
.cols {display: grid; grid-template-columns: 360px minmax(0,1fr); min-height: 100vh; 
	grid-template-areas: "sidebar content"; background-color: var(--bg); box-shadow: var(--bsh-long);}
.cols__content {grid-area: content; padding: 30px 40px; padding-bottom: 40px;}
.cols__sidebar {grid-area: sidebar; padding: 20px var(--indent); gap: 40px;
	box-shadow: inset -20px 0 20px -20px rgba(0,0,0,0.13);}
.footer {padding: 40px var(--indent); color: var(--tt); --tt: var(--tt);}
.footer__two {border-top: 1px solid var(--bdc); padding-top: 20px; margin-top: 20px;}
.footer__one {
	width: calc(100% + (var(--indent) * 2));
	margin-left: calc(var(--indent) * -1);
	margin-right: calc(var(--indent) * -1);
	padding: 14px 16px;
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.55));
	backdrop-filter: blur(4px);
}
.footer__one .footer__notify {
	border-left: 1px solid var(--bdc);
	padding-left: 16px;
}
.footer__one .footer__menu {
	margin-left: auto;
}
.footer__one .footer__menu a {
	padding: 4px 0;
}
.footer__one .footer__lightstat {
	align-self: stretch;
}
.dt .footer__one {
	border-color: rgba(255,255,255,0.16);
	background: linear-gradient(180deg, rgba(0,0,0,0.36), rgba(0,0,0,0.26));
}
.dt .footer {
	color: #fff;
	--tt: #fff;
}
.dt .footer__two {
	border-top-color: rgba(255,255,255,0.3);
}
.dt .footer__one .footer__notify {
	border-left-color: rgba(255,255,255,0.18);
}
.dt .footer__one .footer__notify,
.dt .footer__one .footer__menu a,
.dt .footer__copyright {
	color: rgba(255,255,255,0.92);
}
.dt .footer__one .footer__menu a:hover {
	color: var(--accent);
}
.col2 .cols {grid-template-columns: minmax(0,1fr) 360px; grid-template-areas: "content sidebar";}
.col2 .cols__sidebar {box-shadow: inset 20px 0 20px -20px rgba(0,0,0,0.13);}
.has-branding .header, .has-branding .footer {background-color: var(--bg-black); 
	padding-left: var(--indent); padding-right: var(--indent);}
.has-branding .carou {margin-bottom: 0; box-shadow: none;}

.has-branding {padding-top: 140px;}
.ppp img, .ppp a {display: block; margin: 0 auto; aspect-ratio: 1200 / 150; width: 100%;}

.reg-promo {
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 985;
	width: min(100% - 32px, 320px);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-16px);
	transition: opacity .35s, transform .35s, visibility .35s;
}
.has-branding .reg-promo {top: 150px;}
.reg-promo.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.reg-promo__box {
	position: relative;
	padding: 18px 18px 16px;
	border-radius: 14px;
	background: var(--bg);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.reg-promo__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--tt-fade);
	font-size: 16px;
	cursor: pointer;
}
.reg-promo__close:hover {color: var(--tt);}
.reg-promo__head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-right: 24px;
	margin-bottom: 12px;
}
.reg-promo__ico {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--accent-fade);
	color: var(--accent);
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.reg-promo__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--tt);
}
.reg-promo__text {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.45;
	text-align: center;
	color: var(--tt-fade);
}
.reg-promo__btn {
	display: block;
	width: 100%;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--accent);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: opacity .2s, box-shadow .2s;
}
.reg-promo__btn:hover {
	color: #fff;
	opacity: .92;
	box-shadow: 0 4px 16px var(--accent-fade);
	text-decoration: none;
}
.reg-promo__timer {
	margin: 10px 0 0;
	font-size: 12px;
	text-align: center;
	color: var(--tt-fade);
}
.reg-promo__progress {
	height: 3px;
	margin-top: 8px;
	border-radius: 2px;
	background: var(--bg-darker);
	overflow: hidden;
}
.reg-promo__progress-fill {
	display: block;
	height: 100%;
	width: 100%;
	background: var(--accent);
	transition: width 1s linear;
}
.dt .reg-promo__box {box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);}

.scrolltop {position: fixed; width: 40px; height: 40px; right: 10px; bottom: 10px; padding: 0;
	z-index: 990; border-radius: 4px; font-size: 18px; opacity: 0; scale: 0 0;}
.scrolltop.is-active {scale: 1 1; opacity: 1;}
.overlay {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%; 
	opacity: 0.8; background-color: #1d1924; cursor: pointer; display: none;}


/* HEADER, TOPMENU, CAROU
----------------------------------------------- */
.logo {display: flex; align-items: center; font-family: 'Rounds Black', sans-serif; font-weight: 900;
	padding-left: 46px; position: relative; font-size: 22px; letter-spacing: -0.02em; white-space: nowrap;
	background: url(../images/logo.png) 0 center / 36px no-repeat; height: 40px; --tt: #fff;}
.logo span {color: var(--accent);}
.header .ya-share2 {margin-right: auto; margin-left: auto;}
.header__theme-select {color: var(--yellow);}
.dt .header__theme-select::before {content:"\f755";}
.header__btn-login {border-radius: 20px; padding: 0 40px;}
.header__btn1 {--tt: #fff;}
.header__ava {width: 40px; cursor: pointer;}
.header__btn1 span {position: absolute; right: 0; top: 0; padding: 1px 3px; font-size: 10px; border-radius: 6px; 
	background-color: var(--accent); color: #fff; display: inline-block; 
	text-align: center; min-width: 20px; line-height: 1.3;}

.search-block {position: relative; width: 400px; --tt: var(--accent)}
.search-block__input, .search-block__input:focus {padding: 0 60px 0 20px; border: 0; box-shadow: none;
	background-color: rgba(0,0,0,0.3); backdrop-filter: blur(3px); color: #fff; border-radius: 20px;}
.search-block__input:not(:focus)::placeholder {color: #fff; opacity: 0.66;}
.search-block__btn {position: absolute; right: 0; top: 0; height: 40px; font-size: 18px; width: 60px; border-radius: 20px;}


/* SECTION
----------------------------------------------- */
.sect:not(:last-child) {margin-bottom: 40px;}
.sect-comms {margin-bottom: 24px; padding-bottom: 24px; border-bottom: 4px dotted var(--bdc);}
.sect-comms__title {margin: 0; font-size: 20px; font-weight: 500;}
.sect-comms__all {font-size: 13px; font-weight: 500; color: var(--accent); white-space: nowrap; text-decoration: none;}
.sect-comms__all::before {margin-right: 6px;}
.sect-comms__all:hover {opacity: 0.85;}
.sect-comms__list {display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px;}
.sect-comms .lcomm {margin: 0;}
.sect-comms--cards .sect-comms__header {margin-bottom: 20px;}
.sect-comms--cards .sect-comms__track {display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch;}
.sect-comms--cards .comm-card {display: flex; flex-direction: column; min-height: 100%; background: var(--bg-darker); border-radius: 8px; border: 1px solid var(--bdc); transition: border-color 0.2s, box-shadow 0.2s;}
.sect-comms--cards .comm-card:hover {border-color: var(--accent); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);}
.sect-comms--cards .comm-card__link {display: flex; flex-direction: column; flex: 1; height: 100%; padding: 14px; color: inherit; text-decoration: none;}
.sect-comms--cards .comm-card__ava {width: 36px; flex-shrink: 0;}
.sect-comms--cards .comm-card__author {font-size: 14px; font-weight: 500;}
.sect-comms--cards .comm-card__date {font-size: 12px; color: var(--tt-fade);}
.sect-comms--cards .comm-card__text {flex: 1 1 auto; font-size: 13px; line-height: 1.45; margin: 12px 0 0; color: var(--tt);}
.sect-comms--cards .comm-card__film {flex-shrink: 0; margin-top: auto; font-size: 12px; color: var(--accent); padding-top: 10px; border-top: 1px solid var(--bdc);}
.sect-comms--cards .comm-card__film::before {margin-right: 6px; opacity: 0.8;}
.sect-comms--cards .sect-comms__more {display: block; margin-top: 16px; padding-top: 4px; font-size: 13px; font-weight: 500; color: var(--tt-fade); text-align: center; text-decoration: none;}
.sect-comms--cards .sect-comms__more::before {margin-right: 6px;}
.sect-comms--cards .sect-comms__more:hover {color: var(--accent);}
.sect__header {margin-bottom: 20px; padding-bottom: 20px; border-bottom: 4px dotted var(--bdc);}
.sect__header--main {margin: -30px -40px 20px -40px; padding: 20px 40px;}
.sect__title {font-size: 24px; font-weight: 400;}
.sect__grid-select {gap: 10px; flex-direction: row-reverse;}
.sect__grid-select button {font-size: 14px; background-color: var(--bg-darker); color: var(--bg-darkest); height: 30px;}
.grid1 .sect__grid-select button:first-child, .grid2 .sect__grid-select button:nth-child(2), 
.grid3 .sect__grid-select button:nth-child(3) {background-color: var(--accent); color: #fff;}
.speedbar {color: var(--tt-fade); font-size: 14px; padding: 20px 40px;
	border-bottom: 4px dotted var(--bdc); margin: -30px -40px; margin-bottom: 20px;}
.speedbar a {color: var(--tt);}
.speedbar::before {color: var(--blue); margin-right: 10px;}

.descr {color: var(--tt-fade-0); display: grid; gap: 10px; padding-top: 20px;}
.descr :is(h1,h2,h3) {font-size: 16px; font-weight: 500; color: var(--tt);}
.descr a {text-decoration: underline; color: var(--blue);}
.descr a:hover {color: var(--accent); text-decoration: none;}
.descr ul li {position: relative; padding-left: 25px; margin-left: 25px;}
.descr ul li::before {content:"\f00c"; color: var(--blue); position: absolute; left: 0; top: 0;}
.soc-channels {padding-top: 10px;}
.soc-channels__item {display: flex; flex-direction: column; justify-content: center; text-decoration: none !important;
	position: relative; padding: 0 20px 0 55px; height: 40px; overflow: hidden; line-height: 1; min-width: 200px;
	background-color: #2daae1; color: #fff !important; box-shadow: var(--bsh); font-size: 12px; border-radius: 4px;}
.soc-channels__item div {font-size: 14px; text-transform: none; margin-top: 3px;}
.vk {background-color: #1877f2; color: #fff;}
.yt {background-color: #df1111; color: #fff;}
.soc-channels__item::before {content: ''; width: 40px; height: 40px; background-color: rgba(0,0,0,0.2); 
	position: absolute; left: 0; top: 0; background-position: center center; background-size: 20px; background-repeat: no-repeat;}
.tlg::before {background-image: url(../images/i-tlg.svg); background-size: 16px;}
.vk::before {background-image: url(../images/i-vk.svg);}
.yt::before {background-image: url(../images/i-youtube.svg);}


/* ITEM
----------------------------------------------- */
.item__ext-rating-item {font-size: 15px; padding-left: 30px; line-height: 20px;}
.item__ext-rating-item.kp {background: url(../images/kp.svg) 0 center / 20px no-repeat;}
.item__ext-rating-item.imdb {background: url(../images/imdb.svg) 0 center / 20px no-repeat;}
.item__ratingscore-label {font-size: 12px; padding: 1px 6px; min-width: 34px; border-radius: 0 3px 3px 0; z-index: 5;
	background-color: var(--grey); color: #fff; text-align: center; position: absolute; left: 0; top: 10px;}
.item__ratingscore-label.rating-1, .item__ratingscore-label.rating-2, .item__ratingscore-label.rating-3 {background-color: var(--red);}
.item__ratingscore-label.rating-4, .item__ratingscore-label.rating-5, .item__ratingscore-label.rating-6 {background-color: var(--orange);}
.item__ratingscore-label.rating-7, .item__ratingscore-label.rating-8, .item__ratingscore-label.rating-9, .item__ratingscore-label.rating-10 {background-color: var(--green);}
.item__ratingscore-ring {width: 40px; font-weight: 500; font-size: 13px; 
	background-color: var(--bg); color: var(--tt); box-shadow: var(--bsh);}
.item__ratingscore-ring svg {position: absolute; left: 0; top: 0; fill: none; transform: rotate(-90deg);}
.item__ratingscore-ring svg circle {fill: inherit; stroke: rgba(0,0,0,0.1);}
.item__ratingscore-ring svg circle:nth-child(2) {stroke: var(--yellow);}
.item-poster-badges {
	position: absolute;
	top: 8px;
	right: 8px;
	left: auto;
	z-index: 7;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	pointer-events: none;
	max-width: calc(100% - 48px);
}
.item-poster-badges:empty {display: none;}
.item-poster-badges__item {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.item-poster-badges__item--soon {
	background: var(--accent);
	color: #0a1a14;
}
.item-poster-badges__item--series {
	background: #3b82f6;
	color: #fff;
}
.item-poster-badges__item--4k {
	background: #f0ad4e;
	color: #1a1208;
}
.item-page__img .item-poster-badges {top: 10px; right: 10px;}
.soon__poster .item-poster-badges {
	top: auto;
	right: auto;
	bottom: 6px;
	left: 6px;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	max-width: calc(100% - 12px);
}
.soon__poster .item-poster-badges__item {font-size: 9px; padding: 2px 6px;}
.item-carou .item-poster-badges {top: 8px; right: 8px;}
.grid2 .item-main__img .item-poster-badges {top: 8px; right: 8px; max-width: calc(100% - 16px);}
.item-poster-ribbons {position: absolute; top: 6px; right: 2px; z-index: 6; display: flex; flex-direction: column;
	align-items: flex-end; gap: 0; pointer-events: none; max-width: 55%;}
.item-poster-ribbons__ribbon {display: block; font-weight: 800; font-size: 11px; line-height: 1.15; letter-spacing: 0.02em;
	color: #0a0a0a; background: #f41717; padding: 5px 16px; border-radius: 0; box-shadow: 2px 4px 8px rgba(0,0,0,.4);
	text-transform: uppercase; white-space: nowrap;}
.item-poster-ribbons__ribbon--new {transform: rotate(14deg); transform-origin: 100% 0; margin-right: 4px;}
.item-poster-ribbons__ribbon--day {transform: rotate(16deg); transform-origin: 100% 0; margin-top: -6px; margin-right: 0;
	text-transform: none; font-size: 12px;}
.item-poster-ribbons__ribbon--soon {
	background: var(--accent);
	color: #0a1a14;
	transform: rotate(12deg);
	transform-origin: 100% 0;
	margin-right: 4px;
}
.item-poster-ribbons__ribbon--series {
	background: #3b82f6;
	color: #fff;
	transform: rotate(15deg);
	transform-origin: 100% 0;
	margin-top: -5px;
	margin-right: 0;
}
.soon__poster .item-poster-ribbons {top: 4px; right: 0; max-width: 70%;}
.soon__poster .item-poster-ribbons__ribbon {font-size: 9px; padding: 3px 10px;}
.item-carou .item-poster-ribbons {top: 8px; right: 4px;}
.item__fav > span, .item__fav > a {cursor: pointer; display: grid; place-items: center; aspect-ratio: 1 / 1; margin: -5px 0;
	width: 36px; background-color: var(--bg-darker); color: var(--bg-darkest); font-size: 18px; padding-top: 5px; transition: none;}
.item__fav:has(.fav-added) > a {background-color: var(--yellow); color: rgba(0,0,0,0.8);}
.item__fav::before {content: ''; position: absolute; left: 0; top: 100%; transform-origin: center top;
	border: 18px solid transparent; border-top-color: var(--bg-darker); scale: 1 0.6; margin-top: 5px;}
.item__fav:has(.fav-added)::before {border-top-color: var(--yellow);}
.item__list {line-height: 1.3;}
.item__list li > span:first-child {font-weight: 500; margin-right: 5px;}
.item__list a {color: inherit; text-decoration: none;}
.item__list a:hover {color: var(--accent);}
.item__list-text {color: var(--tt-fade-0); padding-top: 12px; margin-top: 12px; 
	border-top: 4px dotted var(--bdc); line-height: 1.5;}
.item__rating {position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; padding: 0 20px; font-size: 12px; 
	background-color: rgba(0,0,0,0.6); color: #fff; height: 40px;}
.item__rating-item::before {font-size: 18px; color: var(--green);}
.item__rating-item:last-child:before {font-size: 18px; color: var(--red);}
.item__rating .item__ratingscore-ring {position: absolute; left: 50%; top: 0; translate: -50% -50%;}


/* ITEM CAROUSEL, SHORTSTORY
----------------------------------------------- */
.item-carou__desc {position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 20px; font-size: 14px; line-height: 1.3;
	background-color: rgba(0,0,0,0.6); color: #fff; word-wrap: break-word; translate: 0 0%; 
	border-top: 1px solid var(--accent); text-align: center;}
@media (hover: hover) {
	.item-carou .item-carou__desc {
		opacity: 0;
		translate: 0 100%;
	}
	.item-carou:hover .item-carou__desc,
	.item-carou:focus-within .item-carou__desc {
		opacity: 1;
		translate: 0 0;
	}
}
.item-carou__views {
	position: absolute;
	left: 8px;
	top: 8px;
	z-index: 6;
	padding: 4px 8px;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 500;
}
.item-carou__views b {
	color: #7bf59f;
	font-weight: 700;
}

.item-card {grid-column: 1 / -1; padding-bottom: 30px; border-bottom: 1px solid var(--bdc);}
.item-main {display: grid; gap: 18px 20px; grid-template-columns: 200px minmax(0,1fr); 
	grid-template-areas: "header header" "poster info" "poster footer"; grid-template-rows: auto 1fr auto;}
.item-main__header {grid-area: header;}
.item-main__info {grid-area: info;}
.item-main__footer {grid-area: footer;}
.item-main__poster {grid-area: poster;}
.item-main__img {cursor: pointer; align-self: start; box-shadow: var(--bsh);}
.item-main__poster-overlay {display: none;}
.item-main__title {font-size: 20px; font-weight: 400;}
.item-main__img::before {font-size: 50px;}
.item-page__img .item-poster-ribbons {top: 10px; right: 6px;}
.page__notice {
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid rgba(240, 147, 43, 0.35);
	background: rgba(240, 147, 43, 0.12);
	color: var(--tt);
	font-size: 13px;
	line-height: 1.45;
}
.item__btn::before {color: rgba(0,0,0,0.8);}


/* SHORTSTORY GRID VIEW
----------------------------------------------- */
.grid2 .grid-items {grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); gap: 20px;}
.grid3 .grid-items {grid-template-columns: repeat(auto-fill,minmax(360px,1fr)); gap: 35px 20px;}
.grid2 .item-card {grid-column: span 1; grid-template-columns: minmax(0,1fr); padding: 0px; border: 0;} 
.grid2 .item-card .item-main__info, .grid3 .item-card .item__ext-rating-item.imdb, 
.grid2 .item-card .item-main__header .item__fav, .grid3 .item-card .item__rating-item, 
.grid2 .item-main__footer, .grid2 .item-card .item-main__header, .grid2 .item-card .item__rating {display: none;}
.grid2 .item-card {grid-template-areas: "poster"; grid-template-rows: auto;}
.item__fav--grid2 {
	display: none;
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 9;
}
.grid2 .item__fav--grid2 {display: block;}
.grid2 .item__fav--grid2 > span,
.grid2 .item__fav--grid2 > a {
	margin: 0;
	width: 34px;
	height: 34px;
	padding-top: 3px;
	border-radius: 10px;
	background: rgba(20, 24, 32, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.grid2 .item__fav--grid2:hover > span,
.grid2 .item__fav--grid2:hover > a,
.grid2 .item__fav--grid2:focus-within > span,
.grid2 .item__fav--grid2:focus-within > a {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: rgba(0,0,0,0.86);
	transform: translateY(-1px);
}
.grid2 .item__fav--grid2:has(.fav-added) > a {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: rgba(0,0,0,0.86);
}
.grid2 .item__fav--grid2::before {display: none;}
.grid2 .item-main__poster-overlay {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 7;
	padding: 12px 10px 14px;
	min-height: 42%;
	justify-content: flex-end;
	text-align: center;
	color: #fff;
	pointer-events: none;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.94) 0%,
		rgba(0, 0, 0, 0.82) 22%,
		rgba(0, 0, 0, 0.55) 48%,
		rgba(0, 0, 0, 0.2) 72%,
		transparent 100%
	);
	border-radius: inherit;
}
.grid2 .item-main__poster-overlay__title,
.grid2 .item-main__poster-overlay__year,
.grid2 .item-main__poster-overlay__rates {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.92), 0 2px 12px rgba(0, 0, 0, 0.65);
}
.grid2 .item-main__poster-overlay__title {
	pointer-events: auto;
	margin: 0;
	font-size: clamp(13px, 2.8vw, 16px);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.grid2 .item-main__poster-overlay__title:hover {color: #fff; text-decoration: underline;}
.grid2 .item-main__poster-overlay__year {margin-top: 4px; font-size: 13px; font-weight: 500; opacity: 0.95;}
.grid2 .item-main__poster-overlay__line {height: 1px; margin: 8px 4px 6px; background: rgba(255, 255, 255, 0.35);}
.grid2 .item-main__poster-overlay__rates {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	font-size: 12px;
	font-weight: 500;
}
.grid2 .item-main__poster-overlay__kp {opacity: 0.95; text-align: left; white-space: nowrap;}
.grid2 .item-main__poster-overlay__kp-val {color: #ff7a00; font-weight: 700;}
.grid2 .item-main__poster-overlay__imdb {opacity: 0.95; text-align: right; white-space: nowrap;}
.grid2 .item-main__poster-overlay__imdb-val {color: #f5c518; font-weight: 700;}
.grid3 .item-card {grid-column: span 1; grid-template-columns: 120px minmax(0,1fr); 
	grid-template-areas: "poster header" "poster footer" "info info"; grid-template-rows: 1fr auto auto; 
	padding: 0; border: 0;} 
.grid3 .item-card .item__btn:first-child {width: 100%; order: 10; padding: 0;}
.grid3 .item-card .item-main__header {align-self: start;}
.grid3 .item-card .item-main__title {font-size: 18px;}
.grid3 .item-card .item__rating {background: none;}
.grid3 .item-card .item__ratingscore-ring {translate: 0 0; left: 10px; top: -10px;}
.grid2 .item-card .item__rating {padding: 10px;}
.grid2 .item-card .item__rating-item::before {font-size: 14px;}
.grid2 .pagination, .grid3 .pagination1 {padding-top: 20px;}


/* TRAILER POPUP, GUEST NOTIFY POPUP
----------------------------------------------- */
.trl {background-color: rgba(0,0,0,0.9); position: fixed; z-index: 990; left: 0; top: 0; 
	width: 100%; height: 100%; overflow-x: hidden; overflow-y: auto; backdrop-filter: blur(10px);}
.trl__close {position: absolute; right: 20px; top: 20px; font-size: 40px; color: #fff;}
.trl__inner {width: 100%; max-width: 700px; margin: 0 auto; color: #fff; padding: 80px 20px 20px 20px;}
.trl__btn {height: 40px; padding: 0 40px; margin: 15px 0; width: 100%;}
.trl h1 {margin-bottom: 15px; margin-top: 20px; font-size: 24px;}
.trl .page__text, .trl .full-text {color: #ccc; margin: 0px; padding: 0; background: none;}
.trl-is-opened {overflow: hidden;}


/* SIDEBAR
----------------------------------------------- */
.sb__title {font-size: 18px; border-bottom: 1px solid var(--bdc); margin-bottom: 20px;}
.sb__title span {display: inline-block; padding-bottom: 15px; position: relative;}
.sb__title span::after {content: ''; position: absolute; left: 0; bottom: -3px; 
	height: 5px; width: 100%; background-color: var(--tt-fade-0);}
.sb__menu {display: grid; gap: 6px 10px; grid-template-columns: repeat(2,minmax(0,1fr));}
.sb__menu--years {grid-template-columns: repeat(6,minmax(0,1fr));}
.sb__menu-caption {grid-column: 1 / -1; text-transform: uppercase; font-weight: 500; padding-bottom: 5px;}
.sb__menu a {display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.sb__menu + .sb__menu {border-top: 4px dotted var(--bdc); padding-top: 20px;}
/* catmenu: вариант «Icon strip minimal» — акцент-полоска, редакционный список */
.sb__content--catmenu {padding: 0; border: 0; background: none;}
.sb__content--catmenu .catmenu-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.sb__content--catmenu .catmenu-list__item {margin: 0; padding: 0;}
.sb__content--catmenu .catmenu-list__link {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 38px;
	padding: 6px 0;
	border: 0;
	border-bottom: 1px solid var(--bdc);
	border-radius: 0;
	background: transparent;
	color: var(--tt-fade);
	text-decoration: none;
	transition: color .2s ease, border-color .2s ease;
}
.sb__content--catmenu .catmenu-list__item:last-child .catmenu-list__link {border-bottom: 0;}
.sb__content--catmenu .catmenu-list__link:hover {
	color: var(--accent);
	border-color: var(--accent-fade);
	text-decoration: none;
}
.sb__content--catmenu .catmenu-list__icon {
	width: 3px;
	height: 14px;
	flex: 0 0 auto;
	align-self: center;
	padding: 0;
	border-radius: 1px;
	background: var(--accent);
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	color: transparent;
}
.sb__content--catmenu .catmenu-list__name {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sb__content--catmenu .catmenu-list__count {
	flex: 0 0 auto;
	color: var(--tt-fade);
	font-size: 12px;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
}
.sb__content--catmenu .catmenu-list__link:hover .catmenu-list__count {color: var(--tt);}

.catmenu-years {margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--bdc);}
.catmenu-years__title {
	font-size: 12px;
	font-weight: 600;
	color: var(--tt-fade-0);
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.catmenu-years .catmenu-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.catmenu-years .catmenu-list__item {margin: 0;}
.catmenu-years .catmenu-list__link {
	min-height: 0;
	padding: 5px 8px;
	border: 1px solid var(--bdc);
	border-radius: 5px;
	gap: 6px;
}
.catmenu-years .catmenu-list__icon {display: none;}
.catmenu-years .catmenu-list__name {font-size: 12px; font-weight: 600;}
.catmenu-years .catmenu-list__count {font-size: 10px; opacity: 0.75;}
.catmenu-years .catmenu-list__item:last-child .catmenu-list__link {border-bottom: 1px solid var(--bdc);}
.catmenu-years__more {margin-top: 6px;}
.catmenu-years__more-toggle {
	display: block;
	width: 100%;
	padding: 5px 8px;
	border: 1px dashed var(--bdc);
	border-radius: 5px;
	background: transparent;
	color: var(--tt-fade-0);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
	list-style: none;
	text-align: center;
	transition: color .2s ease, border-color .2s ease;
}
.catmenu-years__more-toggle::-webkit-details-marker {display: none;}
.catmenu-years__more-toggle::after {
	content: " ▾";
	font-size: 10px;
}
.catmenu-years__more[open] .catmenu-years__more-toggle::after {content: " ▴";}
.catmenu-years__more-toggle:hover {
	color: var(--accent);
	border-color: var(--accent-fade);
}
.catmenu-years__more .catmenu-list {margin-top: 6px;}
.sb__content--catmenu .catmenu-list__link.is-active {
	background-color: rgba(0, 0, 0, 0.04);
	color: var(--accent);
}
.sb__content--catmenu .catmenu-list__link.is-active .catmenu-list__icon {background-color: var(--accent);}
/* fallback, если DLE отдаёт плоские ссылки */
.sb__content--catmenu > a,
.sb__content--catmenu li > a:not(.catmenu-list__link) {
	display: block;
	min-height: 38px;
	padding: 9px 0 9px 15px;
	border: 0;
	border-bottom: 1px solid var(--bdc);
	border-left: 3px solid var(--accent);
	color: var(--tt-fade);
	text-decoration: none;
	transition: color .2s ease, border-color .2s ease;
}
.sb__content--catmenu li:last-child > a:not(.catmenu-list__link) {border-bottom: 0;}
.sb__content--catmenu > a:last-child {border-bottom: 0;}
.sb__content--catmenu > a:hover,
.sb__content--catmenu li > a:not(.catmenu-list__link):hover {
	color: var(--accent);
	border-bottom-color: var(--accent-fade);
	text-decoration: none;
}
.sb__tabs {margin-bottom: 20px;}
.sb__tabs button {background-color: var(--bg-darker); color: var(--tt-fade); font-size: 12px;
	text-transform: uppercase; flex-grow: 1; font-weight: 400; padding: 0; box-shadow: none;}
.sb__tabs button.is-active {background-color: var(--accent); color: #fff;}

/* popular sidebar — top chart list */
.sb--popular .sb__title span::after {width: 55%; height: 4px;}
.sb--popular .sb__tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 18px;
}
.sb--popular .sb__tabs button {
	flex: 1 1 0;
	min-height: 38px;
	padding: 0 10px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
}
.sb--popular .top-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: top-rank;
}
.sb--popular .top-list.d-none {display: none;}
.sb--popular .top-list__item {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
}
.sb--popular .top-list__rank {
	flex: 0 0 34px;
	width: 34px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.sb--popular .top-list__rank::before {
	content: counter(top-rank, decimal-leading-zero);
	counter-increment: top-rank;
}
.sb--popular .top-list__media {
	flex: 0 0 56px;
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--bg-darker);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}
.sb--popular .top-list__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sb--popular .top-list__info {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}
.sb--popular .top-list__name {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--tt);
	text-decoration: none;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.sb--popular .top-list__meta {
	font-size: 12px;
	line-height: 1.2;
	color: var(--tt-fade);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sb--popular .top-list__meta a {
	color: inherit;
	text-decoration: none;
}
.sb--popular .top-list__name:hover,
.sb--popular .top-list__media:hover ~ .top-list__info .top-list__name {color: var(--accent);}
.sb--popular .top-list__meta a:hover {color: var(--accent);}
.sb.js-this-in-mobile-menu {
	padding: 14px;
	border: 1px solid var(--bdc);
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02));
	box-shadow: var(--bsh);
}
.sb.js-this-in-mobile-menu .sb__title {
	margin-bottom: 12px;
	padding-bottom: 0;
	border-bottom: 0;
}
.sb.js-this-in-mobile-menu .sb__title span {
	padding-bottom: 0;
	font-size: 20px;
	font-weight: 600;
}
.sb.js-this-in-mobile-menu .sb__title span::after {
	display: none;
}
.sb.js-this-in-mobile-menu .sb__content {
	padding: 0;
}

/* lightstat: адаптация под VibixFilm */
.lightstat-vf .lightstat_main {
	width: 100%;
	min-width: 0;
	margin: 0;
	font-family: inherit;
	border: 1px solid var(--bdc);
	border-radius: 10px;
	background: var(--bg-darker);
	box-shadow: var(--bsh);
	overflow: hidden;
}
.lightstat-vf .lightstat_progress {
	padding: 0;
	background: rgba(0, 0, 0, 0.16);
}
.lightstat-vf .lightstat_progress span {
	height: 3px;
}
.lightstat-vf .lightstat_body {
	padding: 12px 12px 2px;
	border-radius: 0;
	background: transparent;
}
.lightstat-vf .lightstat_body.border_none_user {
	border-radius: 0;
}
.lightstat-vf .lightstat_is,
.lightstat-vf .lightstat_user_list_title {
	padding: 0 0 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--tt-fade);
	text-shadow: none;
}
.lightstat-vf .lightstat_body .result_numb div {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 0 10px;
	color: var(--tt-fade);
	font-size: 13px;
	text-shadow: none;
}
.lightstat-vf .lightstat_body .result_numb div span:nth-of-type(1) {
	width: 8px;
	height: 8px;
	margin: 4px 8px 0 0;
	box-shadow: none;
}
.lightstat-vf .lightstat_body .result_numb div span:nth-of-type(2) {
	margin-left: auto;
	float: none;
	font-weight: 600;
	color: var(--tt);
}
.lightstat-vf .lightstat_online_names {
	padding: 10px 12px 12px;
	border-top: 1px solid var(--bdc);
	font-size: 13px;
	line-height: 1.65;
	color: var(--tt-fade);
	word-break: break-word;
}
.lightstat-vf .lightstat_online_name {
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
	transition: color .2s;
}
.lightstat-vf .lightstat_online_name:hover {
	color: var(--accent);
	text-decoration: underline;
}
.lightstat-vf .lightstat_online_name.group_id_1 {
	color: #ff8a65;
}
.lightstat-vf .lightstat_user_list {
	display: none;
	position: relative;
	padding: 12px;
	border-top: 1px solid var(--bdc);
	border-radius: 0;
	background: var(--bg);
}
.lightstat-vf .lightstat_user_list_item {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px;
	padding: 0 0 12px;
}
.lightstat-vf .lightstat_user_list .lightstat_user_list_item:nth-of-type(1),
.lightstat-vf .lightstat_user_list .lightstat_user_list_item:nth-of-type(2),
.lightstat-vf .lightstat_user_list .lightstat_user_list_item:nth-of-type(3) {
	display: flex;
}
.lightstat-vf .lightstat_user_list_item:last-child {
	padding-bottom: 0;
}
.lightstat-vf .lightstat_user_list_item_avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	box-shadow: var(--bsh);
}
.lightstat-vf .lightstat_user_list_item_info {
	width: auto;
	padding: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}
.lightstat-vf .lightstat_user_list_item_info a {
	color: var(--tt);
	text-decoration: none !important;
}
.lightstat-vf .lightstat_user_list_item_info span {
	padding-top: 2px;
	font-size: 12px;
	color: var(--tt-fade);
}
.lightstat-vf .lightstat_user_list_item_info span.online {
	color: var(--accent);
}
.lightstat-vf .lightstat_user_list_item_info a:hover {
	color: var(--accent);
	text-decoration: none !important;
}
.lightstat-vf .lightstat_pandoge_com {
	display: none;
}
.lightstat-vf .full_list_visit_bg {
	position: static;
	padding: 8px 0 0;
	border-radius: 0;
	background: none;
}
.lightstat-vf .full_list_visit {
	width: 100%;
	height: 34px;
	line-height: 32px;
	border-radius: 17px;
	border: 1px solid var(--bdc);
	background: transparent;
	color: var(--tt-fade);
	font-size: 11px;
	font-weight: 600;
	box-shadow: none;
}
.lightstat-vf .full_list_visit:hover {
	border-color: var(--accent-fade);
	color: var(--accent);
	box-shadow: none;
}
.footer__lightstat {
	flex: 0 1 360px;
	width: min(100%, 360px);
}


.soon-items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.soon {margin: 0; padding: 0;}
.soon__link {display: block; color: var(--tt); text-decoration: none;}
.soon__link:hover {text-decoration: none;}
.soon__poster {
	position: relative;
	margin-bottom: 8px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--bsh);
}
.soon__date {
	position: absolute;
	top: 6px;
	right: 6px;
	padding: 2px 6px;
	border-radius: 999px;
	background: #ff7b22;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}
.soon__title {
	font-size: 13px;
	line-height: 1.3;
	text-align: center;
	color: var(--tt);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}
.soon__link:hover .soon__title {color: var(--accent);}
@media (max-width: 760px) {
	.soon-items {grid-template-columns: repeat(2, minmax(0, 1fr));}
}

.lcomm {background-color: var(--bg-darker); padding: 10px 20px; border-radius: 4px;}
.lcomm__img {width: 30px;}
.lcomm__date {font-size: 12px; color: var(--tt-fade);}
.lcomm__text {font-size: 14px; margin: 10px 0; background-color: var(--bg-darker); position: relative;}
.lcomm__link {color: var(--accent);}


/* FOOTER, PAGINATION
----------------------------------------------- */
.footer__notify {border-left: 1px solid var(--bdc); padding-left: 20px; color: var(--tt-fade);}
.footer__copyright {font-size: 14px; color: var(--tt-fade);}
.footer__tagline {flex: 1 1 280px; margin: 0; padding: 0 16px; text-align: center; font-size: 13px; line-height: 1.45; color: var(--tt-fade);}
.footer__copyright-date {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px 6px 12px;
	border-radius: 10px;
	border: 1px solid var(--bdc);
	border-left: 3px solid var(--accent);
	background: linear-gradient(180deg, rgba(83, 203, 167, 0.1), rgba(83, 203, 167, 0.02));
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	font-size: 13px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
	color: var(--tt);
	line-height: 1.3;
}
.dt .footer__copyright-date {
	border-color: rgba(255, 255, 255, 0.14);
	background: linear-gradient(180deg, rgba(83, 203, 167, 0.14), rgba(83, 203, 167, 0.04));
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	color: rgba(255, 255, 255, 0.94);
}

.footer__counter--liveinternet {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px 5px 12px;
	border-radius: 10px;
	border: 1px solid var(--bdc);
	border-right: 3px solid var(--accent);
	background: linear-gradient(180deg, rgba(83, 203, 167, 0.1), rgba(83, 203, 167, 0.02));
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	line-height: 0;
}
.footer__counter--liveinternet .footer__counter-link {display: block; line-height: 0;}
.footer__counter--liveinternet .footer__counter-img {
	display: block;
	border-radius: 6px;
}
.dt .footer__counter--liveinternet {
	border-color: rgba(255, 255, 255, 0.14);
	background: linear-gradient(180deg, rgba(83, 203, 167, 0.14), rgba(83, 203, 167, 0.04));
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.pagination {gap: 20px 10px;}
.pagination__pages a, .pagination__pages span, .pagination > a, .pagination > span 
{display: grid; place-items: center; color: var(--tt-fade);
	height: 36px; min-width: 36px; padding: 0 10px; border-radius: 3px; 
	background-color: var(--bg-darker);}
.pagination__pages {gap: 10px; font-size: 14px;}
.pagination__pages span:not(.nav_ext) {color: #fff; background: var(--accent);}
.pagination__btns {height: 36px; border-radius: 4px; overflow: hidden; background-color: var(--bg); box-shadow: var(--bsh);}
.pagination__btns > * {width: 40px; display: grid; place-items: center; color: var(--accent); font-size: 18px;}
.pagination__btns > span {color: var(--tt-fade);}


/* INNER PAGE
----------------------------------------------- */
.page__main {margin-bottom: 40px;}
.page__lead {margin-bottom: 24px; padding: 14px 18px; border-radius: 8px; border: 1px solid var(--bdc);
	background: linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02)); box-shadow: var(--bsh);}
.page__lead-text {margin: 0; font-size: 15px; line-height: 1.55; color: var(--tt);}
.page__lead-accent {font-weight: 600; color: var(--accent);}
.item-page__title {font-size: 24px; font-weight: 400;}
.item-page__title a {font-size: inherit; color: inherit; text-decoration: none;}
.item-page__title a:hover {color: var(--accent);}
.item-page__title a:has(.fa-pencil) {margin-left: 10px; font-size: 14px;}
.item-page__subtitle {
	margin: 6px 0 0;
	font-size: 15px;
	line-height: 1.35;
	color: var(--tt-fade-0);
	font-weight: 400;
}
.item-page__top {margin-bottom: 16px;}
.item-page__body {align-items: flex-start; flex-wrap: nowrap;}
.item-page__aside {min-width: 0; align-self: stretch;}
.item-page__info {min-width: 0;}
.item-page__meta {flex: 1 1 auto; width: 100%;}
.item-page__footer {width: 100%;}
.item-page__footer .page__btn-watch,
.item-page__footer .item__btn {width: 100%; max-width: none; justify-content: center;}
.item-page__poster {
	width: 200px;
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	align-self: flex-start;
	gap: 10px;
}
.item-page__poster .item-page__img {width: 100%; flex: 0 0 auto;}
.item-page__ratings {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 4px;
	padding: 12px 10px;
	background-color: var(--bg-darker);
	border-radius: 8px;
	box-shadow: var(--bsh);
}
.item-page__rating-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 4px;
	min-width: 0;
	text-align: center;
}
.item-page__rating-col__label {
	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--tt-fade);
}
.item-page__rating-col__val {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--green);
}
.item-page__rating-col--site .item-page__rating-col__val {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.15;
}
.item-page__rating-col--site .item-page__rating-col__val .fal {
	font-size: 16px;
	font-weight: 400;
}
.item-page__rating-col__val--up {color: var(--green);}
.item-page__rating-col__val--down {color: var(--red);}
.item-page__rating-col__val--tie {color: var(--tt-fade-0);}
.item-page__rating-col__score {font-weight: 700;}
.item-page__rating-col__val--empty {
	font-size: 0;
	font-weight: 400;
	color: var(--tt);
}
.item-page__rating-col__val--empty::after {
	content: "—";
	font-size: 18px;
	line-height: 1.15;
}
.item-page__meta {
	margin: 0;
	padding: 16px 20px;
	background-color: var(--bg-darker);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.item-page__meta-row {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 8px 20px;
	align-items: start;
	margin: 0;
}
.item-page__meta-label {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--tt-fade-0);
	text-align: right;
}
.item-page__meta-value {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--tt);
}
.item-page__meta-value a {color: inherit; text-decoration: none;}
.item-page__meta-value a:hover {color: var(--accent); text-decoration: underline;}
.item-page__img {box-shadow: var(--bsh);}
.item-main__info-item {height: 30px; border-radius: 15px; padding: 0 20px; border: 1px solid var(--bdc); 
	display: flex; align-items: center;}
.rate-bar {
	display: flex;
	min-width: 0;
	max-width: 280px;
	height: 40px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--bsh);
}
.rate-bar__link {
	display: flex;
	flex: 1 1 0%;
	min-width: 72px;
	flex-shrink: 0;
	text-decoration: none;
	transition: opacity .2s;
}
.rate-bar__link:hover {opacity: .9; text-decoration: none;}
.rate-bar__section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 0 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}
.rate-bar__section--plus {background: #3dba4e;}
.rate-bar__section--minus {background: #e04b4b;}
.rate-bar__section .fal {font-size: 16px;}
.rate-bar__link:only-child {flex: 1 1 100%;}

.page__text {border-top: 4px dotted var(--bdc); padding-top: 20px; margin-top: 20px;}
.text-spoiler {position: relative;}
.text-spoiler__body {transition: max-height .35s ease;}
.text-spoiler.is-collapsed .text-spoiler__body {
	max-height: var(--spoiler-max, 360px);
	overflow: hidden;
}
.text-spoiler__fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 44px;
	height: 100px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--bg) 85%);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s;
}
.dt .text-spoiler__fade {
	background: linear-gradient(to bottom, rgba(42, 45, 52, 0), var(--bg) 85%);
}
.text-spoiler.is-collapsed .text-spoiler__fade {opacity: 1;}
.text-spoiler__toggle {
	display: none;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	padding: 12px 16px;
	border: 0;
	background: none;
	font-size: 15px;
	font-weight: 700;
	color: var(--tt-fade);
	cursor: pointer;
}
.text-spoiler__toggle--more {
	justify-content: center;
	width: 100%;
	color: var(--tt);
}
.text-spoiler__toggle--less {
	justify-content: flex-end;
	width: 100%;
}
.text-spoiler__toggle .fal {font-size: 12px;}
.text-spoiler.is-expandable.is-collapsed .text-spoiler__toggle--more {display: flex;}
.text-spoiler.is-expandable.is-expanded .text-spoiler__toggle--less {display: flex;}
.text-spoiler.is-expandable.is-expanded .text-spoiler__fade {opacity: 0;}
.page__subtitle {text-align: center; font-weight: 500; font-size: 18px; margin-bottom: 20px;}

.page__trailer-embed.video-responsive {
	padding-top: 56.25%;
	border-radius: 12px;
	overflow: hidden;
	background: #0a0c10;
}
.page__trailer {margin-top: 40px;}
.page__trailer .page__subtitle {margin-bottom: 16px;}
.page__trailer .trailer-cover {
	position: absolute;
	inset: 0;
	z-index: 2;
}
.page__trailer .trailer-cover__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.page__trailer .trailer-cover__bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	filter: blur(3px) brightness(0.62) saturate(1.08);
}
.page__trailer .trailer-cover__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, transparent 28%, transparent 68%, rgba(0, 0, 0, 0.12) 100%),
		radial-gradient(ellipse 70% 55% at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.15) 100%);
	pointer-events: none;
}
.page__trailer .trailer-cover::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	height: 72px;
	background: rgba(0, 0, 0, 0.06);
	pointer-events: none;
	backdrop-filter: blur(22px) saturate(1.1);
	-webkit-backdrop-filter: blur(22px) saturate(1.1);
	mask-image: linear-gradient(180deg, transparent 0%, #000 42%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%);
}
.page__trailer .trailer-cover__label {
	position: absolute;
	left: 14px;
	top: 14px;
	z-index: 2;
	padding: 8px 14px;
	border-radius: 8px;
	background: rgba(12, 14, 18, 0.62);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	pointer-events: none;
}
.page__trailer .trailer-play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--accent) 0%, #3d9eee 55%, var(--blue) 100%);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	box-shadow: 0 16px 40px rgba(61, 158, 238, 0.4);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page__trailer .trailer-play__ico {position: relative; z-index: 1; margin-left: 4px;}
.page__trailer .trailer-play__ico::before {color: #fff;}
.page__trailer .trailer-play__ring {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.35);
	opacity: 0.6;
	animation: trailer-play-pulse 2.4s ease-out infinite;
	pointer-events: none;
}
@keyframes trailer-play-pulse {
	0% {transform: scale(0.92); opacity: 0.7;}
	70% {transform: scale(1.12); opacity: 0;}
	100% {transform: scale(1.12); opacity: 0;}
}
.page__trailer .trailer-play__waves {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.page__trailer .trailer-play__wave {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid var(--accent-fade);
	opacity: 0;
	transform: scale(1);
}
.page__trailer .trailer-play:hover .trailer-play__wave {
	animation: trailer-play-wave 1.8s ease-out infinite;
}
.page__trailer .trailer-play:hover .trailer-play__wave:nth-child(2) {animation-delay: 0.45s;}
.page__trailer .trailer-play:hover .trailer-play__wave:nth-child(3) {animation-delay: 0.9s;}
@keyframes trailer-play-wave {
	0% {transform: scale(1); opacity: 0.75;}
	100% {transform: scale(2.4); opacity: 0;}
}
.page__trailer .trailer-play:hover {
	transform: translate(-50%, -50%) scale(1.08);
	box-shadow: 0 20px 48px rgba(61, 158, 238, 0.5);
}
.page__trailer .trailer-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 0 0 12px 12px;
	background: rgba(0, 0, 0, 0.18);
	filter: blur(3px) brightness(0.62) saturate(1.08);
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.92);
	font-size: 12px;
	pointer-events: none;
}
.page__trailer .trailer-bar__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: var(--accent);
	font-size: 12px;
}
.page__trailer .trailer-bar__play::before {color: #fff;}
.page__trailer .trailer-bar__progress {
	flex: 1;
	min-width: 40px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	overflow: hidden;
}
.page__trailer .trailer-bar__progress-fill {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--accent), #6ec4ff);
}
.page__trailer .trailer-bar__time {
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	font-size: 11px;
	opacity: 0.85;
}
.page__trailer .trailer-bar__tools {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-left: auto;
}
.page__trailer .trailer-bar__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	font-size: 13px;
	opacity: 0.85;
}
.page__trailer .trailer-bar__ico::before {color: currentColor;}
.page__trailer .trailer-frame {
	border: 0;
	display: none;
}
.page__trailer-embed.is-playing .trailer-cover {display: none;}
.page__trailer-embed.is-playing .trailer-frame {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 760px) {
	.page__trailer .trailer-bar {padding: 8px 10px; gap: 6px;}
	.page__trailer .trailer-bar__time {display: none;}
	.page__trailer .trailer-play {width: 68px; height: 68px; font-size: 22px;}
}
@media (prefers-reduced-motion: reduce) {
	.page__trailer .trailer-play:hover {transform: translate(-50%, -50%);}
	.page__trailer .trailer-play:hover .trailer-play__wave {animation: none;}
}
.page__scr__list {display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 20px; padding: 0; list-style: none;}
.page__scr__item {flex: 0 0 calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); min-width: 0;}
.page__scr__img {display: block; width: 100%; height: auto; border-radius: 6px; aspect-ratio: 300 / 200; object-fit: cover;}
.page__scr--xfields:not(:has(ul > li)) {display: none;}

.page__player {position: relative;}
.page__player .tabs-block__select {gap: 10px; margin-bottom: 10px;}
.page__player .tabs-block__select button {background: var(--bg-darker); color: var(--tt-fade);}
.page__player .tabs-block__select button.is-active, .page__player .tabs-block__select button:hover {background: var(--accent); color: #fff;}
.page__complaint a {display: inline-flex; align-items: center; min-height: 40px; gap: 10px; color: var(--red);}
.page__player .page__complaint a {position: absolute; right: 0; top: 0; height: 40px;}
.nl .page__player-controls + .tabs-block__content {display: block;}
.page__player .tabs-block__select button.is-active::before {color: rgba(0,0,0,0.8);}

.page__media-toolbar {
	flex-wrap: wrap;
	margin: 16px 0 0;
}
.page__media-toolbar .rate-bar {
	flex: 0 1 280px;
	margin-right: 0;
	margin-left: auto;
}
.page__media-tabs {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
	padding: 4px;
	border-radius: 14px;
	background: var(--bg-darker);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}
.page__media-tabs__btn {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 22px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--tt-fade);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: color .2s, background .2s, box-shadow .2s, border-color .2s;
}
.page__media-tabs__ico {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	font-size: 15px;
}
.page__media-tabs__ico::before {color: currentColor;}
.page__media-tabs__text {
	position: relative;
	z-index: 1;
}
.page__media-tabs__btn:not(.is-active) {
	border: 1px solid var(--accent-fade);
	animation: vf-tab-glow 3s ease-in-out infinite, vf-tab-shake 3s ease-in-out infinite;
}
.page__media-tabs__btn:not(.is-active)::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		105deg,
		transparent 28%,
		var(--accent-fade) 42%,
		rgba(255, 255, 255, 0.45) 50%,
		var(--accent-fade) 58%,
		transparent 72%
	);
	transform: translateX(-150%);
	animation: vf-tab-shine 3s ease-in-out infinite;
	pointer-events: none;
}
@keyframes vf-tab-shine {
	0%, 55%, 100% {transform: translateX(-150%); opacity: 0;}
	58% {transform: translateX(-150%); opacity: 0.3;}
	72% {transform: translateX(150%); opacity: 0.3;}
	78% {transform: translateX(150%); opacity: 0;}
}
@keyframes vf-tab-glow {
	0%, 55%, 100% {
		color: var(--tt-fade);
		border-color: var(--accent-fade);
		box-shadow: none;
	}
	65%, 75% {
		color: var(--accent);
		border-color: var(--accent);
		box-shadow: 0 0 0 1px var(--accent-fade), 0 0 14px var(--accent-fade);
	}
	82% {
		color: var(--tt-fade);
		border-color: var(--accent-fade);
		box-shadow: none;
	}
}
@keyframes vf-tab-shake {
	0%, 54%, 100% {transform: translate(0, 0);}
	58% {transform: translate(-2px, 0);}
	62% {transform: translate(2px, -1px);}
	66% {transform: translate(-2px, 1px);}
	70% {transform: translate(2px, 0);}
	74% {transform: translate(-1px, -1px);}
	78% {transform: translate(1px, 0);}
	82% {transform: translate(0, 0);}
}
.page__media-tabs__btn:not(.is-active):hover {
	animation: none;
	transform: none;
	color: var(--accent);
	border-color: var(--accent);
}
.page__media-tabs__btn:not(.is-active):hover::after {animation: none; opacity: 0;}
.page__media-tabs__btn.is-active {
	border: 0;
	background: var(--bg);
	color: var(--tt);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--bdc);
	animation: none;
	transform: none;
}
.page__media-tabs__btn.is-active::after {display: none;}
@media (prefers-reduced-motion: reduce) {
	.page__media-tabs__btn:not(.is-active) {animation: none;}
	.page__media-tabs__btn:not(.is-active)::after {display: none;}
}
.dt .page__media-tabs {background: rgba(255, 255, 255, 0.06); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);}
.dt .page__media-tabs__btn.is-active {background: rgba(255, 255, 255, 0.1); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);}
.dt .page__media-tabs__btn:not(.is-active) {border-color: rgba(83, 203, 167, 0.45);}
.dt .page__media-tabs__btn:not(.is-active)::after {
	background: linear-gradient(
		105deg,
		transparent 28%,
		rgba(83, 203, 167, 0.35) 42%,
		rgba(255, 255, 255, 0.22) 50%,
		rgba(83, 203, 167, 0.35) 58%,
		transparent 72%
	);
}
.page__media__panel {display: none;}
.page__media__panel.is-active {display: block;}

.vf-player {margin-top: 16px;}
.vf-player__screen {
	position: relative;
	padding-top: 56.25%;
	background: #0a0c10;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.vf-player__screen::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	pointer-events: none;
	z-index: 4;
}
.vf-player__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform .5s ease;
}
.vf-player__screen:hover .vf-player__poster {transform: scale(1.04);}
.vf-player__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 28%, transparent 55%, rgba(0, 0, 0, 0.75) 100%),
		radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.25) 100%);
	pointer-events: none;
}
.vf-player__chrome {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 14px;
	pointer-events: none;
}
.vf-player__chrome > * {pointer-events: auto;}
.vf-player__quality {align-self: flex-start;}
.vf-player__quality-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px 8px 8px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(12, 14, 18, 0.55);
	backdrop-filter: blur(12px);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: background .2s, border-color .2s, transform .15s;
}
.vf-player__quality-btn:hover {
	background: rgba(12, 14, 18, 0.72);
	border-color: rgba(255, 255, 255, 0.35);
}
.vf-player__quality-badge {
	padding: 3px 7px;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--accent), #3aa8e8);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.vf-player__quality-ico {font-size: 10px; opacity: 0.7;}
.vf-player__play {
	position: absolute;
	left: 50%;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin: -40px 0 0 -40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--accent) 0%, #3d9eee 55%, var(--blue) 100%);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	box-shadow: 0 16px 40px rgba(61, 158, 238, 0.45);
	transition: transform .2s ease, box-shadow .2s ease;
}
.vf-player__play:hover {
	transform: scale(1.06);
	box-shadow: 0 20px 48px rgba(61, 158, 238, 0.55);
}
.vf-player__play-ring {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.35);
	opacity: 0.6;
	animation: vf-player-pulse 2.4s ease-out infinite;
}
@keyframes vf-player-pulse {
	0% {transform: scale(0.92); opacity: 0.7;}
	70% {transform: scale(1.12); opacity: 0;}
	100% {transform: scale(1.12); opacity: 0;}
}
.vf-player__play-ico {position: relative; margin-left: 4px;}
.vf-player__bar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding: 10px 14px;
	border-radius: 14px;
	background: rgba(8, 10, 14, 0.62);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.92);
	font-size: 12px;
}
.vf-player__bar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	font-size: 14px;
	opacity: 0.85;
	transition: background .15s, opacity .15s;
}
.vf-player__bar-btn:hover {background: rgba(255, 255, 255, 0.12); opacity: 1;}
.vf-player__bar-tools {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-left: auto;
}
.vf-player__progress {
	flex: 1;
	min-width: 60px;
	height: 5px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	overflow: hidden;
}
.vf-player__progress-fill {
	display: block;
	width: 28%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--accent), #6ec4ff);
}
.vf-player__time {
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	font-size: 11px;
	opacity: 0.85;
}
.vf-player__view {
	position: absolute;
	inset: 0;
}
.vf-player__view--embed,
.vf-player__view--stub {z-index: 2;}
.vf-player__view:not(.is-active) {display: none;}
.vf-player__iframe-box {
	position: absolute;
	inset: 0;
	background: #000;
}
.vf-player__iframe-box.video-responsive {padding-top: 0; height: 100%;}
.vf-player__iframe-box .vf-player__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.vf-player__stub {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: rgba(6, 8, 12, 0.42);
	backdrop-filter: blur(2px);
	color: #fff;
	font-size: 14px;
	pointer-events: none;
}
.vf-player__stub-label {
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.02em;
}
.vf-player__stub-text {
	font-size: 13px;
	opacity: 0.75;
}
.vf-player__footer {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: 16px 24px;
	margin-top: 14px;
	padding: 16px 18px;
	border-radius: 16px;
	background: var(--bg-darker);
	box-shadow: 0 1px 0 var(--bdc);
}
.dt .vf-player__footer {background: rgba(255, 255, 255, 0.04); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);}
.vf-player__hint {
	margin: 0;
	max-width: 480px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--tt-fade);
}
.vf-player__sources {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	min-width: 0;
}
.vf-player__sources-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--tt-fade);
}
.vf-player__sources-track {
	max-width: 100%;
	padding: 4px;
	border-radius: 12px;
	background: var(--bg);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.vf-player__sources-track::-webkit-scrollbar {display: none;}
.dt .vf-player__sources-track {background: rgba(0, 0, 0, 0.25);}
.vf-player__sources-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px;
}
.vf-player__source {
	flex-shrink: 0;
	padding: 8px 14px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--tt-fade);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: color .2s, background .2s, box-shadow .2s;
}
.vf-player__source:hover {color: var(--tt); background: rgba(0, 0, 0, 0.04);}
.dt .vf-player__source:hover {background: rgba(255, 255, 255, 0.06);}
.vf-player__source.is-active {
	color: #fff;
	background: linear-gradient(135deg, var(--red) 0%, #f06b5e 100%);
	box-shadow: 0 4px 14px rgba(235, 77, 75, 0.35);
}
.share-card {
	margin-top: 20px;
	padding: 10px 14px;
	border: 1px solid var(--bdc);
	border-top: 2px solid var(--accent);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.03));
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 8px;
	column-gap: 14px;
}
.share-card__title {
	margin-bottom: 0;
	padding-right: 14px;
	border-right: 1px solid var(--bdc);
	font-size: 14px;
	font-weight: 600;
	color: var(--tt);
}
.share-card__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.share-card__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 86px;
	padding: 6px 12px;
	border-radius: 6px;
	border: 1px solid var(--bdc);
	background: rgba(0,0,0,0.12);
	color: var(--tt);
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: .2s ease;
}
.share-card__icon {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	line-height: 1;
	font-weight: 700;
	opacity: 0.95;
}
.share-card__label {
	line-height: 1;
}
.share-card__item:hover {
	color: #fff;
	background: var(--accent);
	border-color: var(--accent);
	box-shadow: var(--bsh);
	text-decoration: none;
}
.share-card__item--max {border-color: var(--accent-fade);}

.item-related .item__img {overflow: hidden; border: 1px solid var(--bdc);}
.item-related .item__img::after {content: ''; position: absolute; inset: 0; border: 5px solid var(--bg);}
.item-related .item__title {text-align: center; margin-top: 10px; line-height: 1.3; word-wrap: break-word;}
.item-related .item__subtitle {text-align: center; margin-top: 4px; color: var(--tt-fade); font-size: 13px;}

.page__sequels {
	clear: both;
	position: relative;
	z-index: 1;
	margin: 24px 0 20px;
	padding: 16px 18px 18px;
	border: 1px solid var(--bdc);
	border-radius: 12px;
	background: var(--bg-darker);
}
.page__sequels .sect__header {
	margin: 0 0 14px;
	padding: 0 96px 10px 0;
	border-bottom: 2px dotted var(--bdc);
}
.page__sequels .page__related:not(.owl-carousel) {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
	gap: 20px;
}
.page__sequels .page__related:not(.owl-carousel) > .item-related {width: auto;}
.page__sequels .owl-nav {left: auto; top: 0; margin-top: -40px; display: flex; gap: 10px;}
.page__sequels .owl-nav button {position: static;}
.page__sequels .owl-nav.disabled {display: none !important;}
.page__sequels .item__title {font-size: 14px;}
.page__sequels + .page__text {margin-top: 22px;}
.page__related .item-related--sequels .item__img {
	border: 0;
	border-radius: 0;
	box-shadow: var(--bsh);
	cursor: pointer;
}
.page__related .item-related--sequels .item__img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0) 70%);
	border: 0;
}
.page__related .item-related--sequels .item-poster-badges {
	top: 8px;
	right: 8px;
	z-index: 7;
	max-width: calc(100% - 44px);
}
.page__related .sequels-card__fav {
	position: absolute;
	left: 8px;
	top: 8px;
	z-index: 3;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 14px;
}
.page__related .sequels-card__meta {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 3;
	text-align: center;
}
.page__related .sequels-card__title {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}
.page__related .sequels-card__year {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

/* EPISODES SCHEDULE
----------------------------------------------- */
.page__episodes-schedule .ep-schedule {margin: 0;}
.page__episodes-schedule .ep-schedule__card {
	background: var(--bg);
	border: 1px solid var(--bdc);
	border-radius: 14px;
	box-shadow: var(--bsh);
	overflow: hidden;
}
.page__episodes-schedule .ep-schedule__header {
	background: var(--bg-darker);
	border-bottom: 1px solid var(--bdc);
	padding: 16px 18px;
}
.page__episodes-schedule .ep-schedule__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--tt);
}
.page__episodes-schedule .ep-schedule__next {
	background: var(--bg);
	border: 1px solid var(--bdc);
	border-radius: 12px;
	padding: 10px 12px;
}
.page__episodes-schedule .ep-schedule__next-label {color: var(--tt-fade);}
.page__episodes-schedule .ep-schedule__next-title {color: var(--tt);}
.page__episodes-schedule .ep-schedule__next-date {color: var(--tt-fade);}
.page__episodes-schedule .ep-schedule__countdown {
	background: var(--bg-darker);
	color: var(--tt);
}
.page__episodes-schedule .ep-schedule__body {
	padding: 14px;
	background: var(--bg);
}
.page__episodes-schedule .ep-schedule__season {
	border: 1px solid var(--bdc);
	border-radius: 12px;
	background: var(--bg);
}
.page__episodes-schedule .ep-schedule__season-h {
	background: var(--bg-darker);
	padding: 12px 14px;
}
.page__episodes-schedule .ep-schedule__season-h b {color: var(--tt);}
.page__episodes-schedule .ep-schedule__season-h .meta {color: var(--tt-fade);}
.page__episodes-schedule .ep-schedule__table-wrap {overflow: auto;}
.page__episodes-schedule .ep-schedule__table {min-width: 620px;}
.page__episodes-schedule .ep-schedule__table th {
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	padding: 10px 12px;
}
.page__episodes-schedule .ep-schedule__table td {
	border-top: 1px solid var(--bdc);
	padding: 10px 12px;
	color: var(--tt);
}
.page__episodes-schedule .ep-schedule__table tr:hover td {background: var(--bg-darker);}
.page__episodes-schedule .ep-schedule__status {
	width: 24px;
	height: 24px;
	font-size: 14px;
}
.page__episodes-schedule .ep-schedule__more {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
}
.page__episodes-schedule .ep-schedule__more:hover {text-decoration: underline;}
.page__episodes-schedule .ep-schedule__row--hidden {display: none;}
.dt .page__episodes-schedule .ep-schedule__card,
.dt .page__episodes-schedule .ep-schedule__season,
.dt .page__episodes-schedule .ep-schedule__next {
	background: var(--bg);
	border-color: color-mix(in srgb, var(--accent) 20%, var(--bdc));
}
.dt .page__episodes-schedule .ep-schedule__header,
.dt .page__episodes-schedule .ep-schedule__season-h {background: var(--bg-darker);}
.dt .page__episodes-schedule .ep-schedule__table td {border-top-color: var(--bdc);}
.dt .page__episodes-schedule .ep-schedule__table tr:hover td {background: rgba(255,255,255,0.02);}


/* TEXT BLOCK, TYPOGRAPHY, VIDEO BLOCK
----------------------------------------------- */
.page__title {margin-bottom: 30px; font-size: 24px;}
.full-text {line-height: 1.6; font-size: 15px; word-wrap: break-word; color: var(--tt-fade-0);}
.full-text a {text-decoration: underline; color: var(--ui-accent);}
.full-text a:hover:not(.torrent-btn):not(.magnet-btn) {color: var(--accent); text-decoration: none;}
.full-text img:not(.emoji), .full-text p, .full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5, 
.full-text > ul, .full-text > ol, .full-text table {margin-bottom: 25px;}
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {margin:0 10px 10px 0;}
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {margin:0 0 10px 10px;}
.full-text > ul li, .full-text > ol li {padding-left: 60px; position: relative;}
.full-text > ul li:before {content: ''; width: 8px; height: 8px; border-radius: 50%; 
	border: 3px solid var(--accent); position: absolute; top: 6px; left: 34px;}
.full-text > ol {counter-reset: num;}
.full-text > ol li:before {content: counter(num); counter-increment: num; background-color: var(--accent); color: #fff; 
	position: absolute; top: -3px; left: 17px; width: 24px; height: 30px; font-size: 14px; font-weight: 500;
	display: flex; justify-content: flex-end; align-items: center; padding-right: 6px; box-sizing: border-box;}
.full-text > ol li:after {content: ''; border: 10px solid transparent; border-left-color: var(--accent); 
	position: absolute; left: 41px; top: -3px; transform: scale(0.66,1.5); transform-origin: 0 0;}
.full-text > ul li + li, .full-text > ol li + li {margin-top: 10px;}
.full-text table, .video-inside > * {width:100%;}
.full-text > *:last-child {margin-bottom: 0;}
.video-responsive {padding-top: 60%; position: relative; background-color: #000;}
.video-responsive > iframe, .video-responsive > video {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5 {font-size: 21px; margin-bottom: 20px;}


/* COMMENTS
----------------------------------------------- */
.page__comments {margin-top: 0px; scroll-margin-top: 16px;}
.page__comments-appeal {margin: 10px 0 18px; padding: 14px 16px; border-radius: 6px; border: 1px solid var(--bdc);
	border-top: 3px solid var(--accent); text-align: center; background: rgba(0,0,0,0.04);}
.page__comments-appeal-text {margin: 0; font-size: 14px; line-height: 1.55; color: var(--tt);}
.page__comments-appeal-accent {font-weight: 600; color: var(--accent);}
.page__comments-info {color: var(--tt-fade); display: block; margin: 5px 0 20px; font-size: 14px; padding-left: 23px; position: relative;}
.page__comments-info::before {color: var(--red); position: absolute; left: 0; top: 2px;}
.page__ac {margin-bottom: 40px;}
.ac-form {position: relative;}
.ac-form__header, .ac-form__editor, .ac-form .message-info {gap: 10px; margin-bottom: 10px;}
.ac-form__btn {padding: 0 60px;}
.ac-form__bottom {gap: 25px;}
.confidential-check {font-size: 14px;}
.ac-form__header > span {margin-left: 15px;}
.ac-form .comments_subscribe {margin-top: 0px;}

.ac-toggle.ac-form {cursor: pointer;}
.ac-form__header input, .ac-form__editor textarea {background-color: rgba(0,0,0,0.02);}
.ac-toggle, .ac-toggle .ac-form__editor {position: relative;}
.ac-toggle .ac-form__bottom button {position: absolute; bottom: 20px; right: 10px; z-index: 10; pointer-events: none;}
.ac-form .bb-btn {display: none;}
.ac-form .bb-pane {background: none; box-shadow: none; border: 0; position: absolute; left: 0; bottom: 0; right: 0;}
.ac-form #b_emo, .ac-form #b_leech, .ac-form #b_quote, .ac-form #b_spoiler, 
.ac-form #b_b, .ac-form #b_u, .ac-form #b_s, .ac-form #b_color, .ac-form #b_hide {display: grid;}
.ac-toggle .bb-btn {pointer-events: none;}
.ac-toggle .ac-form__editor .bb-editor textarea {height: 120px; resize: none;}
.ac-form__editor .bb-editor textarea {height: 200px; line-height: 1.4; padding-bottom: 40px;}
.comments_subscribe + br, .ac-form .bb-editor + br {display: none;}
.ac-toggle .has-checkbox {display: none;}

.mass_comments_action {display: none; align-items: center; flex-wrap: wrap; gap: 10px;}
.mass_comments_action select {flex: 1 1 0; margin: 0 -28px 0 0; border-radius: 0; box-shadow: none; min-width: 60%;}
.mass_comments_action .bbcodes {border-radius: 0; padding: 0 10px;}

.comm__title {font-size: 18px; margin-bottom: 20px;}

.comm__topline {
	margin: 0 0 10px 0;
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--bdc));
	background: color-mix(in srgb, var(--accent) 8%, var(--bg));
	color: var(--tt);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}
.comm {
	margin-bottom: 20px;
	position: relative;
	padding: 16px;
	padding-left: 88px;
	border: 1px solid var(--bdc);
	border-radius: 14px;
	background-color: var(--bg);
	box-shadow: var(--bsh);
}
.comm::before {display: none;}
.comm--featured {
	border-color: color-mix(in srgb, var(--accent) 45%, var(--bdc));
	background: color-mix(in srgb, var(--accent) 10%, var(--bg));
	box-shadow: 0 8px 26px color-mix(in srgb, var(--accent) 16%, transparent);
}
.comm--top:not(.comm--featured) {
	border-color: color-mix(in srgb, var(--accent) 32%, var(--bdc));
}
.comm--top .comm__img {box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 40%, transparent);}
.comm__img {
	width: 58px;
	height: 58px;
	border-radius: 10px;
	position: absolute;
	left: 16px;
	top: 16px;
	overflow: hidden;
}
.comm__letter {width: 100%; height: 100%; text-transform: uppercase; border-radius: inherit;
	position: absolute; left: 0; top: 0; color: #fff; font-size: 18px; font-weight: 500;}
.comm__author, .comm__author a {color: var(--accent); font-weight: 500; font-size: 14px;}
.comm__author {display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;}
.comm__badge {
	display: inline-flex;
	align-items: center;
	height: 22px;
	padding: 0 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.25px;
	background: color-mix(in srgb, #ffd24a 80%, #fff);
	color: #2b1f00;
	border: 1px solid color-mix(in srgb, #c49b14 60%, transparent);
}
.comm__badge--featured {
	background: color-mix(in srgb, var(--accent) 82%, #fff);
	color: #fff;
	border-color: color-mix(in srgb, var(--accent) 65%, #000);
}
.comm__date {color: var(--tt-fade); font-size: 12px;}
.comm__rating a {color: var(--green); font-size: 18px;}
.comm__rating a:last-child {color: var(--red);}
.comm__rating span {font-size: 14px;}
.comm__rating span .ratingplus {color: var(--green);}
.comm__rating span .ratingminus {color: var(--red);}
.comm__text {margin: 10px 0; font-size: 15px; line-height: 1.55;}
.comm__action {font-size: 12px; --tt: var(--tt-fade);}
.comm__ctrl-btn {font-size: 18px; height: 30px; --tt: var(--tt-fade);}
.comm__ctrl-menu li + li {margin-top: 10px;}
.dt .comm__topline {
	background: color-mix(in srgb, var(--accent) 16%, var(--bg));
	border-color: color-mix(in srgb, var(--accent) 38%, var(--bdc));
}
.dt .comm {
	background: color-mix(in srgb, var(--bg) 92%, #000);
	border-color: color-mix(in srgb, var(--accent) 18%, var(--bdc));
	box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.dt .comm--featured {
	background: color-mix(in srgb, var(--accent) 18%, var(--bg));
	border-color: color-mix(in srgb, var(--accent) 45%, var(--bdc));
}
.dt .comm__badge {
	color: #211700;
}
body:has(.pwidget) #dropmenudiv {z-index: 1000 !important;}


/* POPUP WIDGET
----------------------------------------------- */
.pwidget {background-color: var(--bg); color: var(--tt); 
	border-radius: 20px; overflow: hidden; z-index: 999; padding: 20px; padding-top: 24px; 
	position: fixed; left: 20px; bottom: 20px; right: 20px; box-shadow: 0 0 60px rgba(0,0,0,0.5);}
.pwidget::before {content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); 
	background-color: rgba(0,0,0,0.2); height: 4px; width: 40px; border-radius: 2px;}
.pwidget .wctrl__content {display: block; margin-bottom: 20px;}
@media screen and (min-width: 760px) {
	.pwidget {left: 50%; bottom: 50%; right: auto; translate: -50% 50%; width: 400px;}
	.pwidget::before {display: none;}
}


/* LOGIN
----------------------------------------------- */
.lgn {position: fixed; z-index: 999; left: 50%; top: 50%; translate: -50% -50%; width: 500px; max-width: calc(100% - 40px);}
.lgn__content {background-color: var(--bg); box-shadow: var(--bsh-long); padding: 30px 60px; position: relative;}
.lgn__ctrl > * {color: #fff !important; font-size: 19px; font-weight: 500; height: 45px; position: relative; text-transform: uppercase;}
.lgn__ctrl span::before {content: ''; border: 10px solid transparent; border-bottom-color: var(--bg); 
	position: absolute; left: 50%; bottom: 0; margin-left: -10px; z-index: 5;}
.lgn__btn-close {font-size: 40px; color: #fff; position: absolute; right: -50px; top: 0; z-index: 10;}
.lgn__header {position: relative; padding-left: 80px; margin-bottom: 15px;}
.lgn__avatar {width: 60px; background-color: var(--bg-darker); color: var(--bg-darkest); font-size: 24px; 
	position: absolute; left: 0; top: 50%; translate: 0 -50%; overflow: hidden; border-radius: 50%;}
.lgn__title {font-size: 19px; font-weight: 500;}
.lgn__caption {color: var(--tt-fade); margin-top: 5px;}
.lgn__input input {height: 50px; line-height: 50px; border-radius: 0; padding: 0 30px;}
.lgn__input input::placeholder {font-size: 16px;}
.lgn__input input + input {margin-top: -1px;} 
.lgn__input input:focus {position: relative; z-index: 5;}
.lgn__btn button {height: 50px;}
.lgn__cell a {color: var(--ui-accent);}
.lgn__social-caption {font-size: 13px; color: var(--tt-fade); margin-top: 5px;}
.lgn__social-caption::before, .lgn__social-caption::after {content: ''; flex-grow: 1; background: var(--bdc); height: 1px;}
.lgn__social a {border-radius: 50%; width: 34px; height: 34px; display: grid; place-items: center;}
.lgn__social a img {height: 18px; width: 18px; display: block; filter: invert(1);}
.lgn__social-vk {background-color: #587ba1;}
.lgn__social-ok {background-color: #ff9800;}
.lgn__social-fb {background-color: #3b5998;}
.lgn__social-ml {background-color: #2196f3;}
.lgn__social-gg {background-color: #f44336;}
.lgn__social-ya {background-color: #fc3f1d;}
.lgn__social:not(:has(a)) {display: none;}
.lgn--logged {width: 400px;}
.lgn__menu a {display: flex; align-items: center; gap: 10px;}
.c-0 span {display: none;}



/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel {width: 100%; position: relative; z-index: 1;}
.owl-stage {position: relative; display:flex; justify-content:flex-start;}
.owl-stage-outer {position: relative; overflow: hidden; transform: translate3d(0px, 0px, 0px);}
.owl-item {position: relative; min-height: 10px;}
.owl-nav.disabled, .owl-dots.disabled, .owl-carousel.owl-refresh .owl-item {display: none;}
.owl-carousel.owl-drag .owl-item {user-select: none;}
.owl-carousel.owl-grab {cursor: move; cursor: grab;}
.owl-nav {position: absolute; right: 0; left: 0; top: 50%; margin-top: -20px;}
.owl-prev, .owl-next {cursor: pointer; width: 40px; height: 40px; display: grid; place-items: center; 
	font-size: 40px; background-color: transparent; color: var(--accent-fade); box-shadow: none; 
	position: absolute; top: 0; line-height: 1;}
.owl-prev {left: var(--indent-negative);}
.owl-next {right: var(--indent-negative);}
.owl-dots {display: flex; gap: 10px; justify-content: center; 
	position: absolute; left: var(--indent); right: var(--indent); bottom: -24px;}
.owl-dot {display: block; width: 10px; height: 10px; border-radius: 5px; cursor: pointer; background-color: var(--bg-darker);}
.owl-dot.active {background-color: var(--yellow);}
.page__related .owl-nav {left: auto; top: 0; margin-top: -75px; display: flex; gap: 10px;}
.page__related .owl-nav button {position: static;}
.carou .owl-prev {left: calc(var(--indent-negative) - 60px);}
.carou .owl-next {right: calc(var(--indent-negative) - 60px);}
.carou .owl-prev, .carou .owl-next {width: 60px; height: 60px; font-size: 60px; line-height: 1;}
.carou .owl-nav {margin-top: -30px;}


/* CLS FIX
----------------------------------------------- */
.has-carousel:not(.owl-carousel) {display: flex; overflow: hidden; gap: 20px;}
.has-carousel:not(.owl-carousel) > * {flex-shrink: 0;}
.has-carousel:not(.owl-carousel) > .item-carou {width: calc((100% - 100px)/6);}
.page__related:not(.owl-carousel) > .item-related {width: calc((100% - 60px)/4);}
@media screen and (max-width: 1220px) {
	.has-carousel:not(.owl-carousel) > .item-carou {width: calc((100% - 100px)/6);}
	body:has(#filter-block) .cols:not(:has(> #filter-block)) {padding-top: 42px;}
}
@media screen and (max-width: 950px) {
	.has-carousel:not(.owl-carousel) > .item-carou {width: calc((100% - 80px)/5);}
}
@media screen and (max-width: 760px) {
	.has-carousel:not(.owl-carousel) > .item-carou {width: calc((100% - 60px)/4);}
	.page__related:not(.owl-carousel) > .item-related {width: calc((100% - 60px)/4);}
}
@media screen and (max-width: 590px) {
	.has-carousel:not(.owl-carousel) > .item-carou {width: calc((100% - 40px)/3);}
	.page__related:not(.owl-carousel) > .item-related {width: calc((100% - 40px)/3);}
}

.filter-block {background-color: rgba(72, 107, 237,0.16); padding: 20px; border-radius: 6px;}
.filter {gap: 10px 20px;}
.filter-block__title {font-size: 18px; margin-bottom: 20px;}
.filter__col {flex: 1 0 280px; max-width: 100%; min-width: 280px; display: flex; flex-direction: column; gap: 10px;}
.filter__cell select {height: 40px; box-shadow: none; border: 1px solid rgba(0,0,0,0.15);
	background-color: var(--bg); color: var(--tt);}
.filter__cell input[type="text"] {opacity: 0;}
.filter__cell [data-dlefilter="reset"]:not(:hover) {background-color: rgba(0,0,0,0.1); color: var(--tt);}
.cols > .filter-block .filter {display: none;}
.cols > .filter-block.is-active .filter {display: flex; padding: 20px;}

.tail-select, .tail-select * {outline: none; user-select: none;}
.tail-select {position: relative;}
.tail-select-container, .select-label {border: 1px solid rgba(0,0,0,0.15); background-color: var(--bg); 
	padding: 5px 5px; min-height: 40px; position: relative; cursor: pointer; color: var(--tt);
	display: flex; flex-wrap: wrap; align-items: center; gap: 5px; padding-right: 40px; border-radius: 3px;}
.tail-select .label-inner {margin-left: 5px; font-size: 14px;}
.tail-select-container .select-handle {display: flex; align-items: center; height: 28px; padding: 0 8px; border-radius: 2px; 
	background-color: var(--accent); color: #fff; cursor: pointer; font-size: 12px; text-transform: uppercase;}
.tail-select .select-label::before, .tail-select .select-label::after {position: absolute; top: 50%; right: 10px;
	content:"\f0d8"; color: var(--tt); margin-top: -15px; opacity: 0.5;}
.tail-select .select-label::after {margin-top: -5px; transform: rotate(180deg);}

.tail-select .select-dropdown {top: 100%; left: 0; width: 100%; z-index: 100; display: none; position: absolute;
    background-color: var(--bg); border: 1px solid rgba(0,0,0,0.15); box-shadow: var(--bsh); border-radius: 3px;}
.tail-select .select-dropdown .dropdown-inner {padding: 1px 0; overflow-x: hidden; overflow-y: auto; max-height: 300px;}
.tail-select .dropdown-optgroup {padding: 15px;}
.tail-select .select-dropdown .dropdown-empty {padding: 20px; font-size: 14px; text-align: center;}
.tail-select .select-dropdown ul li + li {margin-top: 10px;}
.tail-select .select-dropdown ul li {display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px;}
.tail-select .select-dropdown ul li.dropdown-option::before {content: ""; background-color: var(--bg-darker);
    width: 18px; height: 18px; border-radius: 1px; box-shadow: inset 0 1px 2px rgba(0,0,0,0.2); 
	display: flex; justify-content: center; font-size: 14px; color: #000; flex-shrink: 0; 
	box-sizing: border-box; padding-bottom: 3px;}
.tail-select .select-dropdown ul li.dropdown-option.selected {color: var(--accent);}
.tail-select .select-dropdown ul li.dropdown-option.selected::before 
{background-color: var(--accent); color: #fff; content:"\f00c"; box-shadow: none;}
.tail-select .select-dropdown ul li:hover {color: var(--blue);}
.tail-select-container:hover, .select-label:hover {border-color: var(--accent);}
.tail-select-container .select-handle:hover {background-color: var(--red);}

.irs {position: relative; display: block; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none;
	-moz-user-select: none; -ms-user-select: none; user-select: none;}
.irs-line {position: relative; display: block; overflow: hidden; outline: none !important;}
.irs-line-left, .irs-line-mid, .irs-line-right {position: absolute; display: block; top: 0;}
.irs-line-left {left: 0; width: 11%;}
.irs-line-mid {left: 9%; width: 82%;}
.irs-line-right {right: 0; width: 11%;}
.irs-bar {position: absolute; display: block; left: 0; width: 0;}
.irs-bar-edge {position: absolute; display: block; top: 0; left: 0;}
.irs-shadow {position: absolute; display: none; left: 0; width: 0;}
.irs-handle {position: absolute; display: block; cursor: default; z-index: 1;}
.irs-handle.type_last {z-index: 2;}
.irs-min {position: absolute; display: block; left: 0; cursor: default;}
.irs-max {position: absolute; display: block; right: 0; cursor: default;}
.irs-from, .irs-to, .irs-single {position: absolute; display: block; top: 0; left: 0; cursor: default; white-space: nowrap;}
.irs-grid {position: absolute; display: none; bottom: 0; left: 0; width: 100%; height: 20px;}
.irs-with-grid .irs-grid {display: block;}
.irs-grid-pol {position: absolute; top: 0; left: 0; width: 1px; height: 8px; background: #ec2828;}
.irs-grid-pol.small {height: 4px;}
.irs-grid-text {position: absolute; bottom: 0; left: 0; white-space: nowrap; text-align: center;
font-size: 9px; line-height: 9px; padding: 0 3px; color: #ec2828;}
.irs-disable-mask {position: absolute; display: block; top: 0; left: -1%; width: 102%; height: 100%;
cursor: default; background: rgba(0,0,0,0.0); z-index: 2;}
.irs-disabled {opacity: 0.4;}
.lt-ie9 .irs-disabled {filter: alpha(opacity=40);}
.irs-hidden-input {position: absolute !important; display: block !important; top: 0 !important; left: 0 !important;
width: 0 !important; height: 0 !important; font-size: 0 !important; line-height: 0 !important; padding: 0 !important;
margin: 0 !important; outline: none !important; z-index: -9999 !important; background: none !important;
border-style: solid !important; border-color: transparent !important;}

.irs {height: 40px;}
.irs-line {height: 6px; top: 25px; background-color: var(--bg); border-radius: 3px; 
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);}
.irs-bar {height: 6px; top: 25px; background-color:var(--blue); border-radius:3px;}
.irs-bar-edge {top: 25px; height: 8px; width: 11px; background-color:var(--bg);}
.irs-handle {width: 20px; height: 20px; top: 18px; background-color:var(--bg); border-radius:10px; 
	border: 4px solid var(--blue); box-shadow: 0 1px 3px rgba(0,0,0,0.3); cursor: pointer;}
.irs-from, .irs-to, .irs-single {font-size: 10px; margin-top: -5px; border: 1px solid var(--bdc);
	padding: 0 5px; height: 22px; display: flex; align-items: center; 
	background: var(--bg); color: var(--tt); border-radius: 3px;}

/* Торренты: подсказка про Телеграм */
.torrent-tg-hint {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin-bottom: 16px;
	padding: 12px 16px;
	background: var(--bg-darker);
	border: 1px solid var(--bdc);
	border-radius: var(--ui-bdrs);
	border-left: 3px solid var(--accent);
	box-shadow: var(--bsh);
}
.torrent-tg-hint__text {
	flex: 1 1 220px;
	min-width: 0;
}
.torrent-tg-hint__lead {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--tt);
}
.torrent-tg-hint__label {font-weight: 600;}
.torrent-tg-hint__title {font-weight: 500; color: var(--blue);}
.torrent-tg-hint--update {margin-bottom: 12px; border-left-color: #27bb91;}
.torrent-tg-hint__lead--update {margin-bottom: 0;}
.torrent-tg-hint__title--update {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 10px;
	border-radius: 999px;
	background: rgba(39, 187, 145, .12);
	border: 1px solid rgba(39, 187, 145, .3);
	color: #1da57a;
	font-weight: 600;
}
.torrent-tg-hint__note {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--tt-fade);
}
.torrent-tg-hint__btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 20px;
	border-radius: var(--ui-bdrs);
	background: #229ed9;
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	box-shadow: var(--bsh);
	transition: filter 0.2s ease, transform 0.2s ease;
}
.torrent-tg-hint__btn:hover {
	filter: brightness(1.06);
	color: #fff !important;
}
.torrent-tg-hint__icon {
	flex-shrink: 0;
	display: block;
}
.torrent-tg-hint__btn-text {line-height: 1;}

/* Торренты: карточки (список раздач) */
.page__torrents-table--no-season .page__torrents-table__col-season {display: none !important;}
.page__torrents-table--no-season .torrent-card__meta {
	font-size: 15px;
	font-weight: 600;
	color: var(--tt);
}
.torrent-list.page__torrents-table {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
	padding: 18px 20px 20px;
	background: var(--bg-darker);
	border: 1px solid var(--bdc);
	border-left: 4px solid var(--accent);
	border-radius: var(--ui-bdrs);
	box-shadow: 0 0 0 1px var(--accent-fade), var(--bsh);
}
.dt .torrent-list.page__torrents-table {
	box-shadow: 0 0 0 1px var(--accent-fade), 0 8px 28px rgba(0, 0, 0, 0.35);
}
.torrent-list__head {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 14px 18px;
	padding: 0 2px 16px;
	margin: 0 0 2px;
	background: none;
	border: 0;
	border-bottom: 4px dotted var(--bdc);
	border-radius: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.01em;
	text-transform: none;
	color: var(--tt-fade-0);
}
.torrent-list__head-cell--q {
	flex: 0 0 auto;
	width: 158px;
	max-width: min(158px, 100%);
	text-align: center;
}
.torrent-list__head-cell--info {
	flex: 1 1 200px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
}
.torrent-list__head-line:not(.torrent-list__head-line--muted) {
	font-weight: 500;
	color: var(--tt);
}
.torrent-list__head-line--muted {
	font-size: 12px;
	font-weight: 400;
	color: var(--tt-fade);
	text-transform: none;
	letter-spacing: 0;
}
.page__torrents-table--no-season .torrent-list__head-line--muted {
	font-size: 13px;
	font-weight: 500;
	color: var(--tt);
}
.torrent-list__head-cell--size {
	flex: 0 0 auto;
	margin-left: auto;
	text-align: right;
	white-space: nowrap;
	color: var(--tt-fade-0);
}
.torrent-list__head-cell--dl {
	flex: 0 0 auto;
	min-width: 4.5rem;
	text-align: center;
	color: var(--tt-fade-0);
}
.torrent-card {
	display: flex;
	align-items: center;
	gap: 14px 18px;
	flex-wrap: wrap;
	padding: 15px 18px;
	background: var(--bg);
	border: 1px solid var(--bdc);
	border-radius: 8px;
	box-shadow: var(--bsh);
}
.torrent-card__badge {
	flex: 0 0 auto;
	max-width: 158px;
	padding: 8px 12px;
	border-radius: var(--ui-bdrs);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--tt);
	text-align: center;
	background: var(--bg-darker);
	border: 1px solid var(--bdc);
}
.torrent-card__main {
	flex: 1 1 200px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.torrent-card__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--tt);
	line-height: 1.35;
}
.torrent-card__meta {
	font-size: 13px;
	font-weight: 500;
	color: var(--tt-fade);
	line-height: 1.4;
}
.torrent-card__size {
	flex: 0 0 auto;
	margin-left: auto;
	font-size: 16px;
	font-weight: 700;
	color: var(--tt);
	white-space: nowrap;
}
.torrent-card__action {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.torrent-card__action .torrent-attach-wrap {
	margin: 0;
}
.torrent-list__empty {padding-top: 4px;}
.torrent-list:not(:has(.torrent-card)) .torrent-list__empty {width: 100%;}

/* Торренты: нет раздачи — заметная плашка (акцент шаблона) */
.torrent-list__empty .torrent-unavail {
	--torrent-unavail-accent: var(--accent);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	max-width: 38rem;
	margin: 0 auto;
	padding: 28px 26px 30px;
	text-align: center;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.55;
	color: var(--tt-fade-0);
	background: var(--bg);
	border: 1px solid var(--bdc);
	border-left: 5px solid var(--torrent-unavail-accent);
	border-radius: var(--ui-bdrs);
	box-shadow:
		0 0 0 1px var(--accent-fade),
		0 12px 40px rgba(0, 0, 0, 0.14);
}
.torrent-list__empty .torrent-unavail::before {
	content: "\f017";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	align-self: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: var(--torrent-unavail-accent);
	color: #fff;
	font-size: 22px;
	display: grid;
	place-items: center;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: 0 6px 20px rgba(83, 203, 167, 0.45);
}
.torrent-unavail__title {
	margin: 0 0 16px;
	text-align: center;
	padding-bottom: 14px;
	border-bottom: 3px dotted var(--bdc);
	font-size: clamp(14px, 2.3vw, 19px);
	font-weight: 700;
	color: var(--tt);
}
.torrent-unavail__premiere {
	margin: 0 0 18px;
	text-align: center;
	font-size: 0.95em;
	font-weight: 600;
	color: var(--tt-fade-0);
}
.torrent-unavail__premiere-label {margin-right: 0.35em; color: var(--tt-fade);}
.torrent-unavail__date {
	font-weight: 800;
	font-size: 1.06em;
	color: var(--red);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
}
.torrent-unavail__hint,
.torrent-unavail__cta {
	margin: 0 0 12px;
	text-align: center;
	padding: 11px 14px;
	font-size: 0.82em;
	font-weight: 600;
	color: var(--tt-fade-0);
	background: var(--bg-darker);
	border-radius: calc(var(--ui-bdrs) - 1px);
	border: 1px solid var(--bdc);
}
.torrent-unavail__cta {margin-bottom: 0; opacity: 1;}
.torrent-unavail--compact {
	max-width: 34rem;
	padding: 22px 22px 24px !important;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.45;
}
.torrent-unavail--compact::before {
	content: "\f017";
	width: 44px !important;
	height: 44px !important;
	margin-bottom: 12px !important;
	font-size: 18px !important;
}
.torrent-unavail--compact .torrent-unavail__title {
	margin: 0;
	padding: 0;
	border-bottom: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}
.torrent-unavail--compact .torrent-unavail__subtitle {
	margin: 6px 0 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--tt-fade);
}
.torrent-unavail--compact .torrent-unavail__premiere {
	margin: 14px 0 0;
	padding-top: 12px;
	border-top: 1px dashed var(--bdc);
	font-size: 14px;
}
.torrent-unavail--compact .torrent-unavail__premiere-label {
	font-weight: 600;
}
.torrent-unavail--compact .torrent-unavail__date {
	text-decoration: none;
	color: var(--accent);
}
.torrent-unavail--compact .torrent-unavail__hint {
	margin: 12px 0 0;
	padding: 0;
	background: transparent;
	border: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--tt-fade);
}
.torrent-unavail--compact .torrent-unavail__action {
	margin-top: 14px;
	height: 40px;
	padding: 0 16px;
	border: 0;
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity .2s ease, filter .2s ease;
}
.torrent-unavail--compact .torrent-unavail__action:hover {
	opacity: 0.92;
	filter: brightness(1.03);
}
.torrent-unavail--compact .torrent-unavail__cta {
	display: none;
}
.torrent-unavail--notify {
	max-width: 36rem;
	padding: 24px 22px 22px !important;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.45;
}
.torrent-unavail--notify::before {
	content: "\f0f3";
	width: 46px !important;
	height: 46px !important;
	margin-bottom: 12px !important;
	font-size: 18px !important;
}
.torrent-unavail--notify .torrent-unavail__title {
	margin: 0;
	padding: 0;
	border-bottom: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}
.torrent-unavail--notify .torrent-unavail__subtitle {
	margin: 7px 0 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--tt-fade);
}
.torrent-unavail--notify .torrent-unavail__premiere {
	margin: 14px 0 0;
	padding-top: 12px;
	border-top: 1px dashed var(--bdc);
	font-size: 14px;
}
.torrent-unavail--notify .torrent-unavail__date {
	color: var(--accent);
	text-decoration: none;
}
.torrent-unavail--notify .torrent-unavail__hint {
	margin: 12px 0 0;
	padding: 0;
	background: transparent;
	border: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--tt-fade);
}
.torrent-unavail__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
}
.torrent-unavail--notify .torrent-unavail__action {
	min-width: 260px;
	height: 40px;
	padding: 0 16px;
	border: 0;
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity .2s ease, filter .2s ease;
}
.torrent-unavail--notify .torrent-unavail__action:hover {
	opacity: 0.92;
	filter: brightness(1.03);
}
.torrent-unavail__secondary {
	font-size: 13px;
	font-weight: 500;
	color: var(--tt-fade);
	text-decoration: none;
	border-bottom: 1px dashed var(--tt-fade);
}
.torrent-unavail__secondary:hover {
	color: var(--accent);
	border-bottom-color: var(--accent);
}
.torrent-unavail--glass {
	max-width: 35rem;
	padding: 22px 22px 20px !important;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.4;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.torrent-unavail--glass::before {
	content: "\f017";
	width: 42px !important;
	height: 42px !important;
	margin-bottom: 10px !important;
	font-size: 17px !important;
}
.torrent-unavail--glass .torrent-unavail__title {
	margin: 0;
	padding: 0;
	border-bottom: 0;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.2;
}
.torrent-unavail--glass .torrent-unavail__subtitle {
	margin: 6px 0 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--tt-fade);
}
.torrent-unavail__status {
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--accent);
}
.torrent-unavail--glass .torrent-unavail__premiere {
	margin: 12px 0 0;
	padding-top: 10px;
	border-top: 1px dashed var(--bdc);
	font-size: 14px;
}
.torrent-unavail--glass .torrent-unavail__date {
	color: var(--accent);
	text-decoration: none;
}
.torrent-unavail--glass .torrent-unavail__hint {
	margin: 10px 0 0;
	padding: 0;
	background: transparent;
	border: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--tt-fade);
}
.torrent-unavail--glass .torrent-unavail__actions {
	margin-top: 12px;
}
.torrent-unavail--glass .torrent-unavail__action {
	min-width: 220px;
	height: 38px;
	padding: 0 14px;
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	border: 0;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity .2s ease, filter .2s ease;
}
.torrent-unavail--glass .torrent-unavail__action:hover {
	opacity: 0.92;
	filter: brightness(1.03);
}
.dt .torrent-list__empty .torrent-unavail {
	box-shadow:
		0 0 0 1px var(--accent-fade),
		0 14px 36px rgba(0, 0, 0, 0.45);
}
.dt .torrent-card {
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
@media (max-width: 590px) {
	.torrent-tg-hint {align-items: stretch;}
	.torrent-tg-hint__btn {width: 100%; flex: 1 1 100%;}
	.torrent-list.page__torrents-table {padding: 14px 14px 16px; margin-top: 10px;}
	.torrent-list__head {padding: 0 0 12px; gap: 10px 12px;}
	.torrent-list__head-cell--q {width: 100%; max-width: none; text-align: left;}
	.torrent-list__head-cell--size {margin-left: 0;}
	.torrent-list__head-cell--dl {min-width: 0; flex: 1 1 auto; text-align: right;}
	.torrent-card {padding: 14px; gap: 12px;}
	.torrent-card__size {margin-left: 0; width: 100%; order: 4;}
	.torrent-card__action {width: 100%; justify-content: center; order: 5;}
	.torrent-card__badge {max-width: none; width: 100%;}
	.torrent-list__empty .torrent-unavail {
		padding: 22px 18px 24px;
		letter-spacing: 0.04em;
	}
	.torrent-list__empty .torrent-unavail::before {
		width: 46px;
		height: 46px;
		margin-bottom: 12px;
		font-size: 19px;
	}
}

/* SEARCH TORRENT MODULE (VibixFilm)
----------------------------------------------- */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.torrent-search {margin: 20px 0; max-width: 100%; min-width: 0; box-sizing: border-box;}
.page__torrents {max-width: 100%; min-width: 0;}
.page__torrents .torrent-search {margin: 16px 0 0;}
.torrent-search__manual-source:not(:has(.torrent-card)) {display: none;}
.torrent-search__manual-source:has(.torrent-card) {margin-top: 12px;}
.torrent-search__state,
.torrent-loading, .torrent-error, .torrent-empty {
	padding: 12px 14px;
	margin: 0 0 12px;
	border: 1px solid var(--bdc);
	border-radius: 8px;
	border-top: 2px solid var(--accent);
	background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.02));
	box-shadow: var(--bsh);
	color: var(--tt);
	font-size: 14px;
}
.torrent-search__empty {text-align: left;}
.torrent-block,
.torrent-search__panel {
	border: 1px solid var(--bdc);
	border-radius: 8px;
	border-top: 2px solid var(--accent);
	overflow-x: hidden;
	overflow-y: auto;
	max-width: 100%;
	max-height: 55vh;
	box-shadow: var(--bsh);
	background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02)), var(--bg);
}
.torrent-header,
.torrent-search__summary {
	padding: 12px 14px;
	font-size: 15px;
	font-weight: 600;
	color: var(--tt);
	border-bottom: 1px solid var(--bdc);
	background: var(--bg-darker);
}
.torrent-search__summary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
}
.torrent-search__panel > .torrent-search__summary {
	position: sticky;
	top: 0;
	z-index: 16;
	box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.dt .torrent-search__panel > .torrent-search__summary {
	box-shadow: 0 4px 10px rgba(0,0,0,.22);
}
.torrent-search__summary-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	white-space: nowrap;
}
.torrent-search__summary-link {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease;
}
.torrent-search__summary-link:hover,
.torrent-search__summary-link:focus-visible {
	color: var(--accent);
}
.torrent-search__summary-link:hover strong,
.torrent-search__summary-link:focus-visible strong {
	color: var(--accent);
}
.torrent-search__summary-icon {
	color: var(--accent);
	font-size: 14px;
	line-height: 1;
	flex-shrink: 0;
}
.torrent-header strong,
.torrent-search__summary strong {color: var(--accent);}
.torrent-search__grab-stat {font-weight: 600;}
.torrent-search__grab-stat strong {color: var(--accent); font-weight: 600;}
.torrent-search__summary-item--favorites.torrent-search__fav-tip-host {
	cursor: help;
	outline: none;
}
.torrent-search__fav-tip {
	min-width: 168px;
	max-width: min(420px, 90vw);
	padding: 10px 12px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	text-align: left;
	white-space: normal;
	background: #2d2d2d;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.torrent-search__fav-tip--floating {
	position: fixed;
	z-index: 10020;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity .12s ease, visibility .12s ease, transform .12s ease;
}
.torrent-search__fav-tip--floating.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.torrent-search__fav-tip--floating[data-placement="bottom"] {
	transform: translateY(-4px);
}
.torrent-search__fav-tip--floating[data-placement="bottom"].is-visible {
	transform: translateY(0);
}
.torrent-search__fav-tip--floating::after {
	content: '';
	position: absolute;
	left: 18px;
	bottom: -6px;
	border: 6px solid transparent;
	border-top-color: #2d2d2d;
}
.torrent-search__fav-tip--floating[data-placement="bottom"]::after {
	bottom: auto;
	top: -6px;
	border-top-color: transparent;
	border-bottom-color: #2d2d2d;
}
.torrent-search__fav-tip-host.is-fav-tip-open {
	z-index: 30;
}
.torrent-search__fav-tip__title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
	margin-bottom: 8px;
}
.torrent-search__fav-tip__users {
	line-height: 1.5;
	word-break: break-word;
}
.torrent-search__fav-tip__users a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
}
.torrent-search__fav-tip__users a:hover,
.torrent-search__fav-tip__users a:focus-visible {
	text-decoration: underline;
}
.torrent-search__fav-tip__users span {
	color: #fff;
	font-weight: 600;
}
.torrent-search__fav-tip__more {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid rgba(255,255,255,.1);
	font-size: 11px;
	color: rgba(255,255,255,.65);
}
.torrent-search__fav-tip__body {
	color: rgba(255,255,255,.75);
}
.torrent-search__fav-tip__actions {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255,255,255,.1);
}
.torrent-search__fav-tip__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 8px 10px;
	border: 0;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	color: rgba(0,0,0,.82);
	background: var(--yellow, #f0c419);
	transition: opacity .12s ease, transform .12s ease;
}
.torrent-search__fav-tip__btn:hover,
.torrent-search__fav-tip__btn:focus-visible {
	opacity: .92;
}
.torrent-search__fav-tip__btn.is-loading {
	opacity: .65;
	cursor: wait;
}
.torrent-search__fav-tip__btn--remove {
	background: rgba(255,255,255,.12);
	color: #fff;
}
.torrent-search__fav-tip__btn .fa-heart,
.torrent-search__fav-tip__btn .fal.fa-heart {
	font-size: 13px;
}
.torrent-search__fav-tip__btn .fav-added {
	color: var(--yellow, #f0c419);
}
.torrent-search__panel--soon-empty .torrent-search__summary {
	border-top: 3px solid var(--accent);
}
.torrent-search__panel--soon-empty .torrent-search__table tbody:empty {
	display: none;
}
.torrent-search__panel--soon-empty .torrent-search__soon-placeholder {
	padding: 18px 14px 20px;
	border-top: 1px solid var(--bdc);
	background: var(--bg-darker);
}
.torrent-search__panel--soon-empty .torrent-search__soon-placeholder .torrent-list__empty {
	padding-top: 0;
}
.torrent-empty.torrent-header {border-radius: 8px;}
.tracker-section,
.torrent-search__tracker {border-bottom: 1px solid var(--bdc); padding: 14px;}
.tracker-section:last-child,
.torrent-search__tracker:last-child {border-bottom: none;}
.tracker-title,
.torrent-search__tracker-title {
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--tt-fade);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding-left: 10px;
	border-left: 3px solid var(--accent);
}
.torrent-table,
.torrent-search__table {width: 100%; border-collapse: collapse; font-size: 13px;}
.torrent-table th,
.torrent-search__table th {background: var(--bg); padding: 9px 10px; text-align: left; border-bottom: 1px solid var(--bdc); font-weight: 600; color: var(--tt-fade);}
.torrent-table td,
.torrent-search__table td {padding: 8px 10px; border-bottom: 1px solid var(--bdc); vertical-align: middle;}
.torrent-table tr:hover,
.torrent-search__table tr:hover {background: rgba(0,0,0,0.04);}
.dt .torrent-table tr:hover,
.dt .torrent-search__table tr:hover {background: rgba(255,255,255,0.05);}
.torrent-search__table-wrap {
	max-width: 100%;
	overflow: visible;
	border-radius: 0 0 8px 8px;
}
.torrent-search__table--kinorium {
	table-layout: fixed;
	width: 100%;
	min-width: 0;
}
.torrent-search__table--kinorium .torrent-search__head-row th {
	background: var(--bg);
	color: var(--tt);
	font-weight: 700;
	font-size: 13px;
	padding: 10px 5px;
	border-bottom: 1px solid var(--bdc);
	vertical-align: top;
}
.dt .torrent-search__table--kinorium .torrent-search__head-row th {
	background: #25272b;
	border-bottom-color: rgba(0, 0, 0, 0.35);
	color: var(--tt-fade-0);
}
.torrent-search__table--kinorium .torrent-search__head-row > th:nth-child(1),
.torrent-search__table--kinorium .torrent-search__head-row > th:nth-child(5) {
	width: 3%;
	min-width: 26px;
	max-width: 36px;
	text-align: center;
	padding-left: 2px;
	padding-right: 2px;
}
.torrent-search__sort-icon {opacity: 0.35; font-size: 11px;}
.torrent-search__table--kinorium .torrent-search__head-row > th:nth-child(2) {width: 15%; min-width: 132px;}
.torrent-search__table--kinorium .torrent-search__head-row > th:nth-child(3) {width: 18%; min-width: 0;}
.torrent-search__table--kinorium .torrent-search__head-row > th:nth-child(4) {width: 19%; min-width: 0;}
.torrent-search__table--kinorium .torrent-search__head-row > th:nth-child(6) {width: 14%; min-width: 0;}
.torrent-search__table--kinorium .torrent-search__head-row > th:nth-child(7) {width: 9%; min-width: 0;}
.torrent-search__table--kinorium .torrent-search__th--sort {text-align: center;}
.torrent-search__table--kinorium.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(1),
.torrent-search__table--kinorium.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(6) {
	width: 3%;
	min-width: 26px;
	max-width: 36px;
	text-align: center;
	padding-left: 2px;
	padding-right: 2px;
}
.torrent-search__table--kinorium.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(2) {width: 14%; min-width: 132px;}
.torrent-search__table--kinorium.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(3) {width: 14%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(4) {width: 14%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(5) {width: 18%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(7) {width: 12%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(8) {width: 8%; min-width: 0;}
/* Фильмы: без колонки «Сезон» */
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__head-row > th:nth-child(1),
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__head-row > th:nth-child(4) {
	width: 3%;
	min-width: 26px;
	max-width: 36px;
	text-align: center;
	padding-left: 2px;
	padding-right: 2px;
}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__head-row > th:nth-child(2) {width: 16%; min-width: 132px;}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__head-row > th:nth-child(3) {width: 23%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__head-row > th:nth-child(5) {width: 20%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__head-row > th:nth-child(6) {width: 10%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(1),
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(5) {
	width: 3%;
	min-width: 26px;
	max-width: 36px;
	text-align: center;
	padding-left: 2px;
	padding-right: 2px;
}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(2) {width: 14%; min-width: 132px;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(3) {width: 16%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(4) {width: 22%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(6) {width: 13%; min-width: 0;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__head-row > th:nth-child(7) {width: 9%; min-width: 0;}
.torrent-search__filter-row td {
	background: var(--bg);
	border-bottom: 1px solid var(--bdc);
	padding: 8px;
	vertical-align: middle;
}
.dt .torrent-search__table--kinorium .torrent-search__filter-row td {
	background: #25272b;
	border-bottom-color: rgba(0, 0, 0, 0.35);
}
.torrent-search__quality-filter,
.torrent-search__season-filter {
	width: 100%;
	max-width: 100%;
	height: 34px;
	padding: 0 12px;
	border-radius: 4px;
	border: 1px solid var(--bdc);
	background: var(--bg-darker);
	color: var(--tt);
	font-size: 13px;
	box-sizing: border-box;
}
.torrent-search__table--kinorium .torrent-search__data-row {background: #eceef1;}
.dt .torrent-search__table--kinorium .torrent-search__data-row {background: #2b2e33;}
.torrent-search__table--kinorium .torrent-search__data-row:hover {background: #e4e7eb;}
.dt .torrent-search__table--kinorium .torrent-search__data-row:hover {background: #32363c;}
.torrent-search__table--kinorium .torrent-search__data-row--4k {background: rgba(240, 173, 78, 0.16);}
.torrent-search__table--kinorium .torrent-search__data-row--4k:hover {background: rgba(240, 173, 78, 0.24);}
.dt .torrent-search__table--kinorium .torrent-search__data-row--4k {background: rgba(240, 173, 78, 0.2);}
.dt .torrent-search__table--kinorium .torrent-search__data-row--4k:hover {background: rgba(240, 173, 78, 0.28);}
.torrent-search__table--kinorium .torrent-search__data-row td {
	border-bottom: 1px solid var(--bdc);
	padding: 10px 6px;
	vertical-align: middle;
	min-width: 0;
}
.dt .torrent-search__table--kinorium .torrent-search__data-row td {border-bottom-color: rgba(0, 0, 0, 0.35);}
.torrent-search__td--expand {
	width: 3%;
	min-width: 34px;
	max-width: 40px;
	background: rgba(0,0,0,0.045) !important;
	text-align: center;
}
.dt .torrent-search__td--expand {background: rgba(255,255,255,0.06) !important;}
.torrent-search__table--kinorium .torrent-search__td--expand {
	background: transparent !important;
}
.dt .torrent-search__table--kinorium .torrent-search__td--expand {background: transparent !important;}
.torrent-search__expand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--tt-fade);
	cursor: pointer;
	transition: color .2s ease, background .2s ease;
}
.torrent-search__table--kinorium .torrent-search__expand {color: var(--green);}
.torrent-search__expand:hover {
	color: var(--accent);
	background: rgba(0,0,0,0.06);
}
.dt .torrent-search__expand:hover {background: rgba(255,255,255,0.08);}
.torrent-search__table--kinorium .torrent-search__expand:hover {color: var(--accent); background: rgba(0, 0, 0, 0.06);}
.dt .torrent-search__table--kinorium .torrent-search__expand:hover {background: rgba(255, 255, 255, 0.06);}
.torrent-search__expand-icon {
	display: inline-block;
	transition: transform .2s ease;
	font-size: 12px;
}
.torrent-search__data-row.is-open .torrent-search__expand-icon {transform: rotate(90deg);}
.torrent-search__td--seeds {
	font-weight: 400;
	color: var(--tt);
	white-space: nowrap;
}
.torrent-search__table--kinorium .torrent-search__th--seeds {text-align: center;}
.torrent-search__table--kinorium .torrent-search__data-row td.torrent-search__td--seeds {
	padding: 8px 8px 8px 6px;
	box-sizing: border-box;
	overflow: visible;
	text-align: center;
	vertical-align: middle;
}
.torrent-search__seed-wrap {color: var(--green);}
.torrent-search__seed-icon {font-size: 9px; margin-left: 4px; margin-right: 0; opacity: 0.9;}
.torrent-search__peer-sep {margin: 0 6px; color: var(--tt-fade); font-weight: 400;}
.torrent-search__peer-wrap {color: var(--red);}
.torrent-search__peer-icon {font-size: 9px; margin-right: 4px; opacity: 0.9;}
.torrent-search__seed-wrap[data-tip],
.torrent-search__peer-wrap[data-tip] {
	position: relative;
	cursor: help;
	outline: none;
	z-index: 5;
}
.torrent-search__seed-wrap[data-tip]::after,
.torrent-search__peer-wrap[data-tip]::after {
	content: attr(data-tip);
	position: absolute;
	left: 0;
	bottom: calc(100% + 8px);
	transform: none;
	padding: 8px 10px;
	width: max-content;
	max-width: min(320px, 72vw);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.35;
	color: #fff;
	text-align: center;
	white-space: normal;
	background: #2d2d2d;
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(0,0,0,.28);
	opacity: 0;
	visibility: hidden;
	transition: opacity .08s ease, visibility .08s ease;
	z-index: 140;
	pointer-events: none;
}
.torrent-search__seed-wrap[data-tip]::before,
.torrent-search__peer-wrap[data-tip]::before {
	content: '';
	position: absolute;
	left: 14px;
	bottom: calc(100% + 2px);
	transform: none;
	border: 6px solid transparent;
	border-top-color: #2d2d2d;
	opacity: 0;
	visibility: hidden;
	transition: opacity .08s ease, visibility .08s ease;
	z-index: 141;
	pointer-events: none;
}
.torrent-search__seed-wrap[data-tip]:hover::after,
.torrent-search__seed-wrap[data-tip]:focus-visible::after,
.torrent-search__seed-wrap[data-tip]:hover::before,
.torrent-search__seed-wrap[data-tip]:focus-visible::before,
.torrent-search__peer-wrap[data-tip]:hover::after,
.torrent-search__peer-wrap[data-tip]:focus-visible::after,
.torrent-search__peer-wrap[data-tip]:hover::before,
.torrent-search__peer-wrap[data-tip]:focus-visible::before {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 760px) {
	.torrent-search__table-wrap {overflow-x: auto; overflow-y: visible;}
}
.torrent-search__table--kinorium .torrent-search__peers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0;
	max-width: 100%;
	min-width: 5.5em;
	padding: 7px 12px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	vertical-align: middle;
	margin: 0 auto;
}
.dt .torrent-search__table--kinorium .torrent-search__peers {
	background: #363a42;
	border-color: rgba(0, 0, 0, 0.4);
}
.torrent-search__table--kinorium .torrent-search__seed-wrap {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--green);
}
.torrent-search__table--kinorium .torrent-search__seed-num {
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.02em;
}
.torrent-search__table--kinorium .torrent-search__seed-icon {
	font-size: 8px;
	margin: 0;
	opacity: 0.95;
	line-height: 1;
}
.torrent-search__table--kinorium .torrent-search__peer-sep {
	margin: 0 9px;
	font-weight: 500;
	opacity: 0.45;
}
.torrent-search__table--kinorium .torrent-search__peer-wrap {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--red);
}
.torrent-search__table--kinorium .torrent-search__peer-num {
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.02em;
}
.torrent-search__table--kinorium .torrent-search__peer-icon {
	font-size: 8px;
	margin: 0;
	opacity: 0.95;
	line-height: 1;
}
.torrent-search__table--kinorium .torrent-search__td--size {
	font-weight: 600;
	font-size: 14px;
}
.torrent-search__table--kinorium .torrent-search__season-main {
	font-weight: 500;
}
.torrent-search__table--kinorium .torrent-search__q-source {
	font-weight: 500;
}
.torrent-search__q-top {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 6px;
	margin-bottom: 2px;
}
.torrent-search__q-source {font-weight: 400; color: var(--tt); overflow-wrap: anywhere; word-break: break-word;}
.torrent-search__q-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	background: var(--green);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}
.torrent-search__q-badge--fhd {background: #5cb85c;}
.torrent-search__q-badge--q4k {background: #f0ad4e;}
.torrent-search__q-badge--hd {background: #5bc0de;}
.torrent-search__q-badge--ad {
	background: #ef4a4a;
	font-size: 9px;
	line-height: 1.05;
	padding: 1px 5px;
	border-radius: 3px;
	transform: translateY(4px);
}
.torrent-search__q-badge--ad[data-tip] {
	position: relative;
	cursor: help;
}
.torrent-search__q-badge--ad[data-tip]::after {
	content: attr(data-tip);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	transform: translateX(-50%);
	padding: 6px 8px;
	width: max-content;
	max-width: min(260px, 70vw);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
	text-transform: none;
	letter-spacing: 0;
	white-space: normal;
	background: #2d2d2d;
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(0,0,0,.28);
	opacity: 0;
	visibility: hidden;
	transition: opacity .08s ease, visibility .08s ease;
	z-index: 65;
	pointer-events: none;
}
.torrent-search__q-badge--ad[data-tip]::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: calc(100% + 2px);
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #2d2d2d;
	opacity: 0;
	visibility: hidden;
	transition: opacity .08s ease, visibility .08s ease;
	z-index: 66;
	pointer-events: none;
}
.torrent-search__q-badge--ad[data-tip]:hover::after,
.torrent-search__q-badge--ad[data-tip]:focus-visible::after,
.torrent-search__q-badge--ad[data-tip]:hover::before,
.torrent-search__q-badge--ad[data-tip]:focus-visible::before {
	opacity: 1;
	visibility: visible;
}
.torrent-search__td--quality {vertical-align: top; min-width: 0; overflow-wrap: anywhere; word-break: break-word;}
.torrent-search__table--kinorium .torrent-search__th--quality,
.torrent-search__table--kinorium .torrent-search__td--quality {padding-left: 12px; padding-right: 6px;}
.torrent-search__th-quality {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	min-width: 0;
}
.torrent-search__th-quality__title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}
.torrent-search__filter-label--in-th {
	display: block;
	margin: 0;
	min-width: 0;
	width: 112px;
	max-width: 112px;
}
.torrent-search__th--quality .torrent-search__quality-filter {
	width: 112px;
	max-width: 112px;
	box-sizing: border-box;
}
.torrent-search__table--kinorium .torrent-search__quality-filter {padding-left: 8px; padding-right: 8px;}
.torrent-search__th-season {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	min-width: 0;
}
.torrent-search__th-season__title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}
.torrent-search__th--season .torrent-search__season-filter {
	width: 112px;
	max-width: 112px;
	box-sizing: border-box;
}
.torrent-search__table--kinorium .torrent-search__season-filter {padding-left: 8px; padding-right: 8px;}
.torrent-search__head-row .torrent-search__th--quality .torrent-search__filter-label--in-th,
.torrent-search__head-row .torrent-search__th--season .torrent-search__filter-label--in-th {
	width: 116px;
	min-width: 116px;
	max-width: 116px;
}
.torrent-search__head-row .torrent-search__th--quality .torrent-search__quality-filter,
.torrent-search__head-row .torrent-search__th--season .torrent-search__season-filter {
	width: 116px !important;
	min-width: 116px;
	max-width: 116px;
}
.torrent-search__table--kinorium .torrent-search__manual-cell {
	padding: 0;
	vertical-align: middle;
	border-bottom: 1px solid var(--bdc);
	background: transparent;
}
.dt .torrent-search__table--kinorium .torrent-search__manual-cell {border-bottom-color: rgba(0, 0, 0, 0.35);}
.torrent-search__manual-embed {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.torrent-search__manual-embed .torrent-card--manual-row {
	display: table;
	width: 100%;
	table-layout: fixed;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: #eceef1;
	border-bottom: 1px solid var(--bdc);
}
.dt .torrent-search__manual-embed .torrent-card--manual-row {
	background: #2b2e33;
	border-bottom-color: rgba(0, 0, 0, 0.35);
}
.torrent-search__manual-embed .torrent-card--manual-row:hover {background: #e4e7eb;}
.dt .torrent-search__manual-embed .torrent-card--manual-row:hover {background: #32363c;}
.torrent-search__manual-embed .torrent-card__cell {
	display: table-cell;
	vertical-align: middle;
	padding: 10px 6px;
	min-width: 0;
	border: 0;
	box-sizing: border-box;
}
.torrent-search__manual-embed .torrent-card__cell--expand {
	width: 3%;
	min-width: 26px;
	max-width: 36px;
	text-align: center;
	padding: 10px 2px;
	display: table-cell;
}
.torrent-search__manual-embed .torrent-card__cell--expand .torrent-card__expand-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}
.torrent-search__manual-embed .torrent-card__expand-ico {
	font-size: 12px;
	color: var(--green);
	opacity: 0.9;
	line-height: 1;
}
.torrent-search__manual-embed .torrent-card__cell--seeds {
	width: 14%;
	min-width: 132px;
	white-space: nowrap;
	padding: 8px 8px 8px 6px;
	text-align: center;
	vertical-align: middle;
	box-sizing: border-box;
	overflow: visible;
}
.torrent-search__manual-embed .torrent-search__peers {margin: 0 auto;}
.torrent-search__manual-embed .torrent-search__peers--ep-total {justify-content: center; padding: 7px 10px;}
.torrent-search__manual-embed .torrent-search__ep-total-text {
	font-weight: 600;
	font-size: 13px;
	line-height: 1.2;
	color: var(--tt);
	letter-spacing: 0.01em;
}
.torrent-search__manual-embed .torrent-card__cell--quality {
	width: 14%;
	overflow-wrap: anywhere;
	word-break: break-word;
	vertical-align: middle;
}
.torrent-search__manual-embed .torrent-card__cell--season {width: 14%; vertical-align: middle;}
.torrent-search__manual-embed .torrent-card__cell--voice {width: 18%; vertical-align: middle;}
.torrent-search__manual-embed .torrent-card__cell--sort {
	width: 3%;
	min-width: 26px;
	max-width: 36px;
	padding: 10px 2px;
}
.torrent-search__manual-embed .torrent-card__cell--size {
	width: 12%;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	color: var(--tt);
	vertical-align: middle;
}
.torrent-search__manual-embed .torrent-card__cell--dl {
	width: 8%;
	text-align: center;
	vertical-align: middle;
}
/* Ручные строки без «Перевод»: с «Сезон» — те же доли, что у thead (.torrent-search__head-row > th 2–4, 6–7) */
.torrent-search__table--kinorium:not(.torrent-search__table--with-voice):not(.torrent-search__table--no-season) .torrent-search__manual-embed .torrent-card__cell--expand {
	width: 3%;
	min-width: 26px;
	max-width: 36px;
}
.torrent-search__table--kinorium:not(.torrent-search__table--with-voice):not(.torrent-search__table--no-season) .torrent-search__manual-embed .torrent-card__cell--seeds {width: 15%; min-width: 132px;}
.torrent-search__table--kinorium:not(.torrent-search__table--with-voice):not(.torrent-search__table--no-season) .torrent-search__manual-embed .torrent-card__cell--quality {width: 18%;}
.torrent-search__table--kinorium:not(.torrent-search__table--with-voice):not(.torrent-search__table--no-season) .torrent-search__manual-embed .torrent-card__cell--season {width: 19%;}
.torrent-search__table--kinorium:not(.torrent-search__table--with-voice):not(.torrent-search__table--no-season) .torrent-search__manual-embed .torrent-card__cell--sort {width: 3%; min-width: 26px; max-width: 36px;}
.torrent-search__table--kinorium:not(.torrent-search__table--with-voice):not(.torrent-search__table--no-season) .torrent-search__manual-embed .torrent-card__cell--size {width: 14%;}
.torrent-search__table--kinorium:not(.torrent-search__table--with-voice):not(.torrent-search__table--no-season) .torrent-search__manual-embed .torrent-card__cell--dl {width: 9%;}
/* Фильмы (без «Сезон»), без «Перевод» — как .torrent-search__table--no-season:not(.torrent-search__table--with-voice) thead */
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__manual-embed .torrent-card__cell--expand {
	width: 3%;
	min-width: 26px;
	max-width: 36px;
}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__manual-embed .torrent-card__cell--seeds {width: 16%; min-width: 132px;}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__manual-embed .torrent-card__cell--quality {width: 23%;}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__manual-embed .torrent-card__cell--sort {width: 3%; min-width: 26px; max-width: 36px;}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__manual-embed .torrent-card__cell--size {width: 20%;}
.torrent-search__table--kinorium.torrent-search__table--no-season:not(.torrent-search__table--with-voice) .torrent-search__manual-embed .torrent-card__cell--dl {width: 10%;}
/* Фильмы + голос */
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__manual-embed .torrent-card__cell--seeds {width: 14%; min-width: 132px;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__manual-embed .torrent-card__cell--quality {width: 16%;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__manual-embed .torrent-card__cell--voice {width: 22%;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__manual-embed .torrent-card__cell--size {width: 13%;}
.torrent-search__table--kinorium.torrent-search__table--no-season.torrent-search__table--with-voice .torrent-search__manual-embed .torrent-card__cell--dl {width: 9%;}
.torrent-search__manual-embed .torrent-search__q-top {margin-bottom: 2px;}
.torrent-search__manual-embed .torrent-search__season-main {font-weight: 500; color: var(--tt); line-height: 1.3;}
.torrent-search__manual-embed .torrent-search__season-sub {
	font-size: 12px;
	line-height: 1.35;
	color: var(--tt-fade);
	margin-top: 2px;
	font-weight: 400;
}
.torrent-search__table--kinorium.torrent-search__table--no-season .torrent-search__manual-embed .torrent-card__cell--season,
.torrent-search__manual-source--no-season .torrent-search__manual-embed .torrent-card__cell--season {display: none !important;}
.torrent-search__table--kinorium:not(.torrent-search__table--with-voice) .torrent-search__manual-embed .torrent-card__cell--voice {display: none !important;}
.torrent-search__manual-embed .torrent-search__season-sub:empty {display: none;}
.torrent-search__manual-embed .torrent-search__voice .torrent-search__voice-studios {margin: 0;}
.torrent-search__manual-embed .torrent-attach-wrap {margin: 0; justify-content: center;}
.torrent-search__manual-embed .torrent-counter {display: none !important;}
.torrent-search__td--voice {
	vertical-align: top;
	min-width: 0;
	overflow: visible;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.torrent-search__table--kinorium .torrent-search__td--voice {position: relative; z-index: 0;}
.torrent-search__table--kinorium .torrent-search__voice-tag[data-tip]:hover,
.torrent-search__table--kinorium .torrent-search__voice-tag[data-tip]:focus-visible {z-index: 20;}
.torrent-search__voice {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	min-width: 0;
	word-break: normal;
	overflow-wrap: normal;
}
.torrent-search__voice-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 0;
	align-items: flex-start;
}
.torrent-search__voice-tag {
	position: relative;
	display: inline-block;
	padding: 3px 9px;
	border-radius: 4px;
	border: 1px solid rgba(86,191,128,.65);
	background: rgba(86,191,128,.18);
	color: #2d7a48;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	cursor: default;
	outline: none;
	word-break: normal;
	overflow-wrap: normal;
}
.dt .torrent-search__voice-tag {
	border-color: rgba(127,212,164,.55);
	background: rgba(86,191,128,.22);
	color: #7fd4a4;
}
.torrent-search__voice-tag--legacy {
	border-color: rgba(120,140,160,.45);
	background: rgba(120,140,160,.12);
	color: var(--tt-fade);
}
.torrent-search__voice-tag[data-tip]::after {
	content: attr(data-tip);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 9px);
	transform: translateX(-50%);
	padding: 8px 10px;
	width: max-content;
	max-width: min(280px, 70vw);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0;
	color: #fff;
	text-align: center;
	white-space: normal;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	background: #2d2d2d;
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(0,0,0,.28);
	opacity: 0;
	visibility: hidden;
	transition: opacity .15s ease, visibility .15s ease;
	z-index: 60;
	pointer-events: none;
}
.torrent-search__voice-tag[data-tip]::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: calc(100% + 3px);
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #2d2d2d;
	opacity: 0;
	visibility: hidden;
	transition: opacity .15s ease, visibility .15s ease;
	z-index: 61;
	pointer-events: none;
}
.torrent-search__voice-tag[data-tip]:hover::after,
.torrent-search__voice-tag[data-tip]:focus-visible::after,
.torrent-search__voice-tag[data-tip]:hover::before,
.torrent-search__voice-tag[data-tip]:focus-visible::before {
	opacity: 1;
	visibility: visible;
}
.torrent-search__voice-studios {
	margin: 0;
	padding: 0;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 500;
	color: var(--tt-fade);
	word-break: normal;
	overflow-wrap: break-word;
	max-width: 100%;
}
.torrent-search__voice-slash {
	margin: 0;
	padding: 0;
	font-size: 11px;
	line-height: 1.45;
	color: var(--tt-fade);
	opacity: 0.92;
	overflow-wrap: break-word;
}
.torrent-search__voice-empty {color: var(--tt-fade); font-size: 13px;}
.torrent-search__q-meta {
	display: block;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 4px;
	color: var(--tt);
	opacity: 0.68;
}
.torrent-search__season-main {font-weight: 400; color: var(--tt); line-height: 1.3;}
.torrent-search__season-sub {font-size: 12px; line-height: 1.35; color: var(--tt-fade); margin-top: 2px; font-weight: 400;}
.torrent-search__td--sort-spacer {width: 3%; min-width: 26px; max-width: 36px;}
.torrent-search__td--size {color: var(--tt); font-weight: 400; white-space: nowrap;}
.torrent-search__td--dl {text-align: center;}
.torrent-search__sub-row .torrent-search__sub-cell {
	padding: 0;
	border-bottom: 1px solid var(--bdc);
	background: var(--bg-darker);
}
.torrent-search__sub-inner {
	padding: 10px 14px 12px 52px;
	font-size: 13px;
	color: var(--tt-fade);
	line-height: 1.45;
}
.torrent-search__sub-label {font-weight: 600; color: var(--tt); margin-right: 6px;}
.torrent-search__sub-title {color: var(--tt); margin: 0 0 2px; word-break: break-word; line-height: 1.45;}
.torrent-search__sub-extra {
	margin: 8px 0 4px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--tt);
	word-break: break-word;
}
.torrent-search__release-extra {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--tt);
	word-break: break-word;
}
.torrent-search__sub-spec {margin-top: 10px;}
.torrent-search__sub-spec[hidden] {display: none !important;}
.torrent-search__sub-spec-loading {font-size: 12px; color: var(--tt-fade); font-style: italic;}
.torrent-search__sub-fetch {
	margin-top: 8px;
	padding: 12px 14px;
	border: 1px solid var(--accent-fade);
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(66, 193, 163, 0.08), rgba(66, 193, 163, 0.02));
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.torrent-search__sub-fetch-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	min-width: 0;
	width: 100%;
}
.torrent-search__sub-fetch-spinner.torrent-search__loading-spinner {width: 40px; height: 40px; flex-shrink: 0;}
.torrent-search__sub-fetch .torrent-search__loading-ring {width: 40px; height: 40px; border-width: 2px;}
.torrent-search__sub-fetch .torrent-search__loading-dot {width: 10px; height: 10px;}
.torrent-search__sub-fetch-body {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 3px;
	width: 100%;
	max-width: 100%;
	text-align: center;
}
.torrent-search__sub-fetch-title {font-size: 14px; font-weight: 700; color: var(--tt); line-height: 1.35;}
.torrent-search__sub-fetch-note {font-size: 12px; font-weight: 500; color: var(--tt-fade); line-height: 1.4;}
.dt .torrent-search__sub-fetch {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
	background: linear-gradient(180deg, rgba(66, 193, 163, 0.12), rgba(66, 193, 163, 0.03));
}
.torrent-row-main {background: rgba(0,0,0,0.02);}
.torrent-row-main.is-open {background: rgba(0,0,0,0.04);}
.torrent-expand__icon {font-size: 20px; color: var(--tt-fade); line-height: 1;}
.torrent-row-main .torrent-expand {cursor: pointer;}
.torrent-row-main.is-open .torrent-expand__icon {transform: rotate(90deg); color: var(--tt);}
.torrent-name {color: var(--tt); max-width: 500px; overflow: hidden; text-overflow: ellipsis;}
.torrent-size {color: var(--tt-fade); white-space: nowrap;}
.torrent-seeds {color: var(--green); font-weight: 700; text-align: center;}
.torrent-seeds__up {color: var(--green);}
.torrent-seeds__down {color: var(--red);}
.torrent-quality__name {display: block; color: var(--tt);}
.torrent-quality__meta {display: block; margin-top: 2px; color: var(--tt-fade); font-size: 12px;}
.torrent-voice__badge {display: inline-block; min-width: 32px; margin-right: 6px; padding: 0 7px; border-radius: 4px; background: rgba(86,191,128,.2); color: #4fa774; font-size: 11px; font-weight: 700; line-height: 20px; text-align: center;}
.torrent-voice__text {display: block; margin-top: 3px; color: var(--tt-fade);}
.torrent-links {white-space: nowrap; text-align: center;}
.torrent-row-detail {display: none;}
.torrent-row-detail.is-open {display: table-row;}
.torrent-row-detail td {padding: 0; border-bottom: 1px solid var(--bdc); background: rgba(0,0,0,0.03);}
.torrent-row-detail__content {padding: 14px 18px 16px 42px; color: var(--tt-fade); line-height: 1.55;}
.magnet-btn, .torrent-btn, .theme-btn, .load-details-btn {display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 12px; margin: 0 3px; border-radius: 4px; text-decoration: none; font-size: 12px; font-weight: 600; border: 0; cursor: pointer; transition: all 0.3s; min-width: 70px; text-align: center; height: 32px; line-height: 1;}
button.load-details-btn {height: 32px; line-height: 1; min-width: 40px;}
.magnet-btn {background: var(--red); color: #fff;}
.magnet-btn:hover {opacity: 0.88;}
.torrent-btn {background: var(--accent); color: #fff;}
.torrent-btn:hover {opacity: 0.88;}
.theme-btn {background: var(--blue); color: #fff;}
.theme-btn:hover {opacity: 0.88;}
.load-details-btn {background: var(--accent); color: #fff; min-width: 40px; position: relative;}
.load-details-btn:hover {opacity: 0.88; filter: brightness(1.05);}
.load-details-btn:disabled {background: var(--tt-fade); cursor: not-allowed;}
/* Кнопка «Скачать» в kinorium: один стиль для TorAPI и ручных раздач */
.torrent-search__grab.load-details-btn,
.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 40px !important;
	width: 40px;
	height: 40px;
	padding: 0 !important;
	margin: 0 !important;
	gap: 0 !important;
	border-radius: 8px;
	background: var(--accent) !important;
	color: #fff !important;
	border: 0 !important;
	box-shadow: var(--bsh);
	font-weight: 600;
	text-decoration: none !important;
	box-sizing: border-box;
	transition: opacity 0.2s ease, filter 0.2s ease;
}
.torrent-search__grab.load-details-btn .fal,
.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-btn .torrent-btn__icon {
	font-size: 16px !important;
	line-height: 1 !important;
	color: #fff !important;
}
.torrent-search__table--kinorium .torrent-search__grab.load-details-btn,
.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-btn {
	width: 42px;
	height: 42px;
	min-width: 42px !important;
	border-radius: 10px;
}
.torrent-search__table--kinorium .torrent-search__grab.load-details-btn:hover,
.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-btn:hover {
	color: #fff !important;
	opacity: 0.92;
	filter: brightness(1.02);
}
.torrent-search__grab--locked {
	background: #8b949e !important;
	cursor: not-allowed !important;
	position: relative;
}
.torrent-search__grab--locked:hover {
	opacity: 1 !important;
	filter: none !important;
}
.torrent-search__grab--locked[data-tip]::after {
	content: attr(data-tip);
	position: absolute;
	right: 0;
	bottom: calc(100% + 8px);
	transform: none;
	background: rgba(21, 23, 26, 0.96);
	color: #fff;
	padding: 6px 8px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	white-space: normal;
	max-width: 180px;
	min-width: 140px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 120;
}
.torrent-search__grab--locked[data-tip]:hover::after,
.torrent-search__grab--locked[data-tip]:focus-visible::after {
	opacity: 1;
	visibility: visible;
}
.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-btn--guest:hover,
.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-btn--user:hover {
	transform: none;
}
.torrent-search__table--kinorium .torrent-search__voice-studios {
	font-weight: 500;
	color: var(--tt);
}
.torrent-search__dl.full-width {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none !important;
}
.torrent-search__dl--magnet {background: var(--orange) !important; color: #fff !important;}
.torrent-search__dl--torrent {background: var(--accent) !important; color: #fff !important;}
.torrent-search__dl--theme {background: var(--blue) !important; color: #fff !important;}
.torrent-search__dl--magnet:hover,
.torrent-search__dl--torrent:hover,
.torrent-search__dl--theme:hover {opacity: 0.92; filter: brightness(1.02);}
.preloader-spinner {display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; margin-right: 5px; vertical-align: middle;}
@keyframes spin {to {transform: rotate(360deg);}}
.no-link {color: var(--tt-fade); font-style: italic;}
.torrent-modal {display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000;}
.torrent-modal .modal-overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.65); backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.3s;}
.torrent-modal .modal-content {position: relative; width: 90%; max-width: 600px; max-height: 90vh; background: var(--bg); border: 1px solid var(--bdc); border-radius: 10px; margin: 5vh auto; overflow: hidden; transform: translateY(-50px); opacity: 0; transition: all 0.3s; display: flex; flex-direction: column; box-shadow: var(--bsh-long);}
.torrent-modal.active .modal-overlay {opacity: 1;}
.torrent-modal.active .modal-content {transform: translateY(0); opacity: 1;}
.torrent-modal .modal-header {
	background: var(--bg-darker);
	color: var(--tt);
	padding: 14px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--bdc);
}
.torrent-modal .modal-header h3 {margin: 0; font-size: 17px; font-weight: 600;}
.torrent-modal .modal-close {
	background: transparent;
	border: 1px solid var(--bdc);
	color: var(--tt-fade);
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	padding: 4px 10px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.torrent-modal .modal-close:hover {color: var(--accent); border-color: var(--accent-fade); background: rgba(0,0,0,0.04);}
.dt .torrent-modal .modal-close:hover {background: rgba(255,255,255,0.06);}
.torrent-modal .modal-body {padding: 0; flex: 1; overflow-y: auto;}
.torrent-modal .modal-loading {padding: 34px; text-align: center; font-size: 15px; color: var(--tt-fade);}
.torrent-modal .modal-details {padding: 20px;}
.torrent-search__state--loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	padding: 24px 14px;
}
.torrent-search__loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: min(100%, 480px);
	padding: 18px 16px;
	border: 1px solid var(--accent-fade);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(66, 193, 163, 0.08), rgba(66, 193, 163, 0.02));
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	text-align: center;
}
.torrent-search__loading-spinner {
	position: relative;
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.torrent-search__loading-ring {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 3px solid rgba(66, 193, 163, 0.25);
	border-top-color: var(--accent);
	animation: torrent-search-spin 1s linear infinite;
}
.torrent-search__loading-dot {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 0 rgba(66, 193, 163, 0.5);
	animation: torrent-search-pulse 1.35s ease-out infinite;
}
.torrent-search__loading-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.torrent-search__loading-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--tt);
	line-height: 1.35;
}
.torrent-search__loading-subtitle {
	font-size: 14px;
	font-weight: 500;
	color: var(--tt-fade);
	line-height: 1.4;
}
@keyframes torrent-search-spin {
	to { transform: rotate(360deg); }
}
@keyframes torrent-search-pulse {
	0% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(66, 193, 163, 0.42); }
	70% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(66, 193, 163, 0); }
	100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(66, 193, 163, 0); }
}
.details-section {padding-bottom: 25px;}
.details-section:last-child {border-bottom: none; margin-bottom: 0; padding-bottom: 0;}
.details-section h4 {margin: 0 0 15px; color: var(--tt); font-size: 15px;}
.details-table {width: 100%; border-collapse: collapse;}
.details-table tr {border-bottom: 1px solid var(--bdc);}
.details-table tr:last-child {border-bottom: none;}
.details-table td {padding: 8px 0; vertical-align: top;}
.details-table td:first-child {width: 100px; color: var(--tt-fade);}
.details-table td:last-child {color: var(--tt); word-break: break-word;}
.links-container {margin-top: 10px;}
.links-row {display: flex; flex-direction: column; gap: 10px;}
.links-row a.full-width {display: block; padding: 12px; text-align: center; font-size: 14px; text-decoration: none; border-radius: 6px; transition: all 0.3s;}
.torrent-modal__links-help {
	margin: -2px 0 10px;
	font-size: 13px;
	color: var(--tt-fade);
}
.torrent-modal__cta-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.torrent-modal__cta-note {
	font-size: 12px;
	color: var(--tt-fade);
	text-align: center;
}
.torrent-modal .links-row .torrent-search__dl.full-width {
	display: flex !important;
	width: 100% !important;
	min-width: 100% !important;
	justify-content: center;
}
.torrent-modal .links-row .torrent-search__dl--locked {
	height: 42px;
	border-radius: 8px;
	border: 0;
	background: #8b949e;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: not-allowed;
	position: relative;
}
.torrent-modal .links-row .torrent-search__dl--locked[data-tip]::after {
	content: attr(data-tip);
	position: absolute;
	right: 0;
	bottom: calc(100% + 8px);
	background: rgba(21, 23, 26, 0.96);
	color: #fff;
	padding: 6px 8px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	white-space: normal;
	max-width: 180px;
	min-width: 140px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 120;
}
.torrent-modal .links-row .torrent-search__dl--locked[data-tip]:hover::after,
.torrent-modal .links-row .torrent-search__dl--locked[data-tip]:focus-visible::after {
	opacity: 1;
	visibility: visible;
}
.torrent-modal .modal-footer {padding: 0 0 0 10px; text-align: center;}
.close-modal-btn {background: var(--bg-darker); color: var(--tt); border: 1px solid var(--bdc); padding: 10px 30px; border-radius: 5px; cursor: pointer; font-size: 14px; transition: background 0.3s;}
.close-modal-btn:hover {background: var(--accent); color: #fff; border-color: var(--accent);}
.torrent-modal .modal-error {padding: 30px; text-align: center; color: var(--red); font-size: 16px;}
.custom-text-info {margin-top: 12px; padding: 8px 10px; background: var(--bg-darker); border-radius: 5px; font-size: 12px; color: var(--tt-fade); line-height: 1.45; border-left: 3px solid var(--accent);}
.custom-text-info a {color: var(--accent); text-decoration: none;}
.custom-text-info a:hover {color: var(--accent); text-decoration: none;}
.details-section--spec .torrent-spec {margin: 0; padding: 0;}
.torrent-spec__row {padding: 6px 0; border-bottom: 1px solid var(--bdc); font-size: 14px; line-height: 1.45; word-break: break-word; overflow-wrap: break-word;}
.torrent-spec__row:last-child {border-bottom: none;}
.torrent-spec__label {color: var(--tt-fade); font-weight: 600; margin-right: 4px;}
.torrent-spec__value {color: var(--tt);}
.torrent-spec__value--rich {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}
.torrent-spec__voice-tags.torrent-search__voice-tags {margin-bottom: 0;}
.torrent-spec__voice-meta {font-size: 12px; font-weight: 400; color: var(--tt-fade); line-height: 1.4;}
@media (max-width: 768px) {
	.torrent-table {font-size: 12px;}
	.torrent-table th, .torrent-table td {padding: 8px 5px;}
	.magnet-btn, .torrent-btn, .theme-btn, .load-details-btn {padding: 4px 8px; margin: 0 2px; font-size: 11px; min-width: 35px;}
	/* Для таблицы раздач на мобильных: не сжимаем колонки, включаем горизонтальный скролл. */
	.torrent-search__table-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.torrent-search__table--kinorium {
		min-width: 720px;
	}
	.torrent-search__table--kinorium .torrent-search__head-row th {
		font-size: 12px;
	}
	.torrent-search__table--kinorium .torrent-search__th-quality,
	.torrent-search__table--kinorium .torrent-search__th-season {
		min-width: 120px;
	}
	/* Фиксируем правый столбец "Скачать" при горизонтальном скролле. */
	.torrent-search__table--kinorium .torrent-search__th--dl,
	.torrent-search__table--kinorium .torrent-search__td--dl {
		position: sticky;
		right: 0;
		z-index: 8;
		background: #eceef1;
	}
	.dt .torrent-search__table--kinorium .torrent-search__th--dl,
	.dt .torrent-search__table--kinorium .torrent-search__td--dl {
		background: #2b2e33;
	}
	.torrent-search__table--kinorium .torrent-search__th--dl {
		z-index: 12;
		box-shadow: -6px 0 8px rgba(0, 0, 0, 0.08);
	}
	.torrent-search__table--kinorium .torrent-search__td--dl {
		box-shadow: -6px 0 8px rgba(0, 0, 0, 0.06);
	}
	/* Ручные раздачи: flex-ряд + липкая колонка «Скачать» (как у .torrent-search__td--dl) */
	.torrent-search__table--kinorium tr.torrent-search__data-row > td,
	.torrent-search__table--kinorium tr.torrent-search__manual-row > .torrent-search__manual-cell {
		min-height: 64px;
		box-sizing: border-box;
	}
	.torrent-search__table--kinorium .torrent-search__data-row td.torrent-search__td--dl {
		vertical-align: middle;
	}
	.torrent-search__table--kinorium .torrent-search__manual-cell {
		overflow: visible;
		padding: 0;
		vertical-align: middle;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed {
		display: flex;
		flex-direction: column;
		min-height: 100%;
		height: 100%;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card--manual-row {
		display: flex;
		flex-flow: row nowrap;
		align-items: stretch;
		flex: 1 1 auto;
		min-width: 720px;
		min-height: 64px;
		width: 100%;
		box-sizing: border-box;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell {
		display: flex;
		align-items: center;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
		box-sizing: border-box;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--quality,
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--season,
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--voice {
		justify-content: flex-start;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--size {
		justify-content: flex-start;
		font-weight: 600;
		font-size: 14px;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--expand {
		flex: 0 0 36px;
		width: 36px;
		min-width: 36px;
		max-width: 36px;
		padding: 10px 2px;
		justify-content: center;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--seeds {
		flex: 0 0 132px;
		width: 132px;
		min-width: 132px;
		padding: 8px 8px 8px 6px;
		justify-content: center;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--sort {
		flex: 0 0 36px;
		width: 36px;
		min-width: 36px;
		max-width: 36px;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--dl {
		flex: 0 0 80px;
		width: 80px;
		min-width: 80px;
		align-self: stretch;
		margin-left: auto;
		position: sticky;
		right: 0;
		z-index: 8;
		background: #eceef1;
		box-shadow: -6px 0 8px rgba(0, 0, 0, 0.06);
		justify-content: center;
		padding: 10px 6px;
	}
	.dt .torrent-search__table--kinorium .torrent-search__manual-embed .torrent-card__cell--dl {
		background: #2b2e33;
	}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-btn,
	.torrent-search__table--kinorium .torrent-search__grab.load-details-btn {
		padding: 0 !important;
		margin: 0 !important;
		min-width: 42px !important;
		width: 42px !important;
		height: 42px !important;
		display: inline-flex !important;
	}
	.torrent-modal .modal-content {width: 95%; margin: 2vh auto;}
	.details-table td:first-child {width: 80px;}
	.links-row a.full-width {padding: 10px; font-size: 13px;}
}
@media (max-width: 576px) {
	.torrent-table:not(.torrent-search__table--kinorium),
	.torrent-search__table:not(.torrent-search__table--kinorium) {display: block; overflow-x: auto; -webkit-overflow-scrolling: touch;}
	.torrent-table:not(.torrent-search__table--kinorium) thead,
	.torrent-search__table:not(.torrent-search__table--kinorium) thead {display: none;}
	.torrent-table:not(.torrent-search__table--kinorium) tbody,
	.torrent-search__table:not(.torrent-search__table--kinorium) tbody {display: block;}
	.torrent-table:not(.torrent-search__table--kinorium) tr,
	.torrent-search__table:not(.torrent-search__table--kinorium) tr {display: block; margin-bottom: 10px; border: 1px solid var(--bdc); border-radius: 8px; padding: 10px; position: relative; background: var(--bg);}
	.torrent-table:not(.torrent-search__table--kinorium) td,
	.torrent-search__table:not(.torrent-search__table--kinorium) td {display: block; text-align: right; padding: 8px 8px 8px 110px; position: relative; border-bottom: 1px solid var(--bdc); word-break: break-word; overflow-wrap: break-word;}
	.torrent-table:not(.torrent-search__table--kinorium) td:last-child,
	.torrent-search__table:not(.torrent-search__table--kinorium) td:last-child {border-bottom: none;}
	.torrent-table:not(.torrent-search__table--kinorium) td::before,
	.torrent-search__table:not(.torrent-search__table--kinorium) td::before {content: attr(data-label); position: absolute; left: 10px; font-weight: 600; color: var(--tt-fade); width: 95px; display: inline-block; top: 8px; text-align: left;}
	.torrent-name {max-width: 100%; text-align: left; padding-left: 110px; word-break: break-word; overflow-wrap: break-word;}
	.torrent-name::before {content: "Название:"; position: absolute; left: 10px; font-weight: 600; color: var(--tt-fade); width: 95px; display: inline-block; top: 8px; text-align: left;}
	.torrent-size::before {content: "Размер:"; width: 95px;}
	.torrent-seeds::before {content: "Сиды:"; width: 95px;}
	.torrent-links::before {content: "Скачать:"; width: 95px;}
	.magnet-btn, .torrent-btn, .theme-btn, .load-details-btn {display: inline-block; width: auto; margin: 2px; font-size: 11px; padding: 5px 8px; white-space: nowrap;}
	.torrent-search__table--kinorium .torrent-search__manual-embed .torrent-btn,
	.torrent-search__table--kinorium .torrent-search__grab.load-details-btn {
		display: inline-flex !important;
		width: 42px !important;
		min-width: 42px !important;
		height: 42px !important;
		padding: 0 !important;
		margin: 0 !important;
		white-space: normal;
	}
	.torrent-modal .modal-content {width: 95%; margin: 10px auto; max-height: 95vh;}
	.torrent-modal .modal-header h3 {font-size: 18px;}
	.details-table td:first-child {width: 70px; font-size: 12px;}
	.links-row a.full-width {padding: 8px; font-size: 12px; margin-bottom: 5px;}
	.details-section h4 {font-size: 14px;}
}