
/* BASIC LAYOUT
----------------------------------------------- */
.wrapper {min-width: 320px; position: relative;}
.wrapper::before {content: ''; position: absolute; left: 0; top: 0; 
	width: 100vw; height: 280px; background: var(--bg-gradient);}
.wrapper__container {max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 20; padding: 0 var(--indent);}
.header { --tt: var(--tt-dark); position: relative; z-index: 100; padding-top: 10px;}
.content {min-height: 80vh; position: relative;}
.footer {background-color: var(--bg-dark); color: var(--tt-dark); --tt: var(--tt-dark); padding-top: 10px;}
.footer__two {padding: 20px 0; margin-top: 10px; font-size: 14px; gap: 20px;
	border-top: 1px solid var(--bdc-dark); color: var(--tt-dark-fade);}

.scrolltop {position: fixed; width: 50px; height: 50px; right: -60px; bottom: 10px;
	z-index: 990; border-radius: 50%; font-size: 20px; opacity: 0; transition: right 0.2s, opacity 0.2s;}
.scrolltop.is-active {right: 10px; opacity: 1;}


/* HEADER
----------------------------------------------- */
.logo {display: inline-flex; flex-direction: column; justify-content: center; height: 60px; text-align: left;
	padding-left: 80px; position: relative; font-weight: 700; font-size: 20px; letter-spacing: 1px; line-height: 1;}
.logo__subtitle {color: var(--yellow); font-size: 30px; letter-spacing: 3px; text-transform: uppercase;}
.logo::before {background: url(../images/logo.svg) center center / 50px no-repeat; 
	width: 63px; height: 63px; content: ''; position: absolute; left: 0; top: 0;}
.header__caption {margin-left: 20px; padding-left: 20px; border-left: 1px solid var(--bdc-dark); 
	font-size: 12px; line-height: 1.4; color: var(--tt-dark-fade); -webkit-line-clamp: 3;}

.theme-toggle {margin-left: 20px; font-size: 24px; min-width: 30px; height: 30px;}
.dt-is-active .theme-toggle::before {content:"\f186";}
.header__btn-login {margin-left: 20px; border-radius: 20px;}

.search-block {position: relative; width: 320px;}
.search-block__input, .search-block__input:focus {border-radius: 20px; padding: 0 50px 0 25px; 
	border: 0; box-shadow: none; background-color: rgba(255,255,255,0.15); color: #fff; box-shadow: var(--bsh-item);}
.search-block__input:not(:focus)::placeholder {color: #fff; opacity: 1; font-size: 14px;}
.search-block__btn {position: absolute !important; right: 0; top: 0; width: 60px; border-radius: 20px; font-size: 16px; color: #fff;}
.search-is-active {overflow: hidden; padding-right: var(--scrWidth);}
.search-is-active .search-block__input, .search-is-active .search-block__btn {position: relative; z-index: 101;}
.search-is-active .search-block::before {content: ''; position: fixed; inset: 0; z-index: 100; 
	background-color: rgba(0,0,0,0.6); backdrop-filter: blur(10px);}


/* NAV, HERO
----------------------------------------------- */
.header__menu {gap: 8px; position: relative; border-top: 1px solid rgba(255,255,255,0.25); 
	margin-top: 10px; width: 100%; padding: 20px 0;}
.header__menu > li {position: relative; padding-bottom: 8px;}
.header__menu > li > a {
	padding: 12px 16px; 
	display: flex; 
	align-items: center; 
	font-size: 13px; 
	gap: 8px; 
	text-transform: uppercase; 
	font-weight: 600;
	border-radius: 8px;
	position: relative;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
	border: 1px solid rgba(255,255,255,0.12);
	backdrop-filter: blur(10px);
	margin: 0 4px;
	min-height: 44px;
}
.header__menu > li > a::before {
	color: var(--orange);
	transition: all 0.3s ease;
	filter: drop-shadow(0 0 4px rgba(255, 152, 0, 0.3));
}

.header__menu > li > a:hover {
	background: linear-gradient(135deg, var(--accent-violet) 0%, rgba(106, 90, 205, 0.8) 100%);
	border-color: var(--accent-violet);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(106, 90, 205, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
	color: #fff;
}

.header__menu > li > a:hover::before {
	color: #fff;
	filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
	transform: scale(1.1);
}

.header__menu > li > a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--blue), var(--accent-violet));
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.header__menu > li > a:hover::after {
	width: 80%;
}
.header__menu-submenu {position: absolute; top: 100%; left: 0; z-index: 1000; 
	background-color: var(--bg); box-shadow: var(--bsh); width: 700px; padding: 16px 18px; --tt: var(--tt);
	display: grid; gap: 4px 16px; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); display: none;}
.header__menu-submenu a {display: flex; align-items: center; gap: 8px; padding: 4px 6px;}
.header__menu-submenu a::before {content:"\f111"; font-weight: 300; font-family:'Font Awesome 5 Pro';
	font-size: 8px; color: var(--green);}
.header__menu-has-submenu--disabled .header__menu-caret {display: none;}
.header__menu-has-submenu > a::after {content:"\f078"; font-weight: 300; font-family:'Font Awesome 5 Pro';}
.header__menu > li:hover .header__menu-submenu,
.header__menu-submenu:hover {display: grid;}
.header__menu > li.header__menu-has-submenu--disabled:hover .header__menu-submenu {display: none;}
.header__menu-hidden a:hover, .theme-toggle:hover {background-color: var(--accent-violet); color: #fff;}

/* SERVICE MENU (пункт основного меню на десктопе)
----------------------------------------------- */
.service-menu-item {position: relative; display: flex; align-items: center;}
.service-menu-item > .js-service-menu-toggle {font-size: 16px; color: var(--tt-dark); 
	background-color: rgba(255,255,255,0.1); border-radius: 8px; padding: 12px 16px; 
	transition: all 0.3s ease; min-height: 44px; display: flex; align-items: center; justify-content: center;}
.service-menu-item > .js-service-menu-toggle:hover {background-color: var(--accent-violet); color: #fff;}
.service-menu__dropdown {position: absolute; top: 100%; right: 0; z-index: 1000; 
	background-color: var(--bg); box-shadow: var(--bsh); min-width: 280px; padding: 15px 0;
	opacity: 0; visibility: hidden; transform: translateY(-10px); 
	transition: all 0.3s ease; --tt: var(--tt); list-style: none;}
.service-menu-item.is-active .service-menu__dropdown {opacity: 1; visibility: visible; transform: translateY(0);}
.service-menu__dropdown li {margin: 0;}
.service-menu__dropdown a {display: block; padding: 8px 20px; font-size: 14px; 
	color: var(--tt); transition: all 0.2s ease;}
.service-menu__dropdown a:hover {background-color: var(--accent-violet); color: #fff;}

/* SERVICE MENU в мобильном меню (всегда открыт и стилизован по-другому)
----------------------------------------------- */
.mobile-menu__content .service-menu-item > .js-service-menu-toggle {
	display: none; /* Скрываем кнопку гамбургера в мобильном */}
.mobile-menu__content .service-menu__dropdown {
	position: static; opacity: 1; visibility: visible; transform: none;
	box-shadow: none; padding: 15px 0; margin: 20px 0 10px 0;
	border-top: 1px solid var(--bdc-dark); border-bottom: 1px solid var(--bdc-dark);
	background-color: var(--bg-darker); min-width: auto;}
.mobile-menu__content .service-menu__dropdown a {
	color: var(--tt-fade-2); font-size: 12px; padding: 0 20px; height: 32px; line-height: 32px;
	border-left: 3px solid transparent; transition: all 0.2s ease;}
.mobile-menu__content .service-menu__dropdown a:hover {
	background-color: var(--bg); color: var(--tt); border-left-color: var(--accent-violet);}

.hero {color: var(--tt-dark); padding-bottom: 140px; position: relative; background: var(--bg-gradient); margin-bottom: -100px;}
.hero__title {font-size: 44px; font-weight: 700; line-height: 1; margin-bottom: 30px; max-width: 750px;}
.hero__title span {position: relative; display: inline-block; isolation: isolate; margin-left: 10px;}
.hero__title span::before {content: ''; position: absolute; z-index: -1; inset: -5px; top: 0; background-color: var(--red);}
.hero__text {max-width: 550px; font-size: 20px; color: var(--tt-dark-fade);}
.hero__text ul {list-style: none; padding-left: 0; margin: 20px 0;}
.hero__text ul li {position: relative; padding-left: 35px; margin-bottom: 12px; line-height: 1.4;}
.hero__text ul li::before {
	content: "\f00c";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	color: var(--green);
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
	text-shadow: 0 0 6px rgba(40, 167, 69, 0.4);
}
.hero__inner {position: relative; isolation: isolate;}
.hero--decor .hero__inner::before {content: ''; width: 400px; height: 400px; background-color: var(--green); 
	border-radius: 50%; position: absolute; right: 80px; bottom: -300px; z-index: -1;
	box-shadow: 0 0 0 40px rgba(255,255,255,0.15), 0 0 0 80px rgba(255,255,255,0.1); animation: pulse 4s ease-in-out infinite;}
.hero--decor .hero__inner::after {content: ''; height: 320px; width: 320px; position: absolute; 
	filter: drop-shadow(0 60px 40px rgba(0,0,0,0.5)); right: 70px; bottom: -130px; 
	background: url(../images/droid.png) 0 0 / contain no-repeat; z-index: -1;}
.hero__title:last-child {margin-bottom: 0;}

/* HERO CATEGORY STYLES 
----------------------------------------------- */
.hero__menu {
	gap: 12px;
	margin-top: 25px;
	padding: 20px 0;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.hero__menu-wrap {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
}

.hero__menu {
	flex: 1 1 100%;
}

.hero__menu-toggle {
	display: none;
	margin: 0 auto;
	align-self: center;
	align-items: center;
	gap: 8px;
	padding: 2px 0;
	border: 0;
	background: transparent;
	color: var(--yellow);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	line-height: 1.2;
	cursor: pointer;
	transition: color 0.2s ease, opacity 0.2s ease;
	position: relative;
	animation: heroMenuHint 2.8s ease-in-out infinite;
}

.hero__menu-toggle:hover {
	color: #fff;
	opacity: 1;
	background: transparent;
}

.hero__menu-toggle:focus,
.hero__menu-toggle:active {
	background: transparent;
	box-shadow: none;
}

.hero__menu-toggle-icon {
	transition: transform 0.3s ease;
	animation: heroMenuArrow 1.6s ease-in-out infinite;
}

.hero__menu-toggle.is-open .hero__menu-toggle-icon {
	transform: rotate(180deg);
	animation: none;
}

.hero__menu-toggle::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -6px;
	width: 120px;
	height: 2px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, var(--yellow), transparent);
	opacity: 0.7;
}

@keyframes heroMenuHint {
	0%, 100% {opacity: 0.7; transform: translateY(0);}
	50% {opacity: 1; transform: translateY(-2px);}
}

@keyframes heroMenuArrow {
	0%, 100% {transform: translateY(0);}
	50% {transform: translateY(3px);}
}

/* Keep nested category levels from breaking the hero menu layout */
.hero__menu,
.hero__menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.hero__menu ul,
.hero__menu li {
	display: contents;
}

.hero__menu.is-collapsed .hero__menu-item--overflow {
	display: none;
}

/* Скрываем пустое меню категорий */
.hero__menu:empty {
	display: none;
	margin: 0;
	padding: 0;
}

.hero__menu:not(:has(li)) {
	display: none;
	margin: 0;
	padding: 0;
}

.hero__menu a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 25px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	position: relative;
	overflow: hidden;
	text-transform: capitalize;
}

.hero__menu a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.hero__menu a:hover::before {
	left: 100%;
}

.hero__menu a:hover {
	background: linear-gradient(135deg, var(--blue) 0%, var(--accent-violet, #6A5ACD) 100%);
	border-color: var(--blue);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(63, 134, 214, 0.3), 0 0 0 1px rgba(255,255,255,0.15);
	color: #fff;
}

.hero__menu a:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(63, 134, 214, 0.2);
}

/* ENHANCED HERO TEXT FOR CATEGORY PAGES */
.hero[data-page="category"] .hero__text,
.hero[data-page="tags"] .hero__text {
	max-width: 680px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--tt-dark-fade);
	margin-top: 20px;
	padding: 20px 0;
	position: relative;
}

/* Корректировка отступов текста при скрытом меню */
.hero[data-page="category"]:has(.hero__menu:empty) .hero__text,
.hero[data-page="category"]:has(.hero__menu:not(:has(li))) .hero__text {
	margin-top: 30px;
}

.hero[data-page="category"] .hero__text::before,
.hero[data-page="tags"] .hero__text::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--green));
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(63, 134, 214, 0.3);
}

