/* video26 — custom layout (black + orange), no Bootstrap */
:root {
	--v26-max: 1200px;
	--v26-black: #000;
	--v26-bg: #060606;
	--v26-bg-deep: #020202;
	--v26-panel: #121212;
	--v26-panel-2: #1c1c1c;
	--v26-panel-3: #262626;
	--v26-orange: #ff7722;
	--v26-orange-light: #ffaa55;
	--v26-orange-dark: #cc4a00;
	--v26-orange-hot: #ff4400;
	--v26-amber: #ffb347;
	--v26-text: #fff;
	--v26-muted: #c9c9c9;
	--v26-border: #3d2a18;
	--v26-border-glow: rgba(255, 119, 34, 0.55);
	--v26-radius: 6px;
	--v26-glow: rgba(255, 119, 34, 0.42);
	--v26-gradient-brand: linear-gradient(120deg, #ffaa55 0%, #ff7722 45%, #ff4400 100%);
	--v26-gradient-panel: linear-gradient(168deg, #1a1008 0%, #0f0f0f 50%, #050505 100%);
	--v26-gradient-btn: linear-gradient(180deg, #ffaa55 0%, #ff6600 50%, #cc4a00 100%);
	--v26-gradient-accent-line: linear-gradient(90deg, transparent, #ff7722, #ffb347, #ff7722, transparent);
	--v26-gradient-card: linear-gradient(145deg, rgba(255, 119, 34, 0.12) 0%, transparent 62%);
	--v21-tb-bg: var(--v26-panel);
	--v21-tb-bg-panel: var(--v26-panel-2);
	--v21-tb-border: var(--v26-border);
	--v21-tb-text: var(--v26-text);
	--v21-tb-muted: var(--v26-muted);
	--v21-tb-accent: var(--v26-orange);
	--v21-tb-accent-soft: var(--v26-orange-light);
	--v21-tb-accent-dark: var(--v26-orange-dark);
	--v21-tb-fill: var(--v26-orange-hot);
	--v21-tb-btn: var(--v26-panel-2);
	--v21-tb-btn-hover: var(--v26-panel-3);
	--v21-tb-input-bg: var(--v26-bg-deep);
	--v21-tb-gradient-btn: var(--v26-gradient-btn);
	--v21-tb-glow: var(--v26-glow);
	--v21-tb-radius: var(--v26-radius);
	--v21-tb-on-accent: #1a0800;
	color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	background:
		radial-gradient(ellipse 130% 55% at 50% -8%, rgba(255, 119, 34, 0.18) 0%, transparent 58%),
		radial-gradient(ellipse 70% 45% at 100% 25%, rgba(255, 68, 0, 0.09) 0%, transparent 50%),
		radial-gradient(ellipse 55% 35% at 0% 75%, rgba(255, 179, 71, 0.07) 0%, transparent 45%),
		var(--v26-bg-deep);
	color: var(--v26-text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	overflow-x: clip;
}

img { max-width: 100%; height: auto; vertical-align: top; }
a { color: var(--v26-orange-light); }
a:hover { color: #fff; }

h1, h2, h3 {
	margin: 0;
	font-weight: 700;
	line-height: 1.25;
	color: var(--v26-text);
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 10000;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	background: var(--v26-orange);
	color: #fff;
	border-radius: var(--v26-radius);
	text-decoration: none;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.container {
	width: 100%;
	max-width: var(--v26-max);
	margin: 0 auto;
	padding: 0 12px;
}

/* header */
.header { padding: 0; }

.menu {
	background: var(--v26-gradient-panel);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 170, 85, 0.08);
	position: relative;
}

.menu::after {
	content: "";
	display: block;
	height: 3px;
	background: var(--v26-gradient-accent-line);
	opacity: 0.85;
}

.menu-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	max-width: var(--v26-max);
	margin: 0 auto;
	padding: 10px 12px;
}

.navbar-brand {
	font-weight: 700;
	background: var(--v26-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	font-size: clamp(1.1rem, 3vw, 1.75rem);
	text-decoration: none;
	line-height: 1.2;
	filter: drop-shadow(0 0 14px rgba(255, 119, 34, 0.4));
}

.navbar-brand b {
	background: var(--v26-gradient-btn);
	color: #1a0a00;
	border-radius: 4px;
	padding: 2px 6px;
	box-shadow: 0 0 16px var(--v26-glow);
}

.navbar-toggler {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--v26-orange);
	border-radius: var(--v26-radius);
	background: var(--v26-panel-2);
	color: var(--v26-orange);
	cursor: pointer;
	font-size: 1.35rem;
	line-height: 1;
	padding: 0;
}

.navbar-toggler-icon {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

.nav-collapse[hidden] { display: none !important; }

.nav-list {
	list-style: none;
	margin: 0;
	padding: 8px 0 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.nav-item { margin: 0; }

.nav-link {
	display: block;
	color: var(--v26-orange-light);
	opacity: 1;
	font-weight: 600;
	text-align: center;
	padding: 10px 15px;
	text-decoration: none;
	border-radius: var(--v26-radius);
	transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover {
	color: #fff;
	background: rgba(255, 119, 34, 0.14);
	box-shadow: inset 0 0 0 1px rgba(255, 170, 85, 0.35);
}

.search {
	margin-top: 0;
	padding: 0 12px 15px;
	background: transparent;
}

.searchses {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: var(--v26-max);
	margin: 0 auto;
	gap: 0;
}

.searchses input[type="search"],
.searchses .form-control {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--v26-border);
	border-right: 0;
	border-radius: var(--v26-radius) 0 0 var(--v26-radius);
	background: linear-gradient(180deg, var(--v26-panel-3) 0%, var(--v26-panel-2) 100%);
	color: #fff;
	font: inherit;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.searchses input:focus {
	outline: 2px solid var(--v26-orange);
	outline-offset: 0;
}

.searchses .btn-dark,
.searchses button[type="submit"] {
	flex: 0 0 auto;
	padding: 10px 18px;
	border: 1px solid #a63a00;
	border-radius: 0 var(--v26-radius) var(--v26-radius) 0;
	background: var(--v26-gradient-btn);
	color: #1a0800;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(255, 102, 0, 0.3);
}

.searchses .btn-dark:hover,
.searchses button[type="submit"]:hover {
	filter: brightness(1.08);
	box-shadow: 0 6px 22px var(--v26-glow);
}

@media (min-width: 992px) {
	.navbar-toggler { display: none; }
	.nav-collapse {
		display: block !important;
		flex: 1 1 auto;
	}
	.nav-collapse[hidden] { display: block !important; }
	.nav-list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0;
		width: auto;
	}
}

@media (max-width: 991px) {
	.nav-collapse:not([hidden]) {
		display: block !important;
		flex: 1 1 100%;
		background: var(--v26-panel-2);
		border: 1px solid #222;
		border-radius: var(--v26-radius);
		margin-top: 8px;
	}
}

/* main content */
.videos {
	width: 100%;
	max-width: var(--v26-max);
	margin: 0 auto;
	padding: 0 12px 24px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
}

.col-md-2,
.col-md-6,
.col-md-10,
.col-md-12,
.col-lg-12,
.col-sm-12,
.col,
.videoss {
	padding-left: 8px;
	padding-right: 8px;
	min-width: 0;
}

.col-md-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-md-12,
.col-lg-12,
.col-sm-12 { flex: 0 0 100%; max-width: 100%; }

@media (max-width: 767px) {
	.col-md-2,
	.col-md-10 { flex: 0 0 100%; max-width: 100%; }
}

.new-videos { margin-top: 20px; }

.new-videos h1,
.new-videos h2 {
	background: var(--v26-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 20px;
	text-align: left !important;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 119, 34, 0.28);
}

.videos-inner { margin-top: 10px; }

.videos-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	width: 100%;
}

@media (min-width: 576px) {
	.videos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

.videoss { padding: 5px; }

.videos-list {
	position: relative;
	padding: 0;
	margin-bottom: 0;
	border-radius: var(--v26-radius);
	background: linear-gradient(165deg, var(--v26-panel-2) 0%, var(--v26-panel) 100%);
	border: 1px solid var(--v26-border);
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.videos-list::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--v26-gradient-card);
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
	z-index: 1;
}

.videos-list:hover {
	border-color: var(--v26-border-glow);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), 0 0 24px var(--v26-glow);
	transform: translateY(-2px);
}

.videos-list:hover::before { opacity: 1; }

.videos-list img,
.videos-list .v21-thumb-media img {
	width: 100%;
	display: block;
	border-radius: 0;
	object-fit: cover;
}

.videos-list .v21-thumb-media {
	width: 100%;
}

.videos-list a {
	display: block;
	text-decoration: none;
	padding: 0;
}

.videos-list h3 {
	color: #fff;
	font-weight: 600;
	padding: 10px 5px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin: 0 0 5px;
	border-bottom: 1px solid #fff;
	font-size: 14px;
}

.v26-like-badge {
	font-style: normal;
	background: var(--v26-gradient-btn);
	color: #1a0800;
	font-weight: 700;
	padding: 3px 6px;
	border-radius: 2px;
	position: absolute;
	left: 5px;
	top: 5px;
	font-size: 10px;
	z-index: 2;
	box-shadow: 0 2px 10px var(--v26-glow);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	max-width: calc(100% - 10px);
	white-space: nowrap;
}

.v26-like-badge .rating-svg {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

.v26-like-badge span {
	overflow: hidden;
	text-overflow: ellipsis;
}

.time,
.eye {
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	padding: 3px 5px;
	border-radius: 0;
	position: absolute;
	bottom: 40px;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.time { right: 6px; }
.eye { left: 2px; }

.meta-icon {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #fff;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.meta-icon-time {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.meta-icon-eye {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6-10-6-10-6z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6-10-6-10-6z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.plays {
	font-size: 50px;
	color: #fff;
	position: absolute;
	left: 42%;
	top: 26%;
	opacity: 0;
	transition: opacity 0.5s ease;
	width: 64px;
	height: 50px;
	pointer-events: none;
}

.plays::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14px 0 14px 22px;
	border-color: transparent transparent transparent #fff;
	filter: drop-shadow(0 0 8px var(--v26-glow));
}

.videos-list:hover a .plays {
	opacity: 1;
}

/* detail page */
.videos-detail {
	position: relative;
	margin-top: 10px;
}

.videos-details { padding: 0; }

.ratio-16x9 {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
}

.ratio-16x9 iframe,
.ratio-16x9 video,
.ratio-16x9 .player-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
}

.player-hit {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
}

.player-poster {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.player-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255, 102, 0, 0.92);
	box-shadow: 0 0 24px var(--v26-glow);
	pointer-events: none;
}

.player-play::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-38%, -50%);
	border-style: solid;
	border-width: 14px 0 14px 22px;
	border-color: transparent transparent transparent #fff;
}

.ratio-16x9.is-playing .player-hit,
.ratio-16x9.is-playing .player-play { display: none; }

.detail-ist {
	background: var(--v26-panel);
	padding: 15px 10px;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 0 14px -6px rgba(0, 0, 0, 1);
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 10px;
}

.detail-stats {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	order: 2;
	margin-left: auto;
}

.detail-ist #ajaxRating {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	order: 1;
}

.ajax_rating {
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
}

.ajax_rating + .ajax_rating {
	margin-left: 5px;
}

.ajax_rating .like,
.ajax_rating .unlike {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 50%;
	font-style: normal;
	width: 36px;
	height: 36px;
	transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ajax_rating .like {
	background: var(--v26-orange);
}

.ajax_rating .unlike {
	background: var(--v26-black);
	border: 1px solid var(--v26-orange-dark);
}

.ajax_rating:hover .like {
	background: var(--v26-orange-light);
	box-shadow: 0 0 10px var(--v26-glow);
}

.ajax_rating:hover .unlike {
	background: var(--v26-panel-2);
	border-color: var(--v26-orange);
	box-shadow: 0 0 10px var(--v26-glow);
}

.ajax_rating.like.is-active .like {
	background: var(--v26-orange-light);
	box-shadow: 0 0 12px var(--v26-glow);
}

.ajax_rating.unlike.is-active .unlike {
	background: var(--v26-orange-dark);
	border-color: var(--v26-orange-light);
	box-shadow: 0 0 12px var(--v26-glow);
}

.ajax_rating[aria-disabled="true"] {
	opacity: 0.75;
	cursor: default;
	pointer-events: none;
}

.rating-svg {
	display: block;
	width: 18px;
	height: 18px;
}

.yuzde {
	color: var(--v26-orange-light);
	font-size: 16px;
	font-weight: 600;
	vertical-align: middle;
	margin-left: 8px;
}

.likes {
	color: #fff;
	font-size: 12px;
	vertical-align: middle;
	margin-left: 4px;
}

.times,
.eyes {
	background: var(--v26-orange);
	color: #fff;
	padding: 8px 10px;
	border-radius: 8px;
	margin: 0;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	float: none;
}

.summary {
	color: #fff;
	margin-top: 20px;
}

.summary span { font-weight: 600; }
.summary a { color: var(--v26-orange); text-decoration: none; }
.summary a:hover { color: #fff; }
.summary p a { margin-left: 4px; }

/* pagination */
.pagina { width: 100%; margin-top: 10px; }

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.pagination li { display: inline-block; }

.pagination a,
.pagination span {
	display: inline-block;
	padding: 8px 12px;
	border: 1px solid var(--v26-orange-dark);
	border-radius: var(--v26-radius);
	color: #fff;
	text-decoration: none;
	background: var(--v26-panel);
}

.pagination li.active a,
.pagination a:hover {
	background: var(--v26-orange);
	border-color: var(--v26-orange);
}

/* trends / tags */
.search-list { margin-top: 10px; }
.search-list a.btn-dark,
.search-list .tag-btn {
	display: inline-block;
	margin-top: 10px;
	margin-right: 6px;
	padding: 6px 12px;
	text-decoration: none;
	color: #fff;
	background: var(--v26-panel);
	border: 1px solid var(--v26-orange-dark);
	border-radius: var(--v26-radius);
	font-size: 14px;
}

.search-list a.btn-dark:hover,
.search-list .tag-btn:hover {
	background: var(--v26-orange);
	border-color: var(--v26-orange);
}

/* load more */
.load-wrap {
	text-align: center;
	margin: 20px 0;
}

.btn-load {
	padding: 10px 24px;
	border: 1px solid var(--v26-orange);
	border-radius: var(--v26-radius);
	background: var(--v26-orange-dark);
	color: #fff;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.btn-load:hover { background: var(--v26-orange); }
.btn-load:disabled { opacity: 0.6; cursor: wait; }

/* footer */
.footer {
	background: var(--v26-gradient-panel);
	margin-top: 30px;
	color: #fff;
	padding: 20px 15px;
	box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 170, 85, 0.06);
	text-align: center;
	position: relative;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	right: 10%;
	height: 2px;
	background: var(--v26-gradient-accent-line);
	opacity: 0.75;
}

.footer a {
	color: #fff;
	text-decoration: none;
}

.footer a:hover { color: var(--v26-orange-light); }

.footer-logo {
	font-size: 30px;
	font-weight: 600;
	background: var(--v26-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	text-decoration: none;
}

.footer-logo b {
	background: var(--v26-gradient-btn);
	color: #1a0800;
	border-radius: 4px;
	padding: 2px 6px;
	box-shadow: 0 0 14px var(--v26-glow);
}

.copy { margin: 8px 0; }

/* dmca / static pages */
.dmca-inner { padding: 0; margin-top: 15px; color: #fff; }
.page-content { color: #fff; padding: 15px 0; }

.more-link {
	text-align: right;
	margin: 10px 0 20px;
}

.more-link a {
	color: var(--v26-orange);
	text-decoration: none;
	font-weight: 600;
}

@media (max-width: 768px) {
	.detail-ist {
		background: #000;
		padding: 15px 5px;
		flex-wrap: nowrap;
		align-items: center;
	}

	.detail-stats {
		order: 2;
		margin-left: auto;
		width: auto;
		flex: 0 0 auto;
	}

	.detail-ist #ajaxRating {
		order: 1;
		margin-left: 0;
		width: auto;
		justify-content: flex-start;
	}

	.times,
	.eyes {
		padding: 5px 8px;
		font-size: 13px;
	}
}

@media (max-width: 653px) {
	.ajax_rating .like,
	.ajax_rating .unlike { width: 30px; height: 30px; }
	.rating-svg { width: 14px; height: 14px; }
	.detail-ist { padding: 10px 5px; }
	.navbar-brand { font-size: 15px !important; }
	.plays { left: 45%; top: 25%; width: 45px; }
}

.search-list--categories a.trend-cat-card,
.search-list--categories .trend-cat-label {
	color: var(--v26-orange-light);
	font-size: 11px;
	font-weight: 400;
}

.search-list--categories a.trend-cat-card:hover,
.search-list--categories a.trend-cat-card:hover .trend-cat-label {
	color: var(--v26-orange);
}

.search-list--categories a.trend-cat-more .trend-cat-more-inner {
	color: var(--v26-orange-light);
	background: rgba(255, 119, 34, 0.08);
	border-color: rgba(255, 119, 34, 0.4);
}

.search-list--categories a.trend-cat-more:hover .trend-cat-more-inner {
	color: var(--v26-orange);
	background: rgba(255, 119, 34, 0.16);
	border-color: var(--v26-orange);
}