/* TAG PAGE SPECIFIC STYLES */
.hero--tags {
	background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #1BD2D8 100%);
	position: relative;
}

.hero--tags .hero__inner::before {
	background: linear-gradient(135deg, var(--orange), var(--yellow));
	animation: pulse 4s ease-in-out infinite;
}

.hero--tags .hero__inner::after {
	filter: drop-shadow(0 60px 40px rgba(247, 147, 30, 0.3));
}

@keyframes pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15),
		            0 0 0 0 rgba(255, 255, 255, 0.1);
	}
	50% {
		box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.05),
		            0 0 0 90px rgba(255, 255, 255, 0.02);
	}
}

/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 768px) {
	.hero__menu {
		gap: 8px;
		margin-top: 20px;
		padding: 15px 0;
	}
	
	.hero__menu a {
		padding: 10px 15px;
		font-size: 13px;
		border-radius: 20px;
	}
	
	.hero[data-page="category"] .hero__text,
	.hero[data-page="tags"] .hero__text {
		font-size: 16px;
		margin-top: 15px;
		padding: 15px 0;
	}
}


/* SECTION
----------------------------------------------- */
.sect {margin-bottom: 60px;}
.sect__header {margin-bottom: 30px; gap: 10px;}
.sect__title {font-size: 26px; font-weight: 700;}
.sect__link {color: var(--blue); gap: 10px;}
.sect--white {padding: 30px; background-color: var(--bg); box-shadow: var(--bsh-item);}
.sect--bg {background: var(--bg-gradient), url(../images/bg.jpg) left center / cover no-repeat; 
	padding-top: 40px; padding-bottom: 40px; background-blend-mode: hard-light;}
.sect--bg .sect__header {color: var(--tt-dark); --blue: var(--tt-dark);}
.scroller__btn {width: 40px; border-radius: 50%; padding: 0; font-size: 18px;}
.scroller__btn--next {margin-right: 20px;}
.scroller__btn--prev {pointer-events: none; opacity: 0.5;}
.scroller__btn--prev.is-active {pointer-events: auto; opacity: 1;}
.scroller__content {display: flex; gap: 20px; overflow-x: auto; overflow-y: hidden; 
	scroll-snap-type: x mandatory; scroll-behavior: smooth;}
.scroller__content {scrollbar-width: none; scrollbar-color: var(--red) var(--bg);}
.scroller__content::-webkit-scrollbar {width: 12px; height: 8px; display: none;}
.scroller__content::-webkit-scrollbar-thumb {border-radius: 0; background-color:var(--red); border: 0;}
.scroller__content::-webkit-scrollbar-track {background-color:var(--bg);}
.scroller__content .item-ext {width: 353px; flex-shrink: 0; scroll-snap-align: start; border-radius: 10px;}

/* SPEEDBAR (хлебные крошки) - базовые стили */
.speedbar {
	margin-bottom: -20px;
}
.speedbar::before {margin-right: 8px; color: var(--yellow);}

/* SPEEDBAR стилизованные - только для категорий и тегов */
.speedbar--styled {
	color: var(--tt-dark); 
	--tt: var(--tt-dark); 
	font-size: 15px; 
	margin: 20px 0 15px 0;
	padding: 12px 20px;
	background-color: rgba(255,255,255,0.15);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	box-shadow: var(--bsh-item);
	font-weight: 500;
	letter-spacing: 0.3px;
	position: relative;
	z-index: 50;
	display: inline-block;
}
.speedbar--styled a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.2s ease;
}
.speedbar--styled a:hover {
	color: var(--yellow);
	text-decoration: underline;
}
/* Стилизуем разделители в хлебных крошках для стилизованной версии */
.speedbar--styled span {
	color: var(--yellow);
	margin: 0 8px;
	font-weight: 600;
}
.site-desc {display: grid; grid-gap: 20px; line-height: 1.6; color: var(--tt-fade-2); background-color: var(--bg); 
	box-shadow: var(--bsh-item); padding-top: 40px; padding-bottom: 40px;}
.site-desc .sect__title {color: var(--tt); font-size: 44px; font-weight: 700;}
.site-desc h2, .site-desc h3 {font-size: 26px; color: var(--tt); line-height: 1.3; margin-bottom: 15px;}
.site-desc a {text-decoration: underline; color: var(--blue);}
.site-desc ul li {position: relative; padding-left: 25px; margin-left: 25px;}
.site-desc ul li::before {content:"\f00c"; font-weight: 300; font-family:'Font Awesome 5 Pro'; 
	color: var(--green); position: absolute; left: 0; top: 0;}
.sect-desc__section {padding-top: 15px;}
.sect-desc__img {width: 130px; height: 130px; border-radius: 50%; margin-right: 15px; float: left;
	box-shadow: 0 0 0 2px var(--bdc); border: 10px solid var(--bg); background-color: #000;}


/* ITEM
----------------------------------------------- */
.item {background-color: var(--bg); box-shadow: var(--bsh-item);}
.item__poster {height: 150px; border-radius: 10px 10px 0 0; overflow: hidden;}
.item__img, .listing-card__img {width: 74px; aspect-ratio: 1 / 1; border-radius: 50%; border: 5px solid var(--bg); box-shadow: 0 0 0 2px var(--bdc);}
.item__link, .listing-card__link {display: block;}
.item__title, .listing-card__title {font-size: 16px; font-weight: 700;}
.item__category, .listing-card__category {font-size: 11px; text-transform: uppercase; color: var(--tt-fade);}
.item__meta, .listing-card__meta {font-size: 14px; color: var(--tt-fade-2);}
.item__desc {margin-top: 10px; font-size: 13px; color: var(--tt-fade); line-height: 1.4;
	overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; text-overflow: ellipsis;
	max-height: 2.8em;}
.item__desc--empty {min-height: 2.8em;}
.item__labels-group, .listing-card__labels {gap: 5px; position: absolute; left: 5px; top: 5px; z-index: 2;}
.item__label, .item__rating, .listing-card__label, .listing-card__rating {width: 30px; height: 30px; background-color: var(--green); color: #fff;
	display: flex; justify-content: center; align-items: center; font-size: 12px; font-weight: 600; border-radius: 15px;}
.item__label, .listing-card__label {background-color: var(--blue); width: 40px; font-weight: 400; border-radius: 0; height: 20px; font-weight: bold;}
.item__label--green {background-color: var(--green);}
.item__label--red {background-color: var(--red); width: 60px;}
.item__label--yellow {background-color: var(--yellow); color: #000; width: 80px;}
.listing-card__label--green {background-color: var(--green);}
.listing-card__label--red {background-color: var(--red); width: 60px;}
.listing-card__label--yellow {background-color: var(--yellow); color: #000; width: 80px;}
.item__meta-item, .listing-card__meta-item {gap: 5px;}
.item__text {font-size: 14px; color: var(--tt-fade);}

.item-ext .item__poster::before {content: ''; position: absolute; inset: 0; 
	background-color: rgba(19, 46, 75, 0.5); z-index: 1;}
.item-ext__bottom {padding: 20px; gap: 20px;}
.item-ext .item__category {margin: 3px 0 6px 0;}
.item-ext .item__rating {box-shadow: 0 0 0 5px var(--bg); position: absolute; right: 20px; bottom: 15px; z-index: 2;}

.item-card {padding: 20px; text-align: center; border-radius: 10px;}
.item-card .item__rating, .item-card .listing-card__rating {box-shadow: 0 0 0 6px var(--bg); transform: translate(-50%,0);
	position: absolute; left: 50%; bottom: -15px;}
.item-card .item__img, .item-card .listing-card__img {margin: 15px auto; width: 100%; max-width: 140px; border-width: 10px;}
.item-card .item__title, .item-card .listing-card__title {font-size: 16px; line-height: 1.2; margin: 15px 0 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.item-card .item__label, .item-card .listing-card__label {border-radius: 0;}
.item-card .item__meta, .item-card .listing-card__meta {margin-top: 20px; text-align: left; border-top: 2px dotted var(--bdc); padding-top: 20px;}
.listing-card:hover .listing-card__img {border-color: var(--blue);}

/* RELATED CARDS - Mobile First
----------------------------------------------- */
.related-card {
	padding: 18px; 
	text-align: center; 
	background: var(--bg); 
	border-radius: 16px; 
	border: 2px solid var(--bdc);
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.related-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 2px 12px rgba(77, 144, 254, 0.2);
	border-color: var(--blue);
	background: var(--bg-darker);
}

.related-card__img {
	margin: 0 auto 15px;
	width: 100%;
	max-width: 90px;
	border-radius: 18px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.related-card:hover .related-card__img {
	transform: scale(1.03);
}

.related-card__title {
	font-size: 15px;
	line-height: 1.3;
	margin: 0 0 8px;
	font-weight: 600;
	color: var(--tt);
	transition: color 0.3s ease;
	min-height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.related-card:hover .related-card__title {
	color: var(--blue);
}

.related-card__category {
	font-size: 11px;
	color: var(--accent-violet);
	background: rgba(106, 90, 205, 0.12);
	padding: 3px 10px;
	border-radius: 12px;
	display: inline-block;
	margin-bottom: 12px;
	font-weight: 500;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.related-card__meta {
	margin-top: 15px;
	padding-top: 12px;
	border-top: 1px solid var(--bdc);
	font-size: 11px;
	color: var(--tt-fade);
	gap: 12px;
	justify-content: center;
	text-align: center;
}

.related-card__meta-item {
	padding: 4px 8px;
	background: rgba(255,255,255,0.06);
	border-radius: 8px;
	font-weight: 500;
	transition: background 0.3s ease;
	flex: 0 0 auto;
	white-space: nowrap;
	position: relative;
	padding-left: 18px;
}

.related-card__meta-item:first-child::before {
	content: "\f0e7";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 10px;
	color: var(--blue);
}

.related-card__meta-item:last-child::before {
	content: "\f233";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 10px;
	color: var(--green);
}

.related-card:hover .related-card__meta-item {
	background: rgba(255,255,255,0.1);
}

/* Tablet и Desktop версии */
@media (min-width: 768px) {
	.related-card {
		padding: 10px;
	}
	
	.related-card__img {
		max-width: 100px;
		margin-bottom: 18px;
	}
	
	.related-card__title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	
	.related-card__category {
		font-size: 12px;
		padding: 4px 12px;
		margin-bottom: 15px;
	}
	
	.related-card__meta {
		font-size: 12px;
		gap: 15px;
	}
	
	.related-card__meta-item {
		padding: 5px 10px;
		padding-left: 22px;
		min-width: 70px;
	}
	
	.related-card__meta-item:first-child::before,
	.related-card__meta-item:last-child::before {
		font-size: 11px;
		left: 6px;
	}
}

.item-short {padding: 20px; gap: 15px 20px; padding-bottom: 10px; border-radius: 10px;}
.item-short .item__text {margin-top: 6px; -webkit-line-clamp: 3;}
.item-short .item__meta {border-top: 2px dotted var(--bdc); padding-top: 10px; width: 100%; gap: 10px;}
.item-short .item__meta-item:first-child::after {content: ''; width: 4px; height: 4px; border-radius: 50%; 
	margin-left: 10px; background-color: var(--tt-fade); display: inline-block; vertical-align: middle; opacity: 0.5;}


/* FOOTER, PAGINATION
----------------------------------------------- */
.footer__soc {gap: 20px;}
.footer__soc-item {display: grid; place-items: center; height: 30px; width: 30px; border-radius: 50%; background-color: #2daae1;}
.vk {background-color: #1877f2;}
.yt {background-color: #df1111;}
.footer__soc img {width: 15px; height: 15px; filter: invert(1);}
.footer__text {line-height: 1.5;}
.footer__menu {gap: 10px 40px;}

.pagination {gap: 20px 60px; padding-top: 0px;}
.pagination a, .pagination span {display: grid; place-items: center; 
	height: 36px; min-width: 36px; padding: 0 10px; border-radius: 18px; border: 2px solid var(--bdc);}
.pagination__btn-loader {width: 100%;}
.pagination__btn-loader a, .pagination__btn-loader span {height: 40px; border-radius: 0;
	background-color: rgba(0,0,0,0.03); color: var(--tt-fade-2); border: 0; width: 440px;}
.pagination__pages {gap: 10px 10px; font-size: 14px;}
.pagination__pages span:not(.nav_ext) {background-color: var(--green); color: #fff; border-color: var(--green);}



/* INNER PAGE
----------------------------------------------- */
.page__cols, .app-entry__cols {display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 20px;}
.page__cols-main, .app-entry__main {background-color: var(--bg); box-shadow: var(--bsh-item); padding: 30px; padding-top: 20px; border-radius: 10px;}
.page__header, .app-entry__header {display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 20px 20px; 
	grid-template-areas: "ptitle ptitle" "pleft pinfo" "pctrl pctrl";}
.page__header-left {grid-area: pleft;}
.page__header-title {grid-area: ptitle;}
.page__header-info {grid-area: pinfo; align-self: center; position: relative;}
.page__header-ctrl {grid-area: pctrl; gap: 10px 20px;}
.page .sect {margin-bottom: 30px;}

.page__img {width: 180px; height: 180px; border-radius: 12px; overflow: hidden;}
.page__header-title h1 {font-size: 24px; font-weight: 700;}
.page__header-title h1 a {margin-left: 10px; font-size: 16px; color: var(--blue);}
.page__info-table {width: calc(100% - 140px); font-size: 15px; border-spacing: 0 2px;}
.page__info-table td {padding: 3px;}
.page__info-table tr:nth-child(even) {background-color: rgba(0,0,0,0.03);}
.page__info-table td:first-child {font-weight: 700; width: 150px; position: relative; padding-left: 30px;}
.page__info-table td:first-child::before {color: var(--blue); position: absolute; left: 5px; top: 5px;}
.page__info-table td:last-child {text-align: right; word-wrap: break-word;}
.page__info-table a {color: var(--blue); text-decoration: underline;}
.page__btn-dl {width: 180px;}
.page__header-ctrl > a:not([class]) {background: none; border: 2px solid var(--blue); color: var(--blue); height: 40px; padding: 0 20px;
	font-size: 12px; font-weight: 600; text-transform: uppercase; display: flex; align-items: center;}
.page__rating a {display: flex; align-items: center; justify-content: center; height: 30px; padding: 0 10px; 
	background-color: var(--green); color: #fff; gap: 10px; min-width: 55px;}
.page__rating a + a {background-color: var(--red);}
.page__rating {align-self: center;}
.page__fav a {position: absolute; right: 0; top: 120px; border: 2px solid var(--bg-darker); 
	display: flex; align-items: center; justify-content: center; height: 40px; border-top: 0; padding-top: 2px;
	color: var(--tt-fade-2); line-height: 1.3; font-size: 13px; width: 120px; gap: 5px; white-space: nowrap;
	border-radius: 0 0 12px 12px; background-color: var(--bg);}
.page__fav a .fal, .page__fav a::before {color: var(--blue);}
.page__rating-score {width: 120px; height: 120px; position: absolute; right: 0; top: 0;
	background-color: var(--bg-darker); text-align: center; padding: 15px 20px; 
	border-radius: 12px 12px 0 0;}
.page__rating-score-caption {font-size: 10px; text-transform: uppercase; font-weight: 600;}
.page__rating-score-value {width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
	position: relative; isolation: isolate; font-size: 24px; margin: 0 auto; margin-top: 13px;}
.page__rating-score-value::before {content: ''; position: absolute; z-index: -2; inset: 0; border-radius: 50%; 
	background: conic-gradient(from 0deg, var(--green) 0%, var(--green) var(--p), var(--red)  var(--p));}
.page__rating-score-value::after {content: ''; position: absolute; z-index: -1; 
	background-color: var(--bg); inset: 5px; border-radius: 50%;}
.page__rating-votes {font-size: 12px; color: var(--tt-fade); white-space: nowrap; 
	position: absolute; right: 0; top: -18px;}
.page__rating-votes span {margin-right: 5px;}
.page__rating-stars {align-self: center;}

/* Шкала популярности */
.page__popularity-scale {
	margin-top: 10px;
	width: 100%;
	align-self: center;
}

.page__popularity-bar {
	position: relative;
	height: 40px;
	background: linear-gradient(90deg, rgba(76, 175, 80, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 87, 34, 0.2) 100%);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 250px; /* Минимальная ширина для консистентности */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
	.page__popularity-bar {
		height: 36px; /* Немного меньше высота */
		min-width: 220px; /* Меньше минимальная ширина */
	}
}

@media (max-width: 480px) {
	.page__popularity-bar {
		height: 32px; /* Еще меньше высота */
		min-width: 200px; /* Меньше минимальная ширина */
		font-size: 14px; /* Меньше шрифт */
	}
}

.page__popularity-fill {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.8s ease-in-out;
	border-radius: 20px;
}

/* Положительный рейтинг - зеленая заливка слева направо */
.page__popularity-fill.positive {
	left: 0;
	background: linear-gradient(90deg, #66BB6A, #4CAF50 50%, #388E3C);
}

/* Отрицательный рейтинг - красная заливка справа налево */
.page__popularity-fill.negative {
	right: 0;
	background: linear-gradient(90deg, #E53935, #F44336 50%, #FF5722);
}

.page__popularity-text {
	position: relative;
	z-index: 2;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.page__popularity-percent {
	font-weight: 700;
}

.page__scr, .app-entry__gallery {margin: 0 -30px; padding: 30px;}
.page__trailer {margin: 0 -30px; margin-top: -30px;}
.page__scr ul, .app-entry__gallery ul {display: flex; justify-content: space-between; flex-wrap: wrap; width: 100%; gap: 20px;}
.page__scr li:nth-child(4) ~ li, .app-entry__gallery li:nth-child(4) ~ li {display: none;}
.page__scr li, .app-entry__gallery li {width: calc((100% - 60px)/4);}
.page__scr a, .app-entry__gallery a {display: block; position: relative;}
.page__scr a img, .app-entry__gallery a img {width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover;}
.page__scr a::before, .app-entry__gallery a::before {content:"\f00e"; font-family:'Font Awesome 5 Pro'; font-weight: 300; box-shadow: var(--bsh-item);
	width: 40px; height: 40px; display: grid; place-items: center; background-color: var(--bg); color: var(--tt); 
	position: absolute; left: 50%; top: 50%; margin: -20px 0 0 -20px; z-index: 5; border-radius: 50%; font-size: 18px;}
	
.page__text, .app-entry__text {margin-bottom: 20px;}
.page__message {padding: 10px; margin-bottom: 3px; font-size: 14px !important;}
.yellow {background-color: #ffecb3; color: #BF360C; border-left: 3px solid #BF360C;}
.blue {background-color: #e8eaf6; color: #1A237E; border-left: 3px solid #1A237E;}
.green {background-color: #e0f2f1; color: #004D40; border-left: 3px solid #004D40;}

.page__message + .page__dl, .page__message + .app-entry__download {margin-top: 20px;}
.page__dl-header {margin-bottom: 20px; position: relative;}
.page__dl-header img {height: 60px; width: 60px; margin-right: 26px; object-fit: cover; display: block;
	border-radius: 50%; border: 5px solid var(--bg); box-shadow: 0 0 0 2px var(--bdc);}
.page__dl-title {font-size: 16px; font-weight: 400;}
.page__dl-title span {display: block; font-size: 14px;}
.page__dl-header::before {content: ''; width: 34px; height: 34px; border-radius: 50%; 
	background: rgba(255,255,255,0.5) url(../images/verify.svg) center center / 22px no-repeat; 
	position: absolute; left: 42px; top: 50%; margin-top: -17px; backdrop-filter: blur(6px);}
.page__dl-content {margin: 0 -30px; padding: 20px 30px; gap: 10px; display: grid;}
.dl {padding: 10px; padding-left: 20px; gap: 10px 20px; background-color: var(--bg); box-shadow: var(--bsh-item); 
	isolation: isolate; position: relative; overflow: hidden; border-radius: 10px;}
.dl::after {content: ""; position: absolute; left: .25rem; right: .25rem; top: -30px; height: 3.75rem;
	margin-top: .25rem; background-size: 1rem 1rem; opacity: .05; z-index: -1;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBhdGggZmlsbD0nIzE0MjYzNicgZD0nTTIsOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwyLDhabTgtOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwxMCwwWicvPjwvc3ZnPg==);
}
.dl::before {font-size: 24px; width: 40px; height: 40px; display: grid; place-items: center; 
	border-radius: 50%; border: 2px solid var(--bdc); background-color: var(--bg);}
.dl__btn {width: 200px; border-radius: 10px;}
.dl__title {font-weight: 700;}
.dl__meta {font-size: 12px; color: var(--tt-fade); margin-top: 5px;}
.dl__extension {font-weight: 700; color: var(--blue);}
	
@media screen and (min-width: 1220px) {
	.page__cols-side .sect:first-child .sect__title, .app-entry__side .sect:first-child .sect__title {color: #fff;}
	.page__cols-side .d-grid-items-3, .page__cols-side .d-grid-items-5, .app-entry__side .d-grid-items-3, .app-entry__side .d-grid-items-5 {gap: 10px;}
	.page__cols-side .d-grid-items-5, .app-entry__side .d-grid-items-5 {grid-template-columns: repeat(2,minmax(0,1fr));}
	.page__cols-side .item-card .item__title, .app-entry__side .item-card .item__title {font-size: 15px; margin-top: 10px;}
	.page__cols-side .item-card .item__img, .app-entry__side .item-card .item__img {margin-top: 0; margin-bottom: 0;}
	.page__cols-side .item-card .item__meta, .app-entry__side .item-card .item__meta {margin: -10px; padding-top: 10px; margin-top: 10px;}
	
	/* Related cards в sidebar */
	.page__cols-side .related-card, .app-entry__side .related-card {
		padding: 16px;
	}
	
	.page__cols-side .related-card__img, .app-entry__side .related-card__img {
		max-width: 80px;
		margin-bottom: 12px;
	}
	
	.page__cols-side .related-card__title, .app-entry__side .related-card__title {
		font-size: 14px;
		margin-bottom: 8px;
	}
	
	.page__cols-side .related-card__category, .app-entry__side .related-card__category {
		font-size: 11px;
		padding: 2px 8px;
		margin-bottom: 10px;
	}
	
	.page__cols-side .related-card__meta, .app-entry__side .related-card__meta {
		font-size: 10px;
		gap: 8px;
	}
	
	.page__cols-side .related-card__meta-item, .app-entry__side .related-card__meta-item {
		padding: 3px 6px;
		padding-left: 16px;
		min-width: 50px;
	}
	
	.page__cols-side .related-card__meta-item:first-child::before,
	.page__cols-side .related-card__meta-item:last-child::before,
	.app-entry__side .related-card__meta-item:first-child::before,
	.app-entry__side .related-card__meta-item:last-child::before {
		font-size: 9px;
		left: 3px;
	}
}

.page__info-table {word-wrap: break-word;}
.page--dl .page__header-ctrl > a:not([class]) {width: 180px; justify-content: center; height: 60px;}
.page--dl .page__rating-score {width: auto; height: auto; background: none; padding: 0; position: static;}
.page--dl .page__rating-score > * {margin: 0;}
.page--dl .page__btn-dl2 {height: 60px; border-radius: 10px;}
.page__btn-dl--not-ready {pointer-events: none; opacity: 0.5;}
.page__rkl {grid-area: rkl; text-align: center; margin: 10px 0;}
.page--dl .page__header {grid-template-areas: "ptitle ptitle" "rkl rkl" "pleft pinfo" "progress progress" "pctrl pctrl";}

/* Progress Bar Styles */
.page__download-progress {
	grid-area: progress;
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 20px 0;
	padding: 15px;
	background: var(--bg-darker);
	border-radius: 12px;
	border: 1px solid var(--bdc-dark);
}

.progress-container {
	flex: 1;
	position: relative;
}

.progress-bar {
	height: 30px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 9px;
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #ff9800 0%, #1bd2d8 100%);
	border-radius: 9px;
	transition: width 0.3s ease;
	position: relative;
}

.progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.progress-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	color: white;
	font-weight: 700;
	text-transform: uppercase;
	z-index: 10;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
	white-space: nowrap;
}

.progress-timer {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff9800 0%, #1bd2d8 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 18px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	position: relative;
	overflow: hidden;
}

.progress-timer::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	border-radius: 50%;
	background: var(--bg-darker);
	z-index: 1;
}

.progress-timer > * {
	position: relative;
	z-index: 2;
}


/* 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;}
.full-text a {text-decoration: underline; color: var(--blue);}
.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: 15px;}
.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: 12px; height: 12px; 
	background: linear-gradient(135deg, #ff9800 0%, #1bd2d8 100%) !important;
	clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%) !important;
	position: absolute; top: 4px; left: 10px !important; transition: all 0.3s ease;}

/* Более специфичный селектор для page__text */
.page__text.full-text ul li:before, .app-entry__text.full-text ul li:before {content: ''; width: 12px; height: 12px; 
	background: linear-gradient(135deg, #ff9800 0%, #1bd2d8 100%) !important;
	clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%) !important;
	position: absolute; top: 4px; left: 10px !important; transition: all 0.3s ease;}
.full-text > ol {counter-reset: num;}
.full-text > ol li:before {content: counter(num); counter-increment: num; background-color: #fcc506; color: #000; 
	position: absolute; top: -3px; left: 17px; width: 24px; height: 30px; font-size: 14px; font-weight: 600;
	display: flex; justify-content: center; align-items: center; box-sizing: border-box;}
.page__tabs-panel.full-text > ol li:after, .app-entry__tabs-panel.full-text > ol li:after {content: ''; border: 10px solid transparent; border-left-color: #fcc506; 
	position: absolute; left: 41px; top: -3px; transform: scale(0.66,1.5); transform-origin: 0 0;}
.full-text ul li:hover:before, .page__text.full-text ul li:hover:before, .app-entry__text.full-text ul li:hover:before {transform: scale(1.15) rotate(15deg) !important; filter: brightness(1.2) !important;}
.full-text ul li + li, .full-text ol li + li {margin-top: 10px;}
.full-text table, .video-inside > * {width:100%;}
.full-text table tr td {padding:10px; border:2px solid #fff;}
.full-text table tr:nth-child(2n+1) {background: #004d40;} 

/* AUTHOR BLOCK
----------------------------------------------- */
.author-block {margin: 40px 0; padding: 25px; background-color: var(--bg-darker); 
	border-radius: var(--bdrs); border: 2px solid var(--bdc); position: relative; overflow: hidden;}
.author-block::before {content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; 
	background: var(--bg-gradient);}
.author-block__title {font-size: 20px; font-weight: 700; color: var(--tt); margin: 0 0 20px 0; 
	padding-left: 10px; position: relative;}
.author-block__title::before {content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); 
	width: 4px; height: 20px; background: var(--bg-gradient); border-radius: 2px;}
.author-block__inner {align-items: flex-start;}
.author-block__avatar {width: 80px; height: 80px; border-radius: 50%; overflow: hidden; 
	flex-shrink: 0; border: 3px solid var(--green); box-shadow: var(--bsh-item); margin-right: 5px;}
.author-block__avatar img {width: 100%; height: 100%; object-fit: cover;}
.author-block__content {padding-top: 5px; margin-left: 10px;}
.author-block__header {margin-bottom: 8px;}
.author-block__name {font-size: 22px; font-weight: 700; color: var(--tt); margin: 0;}
.author-block__status {display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--green);}
.author-block__status-icon {width: 8px; height: 8px; background-color: var(--green); border-radius: 50%; 
	animation: pulse-online 2s infinite ease-in-out;}
.author-block__status-text {font-weight: 500;}
.author-block__position {font-size: 16px; color: var(--tt-fade); margin-bottom: 12px; font-weight: 500;}
.author-block__description {font-size: 15px; line-height: 1.6; color: var(--tt-fade-2);}

/* AUTHOR BLOCK MOBILE
----------------------------------------------- */
@media (max-width: 768px) {
	.author-block__inner {flex-direction: column; align-items: center; text-align: center; gap: 15px;}
	.author-block__avatar {margin-right: 0; width: 100px; height: 100px;}
	.author-block__content {margin-left: 0; padding-top: 0;}
	.author-block__header {justify-content: center; margin-bottom: 10px;}
	.author-block__name {font-size: 20px;}
	.author-block__position {margin-bottom: 15px;}
	.author-block__description {font-size: 14px;}
}

/* Анимация мерцания для статуса "В сети" */
@keyframes pulse-online {
	0%, 100% {opacity: 1; transform: scale(1);}
	50% {opacity: 0.4; transform: scale(0.8);}
}
.full-text table tr:nth-child(1) {background-color:#004d40; border: 2px solid;}
.full-text table img:not(.emoji) {margin:0; max-width:350px}
.full-text > *:last-child {margin-bottom: 0;}
.video-responsive {padding-top: 60%; position: relative;}
.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: 15px;}
.full-text iframe {width: 100%; height: 400px; margin-bottom: 20px;}


/* COMMENTS
----------------------------------------------- */
.page__comments, .app-entry__comments {margin-top: 0px;}
.page__comments-title, .app-entry__comments-title {font-size: 24px; margin-bottom: 20px;}
.page__comments-info, .app-entry__comments-info {color: var(--tt-fade); display: block; margin: -15px 0 20px; font-size: 14px; padding-left: 23px; position: relative;}
.page__comments-info::before, .app-entry__comments-info::before {color: var(--ui-red); position: absolute; left: 0; top: 2px;}
.ac-form {margin-bottom: 30px; 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; display: flex; align-items: center;}
.ac-form__bottom button {position: static; order: 2; flex-shrink: 0; margin-left: auto;}
.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-toggle .ac-form__editor textarea {border-radius: 0;}
.ac-toggle, .ac-toggle .ac-form__editor {position: relative;}

.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: 140px; resize: none;}
.ac-form__editor .bb-editor textarea {height: 140px; line-height: 1.4; padding-bottom: 40px;}
.comments_subscribe + br, .ac-form .bb-editor + br {display: none;}
.ac-toggle .has-checkbox {display: none;}
.ac-toggle .ac-form__save-data .has-checkbox {display: block;}
.ac-form__save-data .has-checkbox {display: block;}

/* User data save checkbox */
.ac-form__save-data {
    margin: 15px 0;
    padding: 0 5px;
}

.ac-form__save-data .has-checkbox {
    padding-left: 60px;
    font-size: 14px;
    line-height: 1.4;
}

.ac-form__save-data .checkbox-label {
    color: var(--tt-fade);
}

.mass_comments_action {display: flex; 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: 50%;}
.mass_comments_action .bbcodes {border-radius: 0; padding: 0 10px;}

.comm__title {font-size: 18px; margin-bottom: 20px;}

.comm {margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--tt-gray);}
.comm__img {width: 40px; height: 40px; border-radius: 50%; margin-right: 15px;}
.comm__img::before {content: ''; width: 8px; height: 8px; border-radius: 50%; background-color: var(--ui-red); 
	position: absolute; right: -1px; top: -1px; z-index: 5; border: 2px solid var(--bg);}
.comm--online .comm__img::before {background-color: var(--ui-green);}
.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: var(--ui-fw-bolder);}
.comm__author, .comm__author a {color: var(--tt-colored); font-weight: 600; font-size: 14px;}
.comm__date {color: var(--tt-fade); font-size: 13px; margin-top: 2px;}
.comm__main {margin: 10px 0 6px 0;}
.comm__action {gap: 20px; font-size: 13px;}
.comm__action li, .comm__action li a {color: var(--tt-fade); cursor: pointer; gap: 8px; display: flex; align-items: center;}
.comm__ctrl, .comm__ctrl a {font-size: 15px; gap: 10px 15px; color: var(--tt-fade);}
.comm__ctrl li.has-checkbox {transform: scale(0.8,0.8); margin: 0 -10px 0 -5px;}
.comm__ctrl li.has-checkbox input {border-color: var(--tt-fade);}
.comm__rating {gap: 10px; font-size: 14px;}
.comm__rating::before {content: attr(data-text); display: inline;}
.comm__rating > * {display: flex; gap: 5px;}
.comm__rating > * > span:first-child {text-decoration: underline; color: var(--ui-green);}
.comm__rating > * + * > span:first-child {color: var(--ui-red);}

/* КОММЕНТАРИИ - ОКРАШИВАНИЕ ПО РЕЙТИНГУ
----------------------------------------------- */
.comm--positive {
	background: linear-gradient(135deg, rgba(40, 167, 69, 0.08) 0%, rgba(40, 167, 69, 0.04) 100%);
	border-radius: 8px;
	padding: 15px;
	margin: 10px 0;
}

.comm--negative {
	background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, rgba(220, 53, 69, 0.04) 100%);
	border-radius: 8px;
	padding: 15px;
	margin: 10px 0;
}


/* LOGIN
----------------------------------------------- */
.login {position: fixed; z-index: 999; left: 50%; top: 50%; transform: translate(-50%,-50%);
	background-color: var(--ui-bg); width: 440px; border: 10px solid var(--ui-bg-darker); 
	box-shadow: 0 15px 45px rgba(0,0,0,1); overflow-y: auto;
	 max-width: calc(100vw - 40px); max-height: calc(100vh - 40px);}
.login__header {padding: 20px 50px 25px 50px; border-bottom: 1px solid var(--ui-bdc); position: relative;}
.login__title {font-size: 24px; font-weight: var(--ui-fw-bolder);}
.login__caption {font-size: 13px; color: var(--ui-tt-fade); margin-top: 3px;}
.login__close {font-size: 23px; position: absolute; right: 10px; top: 10px; padding: 0; width: 40px; height: 40px;}
.login__content {display: grid; gap: 20px; padding: 25px 50px; padding-bottom: 50px; position: relative;}
.login__row, .login__row.fal, .login__row.fas {position: relative; display: grid; gap: 10px; justify-content: stretch;}
.login__row-caption a, .login__caption a {margin-left: 10px;}
.login__row::before {position: absolute; left: 2px; bottom: 0; width: 40px; height: 50px; 
	display: grid; place-items: center; opacity: 0.4; font-size: 18px;}
.login__input input {padding-left: 40px; border-radius: var(--ui-bdrs); height: 50px; line-height: 48px;}
.login__row button {width: 100%; height: 40px; border-radius: var(--ui-bdrs);}
.login__social {padding-top: 10px; text-align: center; gap: 10px; margin-bottom: -20px;}
.login__social-caption {font-size: 13px; color: var(--ui-tt-fade); width: 100%;}
.login__social a {padding: 0 10px; border-radius: 20px; position: relative; width: 40px; height: 40px; 
	overflow: hidden; color: #fff; display: flex; align-items: center; justify-content: center;}
.login__social a::before {content: ''; width: 40px; background: rgba(0,0,0,0); position: absolute; left: 0; top: 0; height: 100%;}
.login__social a img {position: absolute; left: 10px; top: 50%; height: 20px; width: 20px; z-index: 1; 
	display: block; filter: invert(1); transform: translateY(-50%);}
.login__social-vk {background-color: #587ba1;}
.login__social-ok {background-color: #ff9800;}
.login__social-fb {background-color: #3b5998;}
.login__social-ml {background-color: #2196f3;}
.login__social-gg {background-color: #f44336;}
.login__social-ya {background-color: #fc3f1d;}

.header__login-img {width: 40px; height: 40px; border-radius: 50%; cursor: pointer; margin-left: 20px;}
.header__favlink {font-size: 24px; display: block; position: relative; margin-left: 20px;}
.header__favlink span {background-color: var(--red); color: #fff; 
	font-size: 10px; position: absolute; right: -10px; top: -1px; min-width: 20px; text-align: center;}
.header__login-panel {position: absolute; right: 0; top: 100%; width: 240px; padding-bottom: 10px;
	background-color: var(--bg); box-shadow: var(--bsh); margin-top: 15px; --tt: var(--tt);}
.header__login-header {padding: 20px; color: var(--tt); font-weight: 700; gap: 20px; border-bottom: 2px solid var(--bdc);
	background-color: var(--bg-darker); margin-bottom: 10px;}
.header__login-avatar {width: 40px; height: 40px; border-radius: 50%;}
.header__login-group span {font-size: 12px; font-weight: 400; margin-top: 2px; 
	display: block; color: var(--tt-fade) !important;}
.header__login-menu a {display: flex; align-items: center; min-height: 30px; padding: 0 20px 0 0;}
.header__login-menu a::before {width: 40px; text-align: center; color: var(--green);}
.header__login-menu-border {border-top: 2px solid var(--bdc); margin-top: 10px; padding-top: 10px;}
.header__login-menu a span {font-size: 12px; margin-left: auto;}



/* ADAPTIVE, MOBILE MENU
----------------------------------------------- */
.overlay {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%; 
	opacity: 0.6; background-color: #000; cursor: pointer; display: none;}
.mobile-menu {width: 280px; height: 100%; overflow-x: hidden; overflow-y: auto;
	z-index: 999; position: fixed; left: -360px; top: 0; transition: left 0.4s; background-color: var(--bg);}
.mobile-menu.is-active {left: 0;}
body.mobile-menu-is-opened {overflow: hidden; width: 100%; height: 100%;}
.mobile-menu__header {padding: 10px; gap: 10px; background: var(--bg-gradient); --tt: var(--tt-dark);}
.mobile-menu__btn-close {font-size: 24px; width: 40px; height: 40px; margin-right: 0px;}
.mobile-menu__header .logo__subtitle {white-space: nowrap; font-size: 20px; letter-spacing: 2px;}
.mobile-menu__content .header__menu {margin: 0; padding: 20px 0; display: block;}
.mobile-menu__content .header__menu > li > a {
	height: 40px; 
	line-height: 40px; 
	padding: 0 20px;
	margin: 8px 20px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(5px);
	transition: all 0.3s ease;
}

.mobile-menu__content .header__menu > li > a:hover {
	background: linear-gradient(135deg, var(--accent-violet) 0%, rgba(106, 90, 205, 0.8) 100%);
	border-color: var(--accent-violet);
	color: #fff;
	transform: translateX(5px);
}
.mobile-menu__content .header__menu-submenu {width: 100%; height: auto; position: static; display: none;
	border-radius: 0; padding: 10px 0 15px; background-color: var(--bg-darker);
	opacity: 1; visibility: visible; transform: none; box-shadow: none; font-size: 13px;}
.mobile-menu__content .header__menu-submenu li {margin: 6px 20px;}
.mobile-menu__content .header__menu-submenu a {display: block; padding: 6px 10px; color: var(--tt);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.mobile-menu__content .header__menu-submenu a:hover {background-color: var(--bg); color: var(--tt);}
.mobile-menu__content .header__menu-submenu a::before {content: none;}
.mobile-menu__content .header__menu-has-submenu > a::after {content: none;}
.mobile-menu__content .header__menu-caret {margin-left: auto; font-size: 14px; transition: transform 0.2s ease;}
.mobile-menu__content .header__menu-has-submenu > a.is-open .header__menu-caret {transform: rotate(180deg);}
.mobile-menu__content .header__menu > li:hover .header__menu-submenu {display: none;}
.mobile-menu__content .header__menu-has-submenu.is-active > .header__menu-submenu {display: block;}

@media screen and (max-width: 1220px) {
	:root {--indent-negative: -20px; --indent: 20px;}
	body {background-image: none;}
	.wrapper {padding: 0; background-image: none; overflow: hidden;}
	.wrapper__container {max-width:1000px;}
	.header .header__menu {display: none;}
	.header__search {width: 100%; order: 10; margin: 10px 0 30px 0;}
	.header__btn-login {background-color: var(--bdc-dark); color: var(--tt-dark); 
		padding: 0 10px; font-weight: 400; height: 30px;}
	.header__btn-menu {display: flex; margin-left: 20px; padding: 0; width: 40px; border-radius: 50%; font-size: 18px;}
	.site-desc .sect__title {font-size: 26px;}
	.footer__one, .footer__two {gap: 20px;} 
	.footer__two {margin-top: 30px;}
	.footer__menu {min-width: 100%;}
	.footer__text {min-width: 100%; order: -1;}
	.footer .header__caption {margin: 0;}
	.d-grid-items-5 {grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 20px 10px;}
	.d-grid-items-3 {grid-template-columns: repeat(auto-fill,minmax(320px,1fr));}
	.hero--decor .hero__inner::before {right: -140px;}
	.hero--decor .hero__inner::after {right: -130px;}
	
	.page__cols, .app-entry__cols {display: block;}
	.page__cols-side, .app-entry__side {margin-top: 30px;}
	.page__cols-main, .app-entry__main {padding: 20px;}
	.page__scr, .app-entry__gallery {margin-left: -20px; margin-right: -20px; padding: 20px;}
	.page__dl-content {margin-left: -20px; margin-right: -20px; padding: 20px;}
	.page__trailer {margin-left: -20px; margin-right: -20px;}
}

@media screen and (max-width: 420px) {
	.mobile-menu__header {gap: 6px;}
	.mobile-menu__header .logo {padding-left: 64px;}
	.mobile-menu__header .logo::before {width: 52px; height: 52px; background-size: 42px;}
	.mobile-menu__header .logo__subtitle {font-size: 18px; letter-spacing: 1.5px;}
	.header .logo {padding-left: 64px;}
	.header .logo::before {width: 52px; height: 52px; background-size: 42px;}
	.header .logo__subtitle {white-space: nowrap; font-size: 18px; letter-spacing: 1.5px;}
}

@media screen and (max-width: 360px) {
	.header .theme-toggle {display: none;}
	.header .logo__title {white-space: nowrap; font-size: 16px;}
}

@media screen and (max-width: 950px) {
	.wrapper__container {max-width:768px;}
	.pagination {gap: 10px;}
	.pagination__btn-loader a, .pagination__btn-loader span {width: 100%;}
	.pagination > a, .pagination > span {flex-grow: 1; order: 10;}
	.pagination__pages {width: 100%;}
	.pagination__pages a, .pagination__pages span {flex-grow: 1;}

	.page__cols-main, .app-entry__main {margin-left: var(--indent-negative); margin-right: var(--indent-negative);}
}

@media screen and (max-width: 760px) {
	.wrapper__container {max-width:640px;}
	.login__header, .login__content {padding: 20px;}
	.login__social {margin-bottom: 0;}
	.login__row::before {height: 40px;}
	.login__input input {height: 40px; line-height: 40px; box-shadow: none; border: 0; background-color: var(--bg-darker);}
	.login__social a {border-radius: var(--bdrs); height: 30px; flex: 1 0 30%;}
	.login__social a img {left: 50%; margin-left: -10px;}
	.header .header__caption {display: none;}
	.header__logo {flex: 1 1 0; max-width: 100%; min-width: 120px; padding-left: 75px;}
	.hero__title {font-size: 26px; line-height: 1.3; margin-bottom: 10px;}
	.hero__title span {margin: 0;}
	.site-desc h1, .site-desc h2, .site-desc h3 {font-size: 20px;}
	.sect-desc__img {width: 100px; height: 100px;}
	.d-grid-items-5 {grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 10px;}
	.d-grid-items-3, .d-grid-items-4 {grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 10px;}
	.pagination {padding-top: 10px;}
	.sect__title {min-width: 100%; order: -1; font-size: 24px;}
	.item-card .item__meta {margin-left: -10px; margin-right: -10px; padding-top: 10px; margin-bottom: -10px;}
	.item-card .item__title {font-size: 15px; margin-top: 0px;}
	
	/* Related cards на мобильных остаются как в базовых стилях */
	.scroller__content {margin-right: var(--indent-negative);}
	.sect--white {margin: 0 var(--indent-negative) !important; padding: 30px var(--indent);}
	
	.ac-toggle .ac-form__bottom button {position: absolute; bottom: 20px; right: 10px; z-index: 10; pointer-events: none;}

	.page__header-title h1 {font-size: 24px;}
	.page__header, .app-entry__header {grid-template-areas: "ptitle ptitle" "pleft pleft" "pinfo pinfo" "pctrl pctrl"; 
		grid-template-columns: 130px minmax(0,1fr);}
	.page__img {width: 130px; height: 130px; border-radius: 10px;}
	.page__header-ctrl {gap: 10px;}
	.page__btn-dl {padding: 0 20px; width: auto;}
	.page__header-ctrl > a:not([class]) {width: 100%; justify-content: center; order: 10;}
	.page__scr ul, .app-entry__gallery ul {flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory;
		margin-right: -20px; width: calc(100% + 20px); scrollbar-width: none;}
	.page__scr ul::-webkit-scrollbar, .app-entry__gallery ul::-webkit-scrollbar {display: none;}
	.page__scr ul li, .app-entry__gallery ul li {flex: 0 0 160px; width: 160px; scroll-snap-align: start;}
	.dl__desc {min-width: calc(100%	- 60px);}
	.dl__btn {flex-grow: 1; border-radius: 10px;}
	.dl {padding: 10px; gap: 10px;}
	.page__rating-score-caption {display: none;}
	.page__rating-score {top: -150px; width: calc(100vw - 190px); height: 88px; padding: 0;}
	.page__fav a {top: -60px; width: calc(100vw - 190px);}
	.page__info-table {width: 100%;}
	.page__info-table td:first-child {width: 100px; padding-left: 25px;}
	.page__info-table td:last-child {text-align: right;}
	
	.page--dl .page__header {grid-template-areas: "ptitle" "rkl" "pleft" "pinfo" "progress" "pctrl"; 
		grid-template-columns: minmax(0,1fr);}
	.page--dl .page__header-ctrl > a:not([class]) {width: 100%; height: 40px;}
	.page--dl .page__img {margin: 0 auto;}
	.page--dl .page__header-title {text-align: center;}
	.page--dl .page__rating-score-caption {display: block;}

	.page__title {font-size: 24px;}
	.full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5 {font-size: 20px;}
	.page__intro, .page__text .quote, .app-entry__text .quote {margin-left: var(--indent-negative); margin-right: var(--indent-negative); padding-right: var(--indent);}
	.full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5 {font-size: 18px;}
	
	.ac-form__bottom {gap: 10px;}
	.ac-form__bottom button {padding: 0 20px;}

	.ac-form__header > span, .comm__rating::before {display: none;}
	.ac-form #b_color {display: none;}
	.ac-form__bottom button {position: static !important; width: 100% !important;}
}

@media screen and (max-width: 590px) {
	.wrapper__container {max-width:480px;}
	.logo {font-size: 14px;}
	.logo__subtitle {font-size: 18px; margin-top: 10px;}
	.header__favlink {display: none;}
	.header__btn-menu, .header__btn-login, .theme-toggle, .header__login-img {margin-left: 10px;}
	.hero--decor .hero__inner {padding-bottom: 0px;}
	.hero--decor .hero__inner::before {right: -100px; bottom: -220px; width: 340px; height: 340px;}
	.hero--decor .hero__inner::after {display: none; background-image: none;}
	.sect--bg {background: var(--bg-gradient); background-blend-mode: normal;}
}

@media screen and (max-width: 470px) {
	.wrapper__container123 {max-width:360px;}
	.header__caption {padding: 0; border: 0;}
	.header__caption br {display: none;}
	.footer__menu {gap: 10px 20px;}
	.site-desc {padding-top: 25px;}
	.site-desc .sect__title {margin: 0;}
	.sect {margin-bottom: 30px;}
	.sect--bg {padding-top: 20px; padding-bottom: 20px;}
	.scroller__content .item-ext {width: calc(100vw - 60px);}
	.item-ext__bottom {padding: 15px; gap: 15px;}
	.hero__menu {padding-top: 10px; margin-bottom: -10px;}
	
	.page__scr ul li, .app-entry__gallery ul li {flex: 0 0 220px; width: 220px;}
	.page__message {margin-left: var(--indent-negative); margin-right: var(--indent-negative); padding-left: 18px;}
	
	.ac-form__bottom .comments_subscribe {font-size: 13px;}
	.full-text iframe {width: calc(100% + 40px); max-width: calc(100% + 40px); height: 260px; margin-left: -20px; margin-right: -20px;}
}

/* SPOILER
----------------------------------------------- */
.page__spoiler, .app-entry__spoiler {
	border: 1px solid var(--bdc);
	border-radius: 8px;
	overflow: hidden;
}

.page__spoiler-header, .app-entry__spoiler-header {
	background-color: var(--ui-bg-darkest);
	padding: 15px 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background-color 0.2s;
}

.page__spoiler-header:hover, .app-entry__spoiler-header:hover {
	background-color: var(--bg-hover);
}

.page__spoiler-title, .app-entry__spoiler-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}

.page__spoiler-toggle, .app-entry__spoiler-toggle {
	font-size: 14px;
	transition: transform 0.3s;
}

.page__spoiler.is-open .page__spoiler-toggle, .app-entry__spoiler.is-open .app-entry__spoiler-toggle {
	transform: rotate(180deg);
}

.page__spoiler-content, .app-entry__spoiler-content {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background-color: var(--bg);
}

.page__spoiler.is-open .page__spoiler-content, .app-entry__spoiler.is-open .app-entry__spoiler-content {
	max-height: 1000px;
}

/* TABS */
.page__tabs, .app-entry__tabs {
	background-color: var(--bg);
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	border: 1px solid rgba(79, 134, 214, 0.15);
	border-radius: 8px;
	overflow: hidden;
}

.page__tabs-nav, .app-entry__tabs-nav {
	display: flex;
	border-bottom: 1px solid rgba(79, 134, 214, 0.15);
}

.page__tabs-nav-item, .app-entry__tabs-nav-item {
	padding: 15px 25px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--tt-fade);
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
}

.page__tabs-nav-item:hover, .app-entry__tabs-nav-item:hover {
	color: var(--tt);
	background-color: rgba(0,0,0,0.05);
}

.page__tabs-nav-item.is-active, .app-entry__tabs-nav-item.is-active {
	color: var(--tt);
	border-bottom-color: var(--yellow);
	background-color: rgba(0,0,0,0.03);
}

.page__tabs-content, .app-entry__tabs-content {
	padding: 30px;
}

.page__tabs-panel, .app-entry__tabs-panel {
	display: none;
}

.page__tabs-panel.is-active, .app-entry__tabs-panel.is-active {
	display: block;
}

/* Fix for ol li styles inside tabs */
.page__tabs-panel ol, .app-entry__tabs-panel ol {
	counter-reset: list-counter;
}

.page__tabs-panel ol li, .app-entry__tabs-panel ol li {
	position: relative !important;
	padding-left: 45px !important;
	counter-increment: list-counter;
}

.page__tabs-panel ol li::before, .app-entry__tabs-panel ol li::before {
	content: counter(list-counter) !important;
	background-color: #fcc506 !important;
	color: #000 !important;
	position: absolute !important;
	top: -3px !important;
	left: 0 !important;
	width: 24px !important;
	height: 30px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	box-sizing: border-box !important;
	border-radius: 0 !important;
}

.page__tabs-panel ol li::after, .app-entry__tabs-panel ol li::after {
	left: 24px !important;
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ ТАБОВ */
@media (max-width: 768px) {
	.page__tabs-nav, .app-entry__tabs-nav {
		flex-direction: column;
		border-bottom: none;
	}
	
	.page__tabs-nav-item, .app-entry__tabs-nav-item {
		padding: 15px 20px;
		font-size: 15px;
		text-align: center;
		border-bottom: 1px solid rgba(79, 134, 214, 0.15);
		border-right: none;
		border-left: 3px solid transparent;
		width: 100%;
	}
	
	.page__tabs-nav-item.is-active, .app-entry__tabs-nav-item.is-active {
		border-left-color: var(--yellow);
		border-bottom-color: rgba(79, 134, 214, 0.15);
		background-color: rgba(255, 204, 6, 0.08);
	}
	
	.page__tabs-nav-item:last-child, .app-entry__tabs-nav-item:last-child {
		border-bottom: none;
	}
	
	.page__tabs-content, .app-entry__tabs-content {
		padding: 25px 20px;
	}
}

@media (max-width: 480px) {
	.page__tabs-nav-item, .app-entry__tabs-nav-item {
		padding: 12px 15px;
		font-size: 14px;
		font-weight: 500;
	}
	
	.page__tabs-content, .app-entry__tabs-content {
		padding: 20px 15px;
	}
	
	.page__tabs-panel ol li, .app-entry__tabs-panel ol li {
		padding-left: 35px !important;
	}
	
	.page__tabs-panel ol li::before, .app-entry__tabs-panel ol li::before {
		width: 20px !important;
		height: 26px !important;
		font-size: 12px !important;
	}
	
	.page__tabs-panel ol li::after, .app-entry__tabs-panel ol li::after {
		left: 20px !important;
	}
}
.categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}
.categories > a {
	background-color: var(--red);
	padding: 5px;
	border-radius: 5px;
}

/* БЛОК "РЕКОМЕНДУЕМ ЗАГРУЗИТЬ" - СПЕЦИАЛЬНЫЕ СТИЛИ */
.recommended-section {
	background: var(--bg);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	border: 1px solid rgba(79, 134, 214, 0.12);
	overflow: hidden;
}

.recommended-section .sect__title {
	background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
	color: #fff;
	margin: 0;
	padding: 18px 20px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	position: relative;
}

.recommended-section .sect__title::before {
	content: "\f019";
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	margin-right: 8px;
	font-size: 14px;
}

.recommended-section .sect__content {
	padding: 15px;
	gap: 12px;
}

/* Специальные стили для карточек внутри "Рекомендуем загрузить" */
.recommended-section .item-short {
	background: var(--bg);
	border: 1px solid rgba(79, 134, 214, 0.08);
	border-radius: 10px;
	padding: 15px;
	gap: 12px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.recommended-section .item-short:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.12);
	border-color: rgba(79, 134, 214, 0.2);
}

.recommended-section .item-short::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.recommended-section .item-short:hover::before {
	opacity: 1;
}

.recommended-section .item__img {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.recommended-section .item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recommended-section .item__title {
	font-size: 15px;
	font-weight: 600;
	color: var(--tt);
	margin-bottom: 5px;
	line-height: 1.3;
}

.recommended-section .item__text {
	font-size: 13px;
	color: var(--tt-fade);
	line-height: 1.4;
	-webkit-line-clamp: 2;
}

.recommended-section .item__meta {
	border-top: 1px solid rgba(79, 134, 214, 0.1);
	padding-top: 8px;
	margin-top: 8px;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	justify-content: flex-start;
}

.recommended-section .item__meta-item {
	font-size: 12px;
	color: var(--tt-fade-2);
	padding: 3px 8px;
	background: rgba(79, 134, 214, 0.05);
	border-radius: 6px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-align: center;
}

.recommended-section .item__meta-item i {
	font-size: 10px;
	color: var(--tt-fade);
	opacity: 0.7;
}

.recommended-section .item__meta-item:first-child::after {
	display: none;
}

.recommended-section .item__rating {
	background: var(--yellow);
	color: #000;
	padding: 3px 6px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	min-width: auto;
	text-align: center;
	white-space: nowrap;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ */
@media (max-width: 768px) {
	.recommended-section {
		border-radius: 8px;
		margin: 0 -10px;
	}
	
	.recommended-section .sect__title {
		padding: 15px 20px;
		font-size: 15px;
	}
	
	.recommended-section .sect__content {
		padding: 10px;
		gap: 8px;
		grid-template-columns: 1fr;
	}
	
	.recommended-section .item-short {
		flex-direction: row;
		text-align: left;
		padding: 12px;
		align-items: flex-start;
	}
	
	.recommended-section .item__img {
		width: 90px;
		height: 90px;
		min-width: 90px;
		margin-right: 12px;
	}
	
	.recommended-section .item__descr {
		flex: 1;
		text-align: left;
	}
	
	.recommended-section .item__title {
		font-size: 14px;
	}
	
	.recommended-section .item__text {
		font-size: 12px;
		margin-top: 4px;
	}
	
	.recommended-section .item__meta {
		flex-direction: row;
		justify-content: flex-start;
		flex-wrap: wrap;
		width: 100%;
		margin-top: 10px;
		padding-top: 10px;
		gap: 6px;
	}
}

@media (max-width: 480px) {
	.recommended-section {
		margin: 0 -15px;
		border-radius: 6px;
	}
	
	.recommended-section .sect__title {
		padding: 12px 15px;
		font-size: 14px;
	}
	
	.recommended-section .sect__content {
		padding: 8px;
	}
	
	.recommended-section .item-short {
		padding: 10px;
		flex-direction: row;
		align-items: flex-start;
	}
	
	.recommended-section .item__img {
		width: 80px;
		height: 80px;
		min-width: 80px;
		margin-right: 10px;
	}
	
	.recommended-section .item__title {
		font-size: 13px;
	}
	
	.recommended-section .item__meta-item,
	.recommended-section .item__rating {
		font-size: 11px;
		padding: 2px 5px;
		min-width: auto;
	}
}


/* ==========================================
   СОВРЕМЕННЫЕ СТИЛИ ДЛЯ ОСНОВНОГО КОНТЕНТА  
   ========================================== */

.page__cols-main {
	border-radius: 16px !important;
	border: 1px solid rgba(79, 134, 214, 0.08) !important;
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.04),
		0 1px 3px rgba(0, 0, 0, 0.06) !important;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.page__cols-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(79, 134, 214, 0.3) 30%, 
		rgba(79, 134, 214, 0.5) 50%, 
		rgba(79, 134, 214, 0.3) 70%, 
		transparent 100%);
	pointer-events: none;
}

/* Мобильные адаптации */
@media (max-width: 768px) {
	.page__cols-main {
		border-radius: 12px !important;
		margin-left: -10px !important;
		margin-right: -10px !important;
		border-left: none !important;
		border-right: none !important;
	}
}

@media (max-width: 480px) {
	.page__cols-main {
		border-radius: 8px !important;
		margin-left: -15px !important;
		margin-right: -15px !important;
	}
}

/* ==========================================
   ИГРОВЫЕ КНОПКИ И ЭЛЕМЕНТЫ УПРАВЛЕНИЯ
   ========================================== */

/* Контейнер кнопок */
.page__header-ctrl {
	flex-wrap: wrap !important;
	gap: 12px !important;
	align-items: stretch !important;
	margin-top: 20px;
}

/* Главная кнопка скачивания */
.page__btn-dl {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
	border: none !important;
	color: #fff !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	text-transform: none !important;
	letter-spacing: 0.3px !important;
	border-radius: 12px !important;
	padding: 14px 28px !important;
	width: auto !important;
	min-width: 160px !important;
	height: auto !important;
	position: relative !important;
	overflow: hidden !important;
	cursor: pointer !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	box-shadow: 
		0 4px 15px rgba(102, 126, 234, 0.4),
		0 2px 10px rgba(118, 75, 162, 0.2) !important;
	text-decoration: none !important;
}

.page__btn-dl::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.8s ease;
	z-index: 1;
}

.page__btn-dl::after {
	content: '\f063';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	position: absolute;
	top: 50%;
	right: 12px;
	font-size: 14px;
	transform: translateY(-50%);
	opacity: 0.9;
	z-index: 2;
	animation: bounce 2s infinite;
}





.page__btn-dl:hover {
	transform: translateY(-2px) scale(1.02) !important;
	background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
	box-shadow: 
		0 8px 25px rgba(102, 126, 234, 0.6),
		0 4px 20px rgba(118, 75, 162, 0.4) !important;
	color: #fff !important;
	text-decoration: none !important;
}

.page__btn-dl:hover::before {
	left: 100%;
}

.page__btn-dl:hover::after {
	opacity: 1;
	animation: bounce 1s infinite;
}

.page__btn-dl:active {
	transform: translateY(0) scale(0.98) !important;
	transition: all 0.1s ease !important;
}

.page__btn-dl:focus {
	outline: none !important;
	box-shadow: 
		0 4px 15px rgba(102, 126, 234, 0.4),
		0 0 0 3px rgba(102, 126, 234, 0.3) !important;
}

/* Вторичная кнопка */
.page__header-ctrl > a:not([class]) {
	background: rgba(79, 134, 214, 0.1) !important;
	border: 2px solid rgba(79, 134, 214, 0.3) !important;
	color: var(--blue) !important;
	border-radius: 10px !important;
	padding: 12px 20px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-transform: none !important;
	height: auto !important;
	transition: all 0.3s ease !important;
	position: relative;
}

.page__header-ctrl > a:not([class]):hover {
	background: rgba(79, 134, 214, 0.15) !important;
	border-color: rgba(79, 134, 214, 0.5) !important;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(79, 134, 214, 0.2);
}





/* Мобильные адаптации */
@media (max-width: 768px) {
	.page__header-ctrl {
		flex-direction: column !important;
		gap: 15px !important;
		align-items: stretch !important;
	}
	
	.page__btn-dl,
	.page__btn-dl2 {
		width: 100% !important;
		min-width: auto !important;
		justify-content: center !important;
		font-size: 15px !important;
		padding: 16px 20px !important;
		height: 50px !important;
		order: 1;
	}
	
	.page__header-ctrl > a:not([class]) {
		width: 100% !important;
		text-align: center !important;
		justify-content: center !important;
		order: 2;
	}
	
	/* Рейтинг на мобильных */
	.page__rating-stars {
		order: 3 !important;
		flex-grow: 0 !important;
		justify-content: center !important;
		align-items: center !important;
		text-align: center !important;
		margin-top: 10px !important;
		width: 100% !important;
	}
	
	/* Шкала популярности на мобильных */
	.page__popularity-scale {
		order: 4 !important;
		width: 100% !important;
		margin-top: 15px !important;
	}
	
	.page__rating {
		order: 3 !important;
		flex-grow: 0 !important;
		justify-content: center !important;
		align-items: center !important;
		text-align: center !important;
		margin-top: 10px !important;
		width: 100% !important;
	}
	
	.page__rating-votes {
		justify-content: center !important;
		text-align: center !important;
		margin-left: 0 !important;
		display: flex !important;
		align-items: center !important;
		width: 100% !important;
	}

	/* Мобильные улучшения для прогресс бара (768px) */
	.page__download-progress {
		flex-direction: column !important;
		gap: 12px !important;
		margin: 20px 0 !important;
		padding: 15px !important;
	}

	.progress-container {
		order: 2 !important;
		width: 100% !important;
	}

	.progress-bar {
		height: 30px !important;
		background: rgba(255, 255, 255, 0.12) !important;
		border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
		box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.35) !important;
		border-radius: 10px !important;
	}

	.progress-fill {
		border-radius: 10px !important;
	}

	.progress-text {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
		text-align: center !important;
		font-size: 13px !important;
		color: white !important;
		z-index: 10 !important;
		text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
		font-weight: 700 !important;
		white-space: nowrap !important;
	}


}

@media (max-width: 480px) {
	.page__btn-dl,
	.page__btn-dl2 {
		font-size: 14px !important;
		padding: 14px 16px !important;
		height: 48px !important;
	}
	
	.page__header-ctrl > a:not([class]) {
		font-size: 12px !important;
		padding: 10px 16px !important;
	}
	
	.page__rating-stars {
		margin-top: 15px !important;
	}
	
	.page__rating {
		margin-top: 15px !important;
	}
	
	.page__rating-votes {
		justify-content: center !important;
		text-align: center !important;
		margin-left: 0 !important;
		display: flex !important;
		align-items: center !important;
		width: 100% !important;
	}

	/* Мобильные улучшения для прогресс бара */
	.page__download-progress {
		flex-direction: column !important;
		gap: 10px !important;
		margin: 15px 0 !important;
		padding: 12px !important;
	}

	.progress-container {
		order: 2 !important;
		width: 100% !important;
	}

	.progress-bar {
		height: 30px !important;
		background: rgba(255, 255, 255, 0.15) !important;
		border: 2px solid rgba(255, 255, 255, 0.3) !important;
		box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
		border-radius: 12px !important;
	}

	.progress-fill {
		border-radius: 12px !important;
	}

	.progress-text {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
		text-align: center !important;
		font-size: 14px !important;
		color: white !important;
		z-index: 10 !important;
		text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
		font-weight: 700 !important;
		white-space: nowrap !important;
		line-height: 1 !important;
	}


}


/* Анимация для иконки скачивания */
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(-50%);
	}
	40% {
		transform: translateY(-58%);
	}
	60% {
		transform: translateY(-54%);
	}
}

/* БЛОК "ПОПУЛЯРНОЕ" - ГОРЯЧИЕ ХИТЫ 🔥 */
.sect.sect--popular {
	background: var(--bg);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	border: 1px solid rgba(255, 107, 53, 0.15);
	overflow: hidden;
	position: relative;
}

/* Огненный заголовок с анимацией */
.sect.sect--popular .sect__title {
	background: linear-gradient(135deg, #e74c3c 0%, #ff6b35 40%, #f39c12 80%, #f1c40f 100%);
	background-size: 200% 200%;
	color: #fff;
	margin: 0;
	padding: 18px 20px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.8px;
	position: relative;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	animation: fireGradient 3s ease-in-out infinite;
}

@keyframes fireGradient {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.sect.sect--popular .sect__title::before {
	content: "\f06d";
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	margin-right: 10px;
	font-size: 16px;
	filter: drop-shadow(0 0 3px rgba(255,255,255,0.5));
	animation: fireFlicker 2s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
	0% { opacity: 0.9; transform: scale(1); }
	100% { opacity: 1; transform: scale(1.1); }
}

/* Светящаяся рамка при hover */
.sect.sect--popular:hover {
	border-color: rgba(255, 107, 53, 0.4);
	box-shadow: 
		0 4px 12px rgba(0,0,0,0.06),
		0 0 20px rgba(255, 107, 53, 0.15);
}

.sect.sect--popular .sect__content {
	padding: 15px;
	gap: 12px;
	position: relative;
}

/* Тонкий огненный градиент снизу заголовка */
.sect.sect--popular .sect__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(255,255,255,0.3) 20%, 
		rgba(255,255,255,0.6) 50%, 
		rgba(255,255,255,0.3) 80%, 
		transparent 100%);
	animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

/* Специальные стили для карточек в блоке "Популярное" */
.sect.sect--popular .item-ext {
	background: var(--bg);
	border: 1px solid rgba(79, 134, 214, 0.08);
	border-radius: 10px;
	padding: 15px;
	gap: 12px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sect.sect--popular .item-ext:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.12);
	border-color: rgba(79, 134, 214, 0.2);
}

.sect.sect--popular .item-ext::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sect.sect--popular .item-ext:hover::before {
	opacity: 1;
}

.sect.sect--popular .item__img {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.sect.sect--popular .item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sect.sect--popular .item__title {
	font-size: 15px;
	font-weight: 600;
	color: var(--tt);
	margin-bottom: 5px;
	line-height: 1.3;
}

.sect.sect--popular .item__text {
	font-size: 13px;
	color: var(--tt-fade);
	line-height: 1.4;
	-webkit-line-clamp: 2;
}

.sect.sect--popular .item__meta {
	border-top: 1px solid rgba(79, 134, 214, 0.1);
	padding-top: 8px;
	margin-top: 8px;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	justify-content: flex-start;
}

.sect.sect--popular .item__meta-item {
	font-size: 12px;
	color: var(--tt-fade-2);
	padding: 3px 8px;
	background: rgba(79, 134, 214, 0.05);
	border-radius: 6px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
}

/* Иконки для версии и размера - одинаковой ширины */
.sect.sect--popular .item__meta-item:first-child::before {
	content: "\f02b";
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	margin-right: 6px;
	color: var(--tt-fade);
	opacity: 0.7;
	width: 12px;
	text-align: center;
	display: inline-block;
}

.sect.sect--popular .item__meta-item i {
	font-size: 12px;
	color: var(--tt-fade);
	opacity: 0.7;
	width: 12px;
	text-align: center;
	margin-right: 6px;
}

.sect.sect--popular .item__rating {
	background: var(--yellow);
	color: #000;
	padding: 3px 6px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	min-width: auto;
	text-align: center;
	white-space: nowrap;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Адаптивность для блока "Популярное" */
@media (max-width: 768px) {
	.sect.sect--popular {
		border-radius: 8px;
		margin: 0 -10px;
	}
	
	.sect.sect--popular .sect__title {
		padding: 15px 20px;
		font-size: 15px;
	}
	
	.sect.sect--popular .sect__content {
		padding: 10px;
		gap: 8px;
		grid-template-columns: 1fr;
	}
	
	.sect.sect--popular .item-short {
		flex-direction: row;
		text-align: left;
		padding: 12px;
		align-items: flex-start;
	}
	
	.sect.sect--popular .item__img {
		width: 90px;
		height: 90px;
		min-width: 90px;
		margin-right: 12px;
	}
	
	.sect.sect--popular .item__descr {
		flex: 1;
		text-align: left;
	}
	
	.sect.sect--popular .item__title {
		font-size: 14px;
	}
	
	.sect.sect--popular .item__text {
		font-size: 12px;
		margin-top: 4px;
	}
	
	.sect.sect--popular .item__meta {
		flex-direction: row;
		justify-content: flex-start;
		flex-wrap: wrap;
		width: 100%;
		margin-top: 10px;
		padding-top: 10px;
		gap: 6px;
	}
}

@media (max-width: 480px) {
	.sect.sect--popular {
		margin: 0 -15px;
		border-radius: 6px;
	}
	
	.sect.sect--popular .sect__title {
		padding: 12px 15px;
		font-size: 14px;
	}
	
	.sect.sect--popular .sect__content {
		padding: 8px;
	}
	
	.sect.sect--popular .item-short {
		padding: 10px;
		flex-direction: row;
		align-items: flex-start;
	}
	
	.sect.sect--popular .item__img {
		width: 80px;
		height: 80px;
		min-width: 80px;
		margin-right: 10px;
	}
	
	.sect.sect--popular .item__title {
		font-size: 13px;
	}
	
	.sect.sect--popular .item__meta-item,
	.sect.sect--popular .item__rating {
		font-size: 11px;
		padding: 2px 5px;
		min-width: auto;
	}
}



/* === Стол заказов === */
.orderdesc-area{
	padding: 20px;
}
.orderdesc-h{
	color: #fff;
}
.orderdesc-add{
	float: right;
	height: 30px;
	padding: 0 20px;
	border: 1px solid #127ad0;
	background: #127ad0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAIAAABi9+OQAAAAKUlEQVQImWNwnHqTiYGBgenPv/9MDAwMTH/hNAMq/z8aH0r/IVIdmnkANWQmm4eB2ycAAAAASUVORK5CYII=') repeat-x 0 0;
	border-radius: 2px;
	cursor: pointer;
	color: #fff;
	font-weight: bold;
	text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.orderdesc-add:hover{
	background: #127ad0;
}
.orderdesc-add-area{
	display: none;
	clear: both;
	margin-top: 15px;
	background: rgba(0,0,0,0.3);
	padding: 5px 10px;
	border-radius: 3px;
}
.orderdesc-add-area-row{
	padding: 10px 10px 10px 150px;
	border-bottom: 1px solid var(--tt-gray)
}
.orderdesc-add-area-row:last-child{
	border: none;
}

.orderdesc-add-area-row:after{
	content: "";
	display: table;
	clear: both;
}
.orderdesc-add-area-row-t{
	float: left;
	margin-left: -140px;
	padding-top: 6px;
	color: #fff;
}
.orderdesc-add-area-row-input{
	width: 450px;
	height: 30px;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 0 15px;
}
.orderdesc-add-area-row-input:focus{
	border-color: #3a89c3;
	box-shadow: 0 0 3px rgba(60,140,200,.5);
}
.orderdesc-cancel,
.orderdesc-doadd{
	padding: 5px 25px;
	cursor: pointer;
	margin-right: 7px;
}
.orderdesc-cancel:hover,
.orderdesc-doadd:hover{
	box-shadow: 0 0 3px rgba(60,140,200,.5);
}

.orderdesc-related{
	display: none;
	margin: 10px 0 0;
	list-style: none;
	background: rgba(0,0,0,0.3);
	padding: 10px;
	border: 1px solid #ddd;
	box-shadow: 0 2px 5px rgba(0,0,0,.1);
	width: 460px;
	border-radius: 3px;
}
.orderdesc-related li{
	height: 22px;
	line-height: 22px;
	border-bottom: 1px solid #eee;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.orderdesc-related li:first-child,
.orderdesc-related li:last-child{
	border: none;
}
.orderdesc-related-h{
	text-align: center;
	font-weight: bold;
}

.orderdesc-statusinfo{
	list-style: none;
	padding: 0 5%;
	margin: 10px 0 0;
}
.orderdesc-statusinfo:after{
	content: "";
	display: table;
	clear: both;
}
.orderdesc-statusinfo li{
	float: left;
	width: 20%;
	font: normal 12px/22px Arial;
	color: #444;
	text-align: center;
}
.orderdesc-statusinfo li a,
.orderdesc-statusinfo li a:hover{
	text-decoration: none;
}
.orderdesc-statusinfo li a:hover span{
	text-decoration: underline;
	color: #ff5f43;
}

.od-all,
.od-wait,
.od-done,
.od-deny,
.od-top{
	display: inline-block;
	height: 22px;
	width: 22px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background: #f0f0f0;
	vertical-align: bottom;
}

.od-all{
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAAAAADh3zPnAAAApklEQVR42mP4gA08ZaCq8K35nZ2zz6EJv5ro5paR4ebS+AxZ+FFc0FYQvTUo7AqScF7MI4iuRzFxb+DCO91Owaw45bYULtxYjXBEdQ5cOGopQnipB1w4YCNCeKPLM5hwwmyE8FwfuOreNIRwWjlc+IrbVpjoVpf9CHdP9TkGET3mU4/knXetbp0nPnw40elW+golqDbHuQBB2PJ36AF7Y//uK9SNHQAeuqDkUdpBpwAAAABJRU5ErkJggg==');
}
.od-wait{
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAAAAADh3zPnAAAAXklEQVR42mP4gA08ZaCL8IUIt+VYhEtdXDyeYQrHuLi4XMAUzgMK38AUnu3iEoTF7AduLpOxObA77Ak24XePsLn7RW/pOSzCvS4uYViEa11cvN5g8XyYx2o6hzeKMADqkq62n/RA2wAAAABJRU5ErkJggg==');
}
.od-done{
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAAAAADh3zPnAAAAVElEQVR42mP4gA08ZRh44XdYhc8FzMYifC7AxesZhjBI9DCS6ul5L5BFocJnXFxyXiCJwlRPBYofQ4jCzQaKuyBEEVZORRZFckk/kiiyA+8NcHgDAJWdq89/NheVAAAAAElFTkSuQmCC');
}
.od-deny{
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAAAAADh3zPnAAAAaUlEQVR42mP4gA08ZRg44RMXQOSrjajCJ7x8TgFFc1z6UYTP+bj4nACKukxGMwQonuYCVYxkJVAcLook/Aqo1u0UujDIXDcXn1Oowi+Aov0g80+gCK8HmwsUz0E1pHcq2N68ewMesGjCAB57pGIv6y4lAAAAAElFTkSuQmCC');
}
.od-top{
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAAAAADh3zPnAAAAv0lEQVR42mP4gA08ZaBE+N3DW2+wCD+eU3kDi/CDCbmXsQg/7Mu5hC789MqrhxMwhF9vTrjwaEIuhvDKyBOP+lCFn194+XplxAk0s9/vDzgNUv2wPwfukncv37/f7nsUJPygH+HAu+sfw4X74MLvdsader/D9whYGOGdd1sjj0FVH3uIcMm7bVEngMKHIVYihA+nXXy/1/vU6/VxZx9PK74Gs/LltdcfXpx7+f7B0edvrx5/iR4m798Btb4lI9IA15afFB34FCYAAAAASUVORK5CYII=');
}

.orderdesc-related li .od-deny,
.orderdesc-table td .od-deny{
	cursor: help;
}

.orderdesc-table{
	margin-top: 10px;
	width: 100%;
	border-top: 1px solid #ccc;
	border-collapse: collapse;
}
.orderdesc-table tr:nth-child(odd){
	background: #673AB7;
}
.orderdesc-table tr:hover{
	background: #e74c3c;
}
.orderdesc-table td{
	height: 22px;
	margin: 0;
	padding: 0;
	text-align: center;
/*	font: bold 12px/22px Arial;*/
	color: #fff;
	border-bottom: 1px solid #ccc;
}
.orderdesc-table td.od_td_title{
	text-align: left;
	padding: 2px 0 2px 10px;
	height: 18px;
	line-height: 18px;
}

.orderdesc-rating{
	width: 100%;
	font-weight: bold;
	height: 22px;
	line-height: 22px;
	display: block;
	background:#eee;
	color: #999;
	cursor: pointer;
	border-radius:1px;
}
.orderdesc-rating-green{
	text-shadow: 0 1px 3px rgba(0,0,0,.3);
	background: #74b52f url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAWCAIAAACOpGH9AAAAJElEQVQImWNoOmXGxMDAwPTv338mBgYGpv9wmgGvOIz/D7s4AAAVHIUkUImVAAAAAElFTkSuQmCC') repeat-x 0 0;
	color: #fff;
}
.orderdesc-edit{
	font: normal 10px Arial;
	color: #fff;
}
.orderdesc-edit:hover{
	color: #000;
}
#orderdesc-edit{
	padding: 10px !important;
}

.orderdesc-navigation{
	clear: both;
	margin-top: 15px;
	text-align: center;
	font: normal 12px Arial;
	color: #999;
}
.orderdesc-navigation *{
	display: inline-block;
	margin: 0 2px 4px;
	padding: 7px 5px;
	border: 1px solid #eee;
	border-radius: 2px;
}
.orderdesc-navigation a{
	border-color: #bedbf1;
}
.orderdesc-navigation a:hover{
	color: #1e6faa;
	text-decoration: none;
	border-color: #3a89c3;
	box-shadow: 0 0 3px rgba(60,140,200,.5);
}

.show-alerts{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1003;
}
.show-alerts>div{
	background: #eee url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAgCAIAAABch4VNAAAAGklEQVQImWP49esXEwMDA9P///+x0jBMI3kAMQInCeNawiQAAAAASUVORK5CYII=') 0 0 repeat-x;
	padding: 10px 15px;
	box-shadow: 0 2px 7px rgba(0,0,0,.2);
	border-left: 3px solid #f00;
	border-radius: 1px 0 0 1px;
	margin-top: 20px;
	color: #333;
	text-shadow: 0 1px 3px #fff;
	white-space: nowrap;
	display: none;
	width: auto;
	float: right;
	clear: both;
	cursor: default;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
div.showLoad{
	display: block;
	height: 28px;
	width: 28px;
	background: url('data:image/gif;base64,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') no-repeat 50% 50%;
}

/* TELEGRAM SUBSCRIPTION BUTTON */
.telegram-subscribe {
	margin-top: 10px;
	padding-top: 10px;
}

.telegram-subscribe__btn {
	background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
	border: none;
	color: #fff !important;
	font-weight: 600;
	font-size: 16px;
	text-transform: none;
	letter-spacing: 0.3px;
	border-radius: 12px;
	padding: 16px 32px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 4px 15px rgba(0, 136, 204, 0.4),
		0 2px 10px rgba(34, 158, 217, 0.2);
	text-decoration: none;
	min-width: 200px;
	justify-content: center;
}

.telegram-subscribe__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.8s ease;
	z-index: 1;
}

.telegram-subscribe__icon {
	font-size: 18px;
	z-index: 2;
	position: relative;
}

.telegram-subscribe__text {
	z-index: 2;
	position: relative;
	font-weight: 600;
}

.telegram-subscribe__btn:hover {
	transform: translateY(-2px) scale(1.02);
	background: linear-gradient(135deg, #006bb3 0%, #1e8bc3 100%);
	box-shadow: 
		0 6px 20px rgba(0, 136, 204, 0.5),
		0 4px 15px rgba(34, 158, 217, 0.3);
	text-decoration: none;
	color: #fff !important;
}

.telegram-subscribe__btn:hover::before {
	left: 100%;
}

.telegram-subscribe__btn:active {
	transform: translateY(0) scale(0.98);
	transition: all 0.1s ease;
}

.telegram-subscribe__btn:focus {
	outline: none;
	box-shadow: 
		0 4px 15px rgba(0, 136, 204, 0.4),
		0 2px 10px rgba(34, 158, 217, 0.2),
		0 0 0 3px rgba(0, 136, 204, 0.3);
}

/* Responsive styles for telegram button */
@media screen and (max-width: 768px) {
	.telegram-subscribe__btn {
		width: 100%;
		padding: 14px 24px;
		font-size: 15px;
	}
	
	.telegram-subscribe__icon {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.telegram-subscribe__btn {
		font-size: 14px;
		padding: 14px 20px;
		min-width: auto;
		gap: 10px;
	}
	
	.telegram-subscribe__icon {
		font-size: 16px;
	}
	.social-share {
	text-align: center;
}
}
.categorys {
	padding-top: 20px;
}
.screenshot-title {
	margin-bottom: 15px;
}
