:root {

	--bg-main: #e9eaee;
	--bg-header: #212529;
	--bg-card: #ffffff;
	--text-main: #333333;
	--text-muted: #666666;
	--card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	--bg-footer: #1a1d20;


	--grad-ru: linear-gradient(135deg, #ff416c, #ff4b2b);
	--grad-eng: linear-gradient(135deg, #f9d423, #ff4e50);
	--grad-ua: linear-gradient(135deg, #0057b7, #ffcc00);
	--grad-kz: linear-gradient(135deg, #00afca, #00e5ff);
	--grad-apps: linear-gradient(135deg, #3b82f6, #8b5cf6);
	--grad-tv: linear-gradient(135deg, #10b981, #059669);


	--grad-db: linear-gradient(135deg, #a18cd1, #fbc2eb);


	--grad-cartoons: linear-gradient(135deg, #ff9a9e, #fecfef);
	--grad-vpn: linear-gradient(135deg, #4facfe, #00f2fe);
	--grad-box: linear-gradient(135deg, #f857a6, #ff5858);
	--grad-football: linear-gradient(135deg, #96e6a1, #d4fc79);
	--grad-hockey: linear-gradient(135deg, #a1c4fd, #c2e9fb);
	--grad-tennis: linear-gradient(135deg, #f6d365, #fda085);
	--grad-basketball: linear-gradient(135deg, #ff9e22, #ff5722);
	--grad-f1: linear-gradient(135deg, #f12711, #f5af19);
}

[data-theme="dark"] {

	--bg-main: #141419;
	--bg-header: #1f1f26;
	--bg-card: #1f1f26;
	--text-main: #f5f5f5;
	--text-muted: #aaaaaa;
	--card-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	--bg-footer: #0f0f12;

}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}


@font-face {
	font-family: roboto;
	font-weight: 300;
	font-display: swap;
	src: url(https://cdn.staticstack.net/includes/fonts/roboto-light.woff2) format("woff2");
}


html,
body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;

	background: #DEF3F8 url(img/bg2.png) left 0 repeat-x;
	color: var(--text-main);
	font-family: roboto, sans-serif;
	transition: background-color 0.3s, color 0.3s;
}

.container {
	position: relative;
}

.wrapper {
	margin: 0 10px;
}

.theme-toggle {
	background: #333;
	color: #fff;
	border: none;
	padding: 8px;
	border-radius: 20px;
	cursor: pointer;
	font-weight: bold;
	font-size: 18px;
	transition: 0.3s;
}

[data-theme="dark"] .theme-toggle {
	background: #f5f5f5;
	color: #333;
}


.main {
	flex: 1 0 auto;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}


.category-card {
	background-color: var(--bg-card);
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--card-shadow);
	transition: background-color 0.3s, transform 0.2s;
	z-index: 1;
	padding: 2px;
}

.category-card:hover {
	z-index: 99;
	overflow: visible !important;
}

.category-card:hover .category-body {
	overflow: visible !important;
}

.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 8px;
	z-index: -1;
}

.card-ru::before {
	background: var(--grad-ru);
}

.card-eng::before {
	background: var(--grad-eng);
}

.card-ua::before {
	background: var(--grad-ua);
}

.card-kz::before {
	background: var(--grad-kz);
}

.card-apps::before {
	background: var(--grad-apps);
}

.card-tv::before {
	background: var(--grad-tv);
}

.card-db::before {
	background: var(--grad-db);
}

.card-cartoons::before {
	background: var(--grad-cartoons);
}

.card-vpn::before {
	background: var(--grad-vpn);
}

.card-box::before {
	background: var(--grad-box);
}

.card-football::before {
	background: var(--grad-football);
}

.card-hockey::before {
	background: var(--grad-hockey);
}

.card-tennis::before {
	background: var(--grad-tennis);
}

.card-basketball::before {
	background: var(--grad-basketball);
}

.card-f1::before {
	background: var(--grad-f1);
}


.category-header,
.category-body,
.category-footer {
	position: relative;
	z-index: 2;
	background: #fff;
}

.category-header {
	padding: 8px 4px 0 4px;
	text-align: center;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
	z-index: 3;
}

.category-header h2 {
	font-size: 17px;
	margin-bottom: 6px;
	font-weight: bold;
	color: #4e4e4e;
	position: relative;
	margin-bottom: 16px !important;
}

.category-header p {
	font-size: 12px;
	opacity: 0.85;
	line-height: 1.3;
	color: #000;
}

.category-body {
	background-color: var(--bg-card);
	flex-grow: 1;
	transition: background-color 0.3s;
	padding: 0 0 10px 0;
}


.site-list {
	counter-reset: site-item-counter;
	max-height: 340px;
	overflow-y: auto;
	margin: 10px 2px;
	scrollbar-width: thin;
	scrollbar-color: #dedede #fff;
}


[data-theme="dark"] .site-list::-webkit-scrollbar-track {
	background: #2a2d32;
}


.site-list .search-link {
	display: none;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -8px;
	width: auto;
	color: var(--text-muted);
	z-index: 3;
}

.site-list .search-link:hover {
	color: #ff4b2b;
}


.site-list li:hover .search-link {
	display: inline-block;
}


.site-list .tooltip-modal {
	display: block !important;
	position: absolute;
	bottom: 52px;
	left: 4px;
	right: 4px;
	background: #fff;
	color: #9f9f9f;
	padding: 4px;
	border-radius: 4px;
	border: 2px solid #9f9f9f;
	font-size: 13px;
	line-height: 1.4;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);


	opacity: 0;
	visibility: hidden;
	z-index: 99999;


	transition: opacity 0.15s ease 0s, visibility 0s ease 0s;
}


[data-theme="dark"] .site-list .tooltip-modal {
	background-color: #ffffff;
	color: #212529;
}


.site-list li:hover .tooltip-modal {
	opacity: 1;
	visibility: visible;

	transition: opacity 0.25s ease 1s, visibility 0s ease 1s;
}

.site-list li {
	font-size: 14px;
	counter-increment: site-item-counter;
	display: flex;
	align-items: center;
	position: relative;
	border-bottom: 1px solid #f6f6f6;
	padding: 0 0 0 4px;
}

.site-list li:hover {
	background: #f2f3f6;
	z-index: 100;
}

.site-list li::before {
	content: counter(site-item-counter) "";
	font-size: 12px;
	font-weight: 600;
	margin-right: 8px;
	min-width: 18px;
	text-align: center;
	background: #e1e1e1;
	color: #9798a0;
	border-radius: 50%;
	padding: 4px 2px;
}


.site-list li a:not(.search-link) {
	display: flex;
	align-items: center;
	flex-grow: 1;
	padding: 6px 0;
}

.site-list a {
	color: var(--text-main);
	text-decoration: none;
	display: flex;
	align-items: center;
	width: 100%;
	transition: color 0.2s;
}

.site-list a:hover {
	color: #ff4b2b;
}

.site-list .icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
	flex-shrink: 0;
}

.badge {
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 8px;
	margin-left: 6px;
	color: #fff;
	font-weight: bold;
}

.badge-top {
	background-color: #ff4b2b;
}

.badge-new {
	background-color: #10b981;
}

.category-footer {
	display: block;
	text-align: center;
	color: #fff;
	text-decoration: none;
	padding: 12px;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.5px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	box-shadow: 0 -4px 20px rgba(44, 111, 132, 0.0705882353);
	-webkit-box-shadow: 0 -4px 20px rgba(44, 111, 132, 0.0705882353);
}


.info-text-block {
	margin: 40px 10px 10px 10px;
	transition: background-color 0.3s;
}

.info-text {
	max-width: 1200px;
	margin: 0 auto;
	color: #000;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 20px;
}

.info-text h2 {
	color: #3c8fa7;
	padding: 8px 8px;
	font-size: 17px;
	border-radius: 8px;
	line-height: 18px;
	margin-bottom: 8px;
	border-bottom: 3px solid #3c8fa7;
}

.info-text p {
	font-size: 14px;
	line-height: 1.6;
	text-align: justify;
	margin-bottom: 25px;
	margin-top: 10px;
}


.footer {
	flex-shrink: 0;
	width: 100%;
	background: #378ca6;

	color: #ffffff;
	padding: 10px;
	text-align: center;
	font-size: 14px;
	margin-top: auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s;
	text-transform: uppercase;
	font-size: 14px;
	padding: 0 0 4px 0;
}

.footer-links a:hover {
	padding: 0 0 2px 0;
	border-bottom: 2px solid #fff;
}

.footer-text {
	max-width: 800px;
	margin: 0 auto 10px auto;
	font-size: 12px;
	line-height: 1.5;
}

.footer-socials {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 25px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: #2a2e33;
	color: #ffffff;
	text-decoration: none;
	border-radius: 50%;
	font-weight: bold;
	font-size: 12px;
	transition: background-color 0.2s, transform 0.2s;
}

.social-icon:hover {
	background-color: #ff4b2b;
	transform: translateY(-3px);
}

.footer-copy {
	font-size: 12px;
}


.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #c9e9f2;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
	z-index: 1000;
}

.scroll-to-top.show {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top:hover {
	transform: scale(1.1);
}


@media (max-width: 992px) {
	.header {
		margin-right: 0;
	}

	.header-logo-maskot-half-img {
		display: none;
	}
}

@media (max-width: 768px) {
	.mascot-container-inner {
		padding: 0;
	}

	.header {
		flex-direction: column;
		gap: 15px;
		text-align: center;
		padding: 20px 15px;
	}

	.header-left {
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}

	.search-bar {
		width: 100%;
	}

	.search-bar input {
		width: 100%;
	}

	.footer-links {
		gap: 10px;
	}
}


.category-header h2 i {
	color: #ff6b29;
}


.category-header h2::before {
	content: '';
	display: block;
	position: absolute;
	bottom: -8px;
	left: 4%;
	width: 92%;
	height: 3px;
	background-color: #dae0e6;
	border-radius: 2px;
	z-index: 1;
}


[data-theme="dark"] .category-header h2::before {
	background-color: #383842;
}


.category-header h2::after {
	content: '';
	display: block;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	border-radius: 2px;
	z-index: 2;
	transition: width 0.3s ease;
}


.category-card:hover .category-header h2::after {
	width: 92%;
}


.category-card.card-ru .category-header h2::after {
	background: var(--grad-ru);
}

.category-card.card-eng .category-header h2::after {
	background: var(--grad-eng);
}

.category-card.card-ua .category-header h2::after {
	background: var(--grad-ua);
}

.category-card.card-kz .category-header h2::after {
	background: var(--grad-kz);
}

.category-card.card-apps .category-header h2::after {
	background: var(--grad-apps);
}

.category-card.card-tv .category-header h2::after {
	background: var(--grad-tv);
}

.category-card.card-db .category-header h2::after {
	background: var(--grad-db);
}

.category-card.card-cartoons .category-header h2::after {
	background: var(--grad-cartoons);
}

.category-card.card-vpn .category-header h2::after {
	background: var(--grad-vpn);
}

.category-card.card-box .category-header h2::after {
	background: var(--grad-box);
}

.category-card.card-football .category-header h2::after {
	background: var(--grad-football);
}

.category-card.card-hockey .category-header h2::after {
	background: var(--grad-hockey);
}

.category-card.card-tennis .category-header h2::after {
	background: var(--grad-tennis);
}

.category-card.card-basketball .category-header h2::after {
	background: var(--grad-basketball);
}

.category-card.card-f1 .category-header h2::after {
	background: var(--grad-f1);
}

.main.single-post-page {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #fff;
	border-left: 2px solid #5ca2b7;
	border-top: 2px solid #5ca2b7;
	border-right: 2px solid #5ca2b7;
	border-radius: 10px 10px 0 0;
	padding: 0 15px 96px;
	box-sizing: border-box;
}


.breadcrumbs {
	padding: 20px 0;
	font-size: 14px;
	color: #666;
}

.breadcrumbs a {
	color: #5ca2b7;
	text-decoration: none;
	transition: color 0.2s;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.breadcrumbs .separator {
	margin: 0 8px;
	color: #ccc;
}

.breadcrumbs .current {
	color: #959292;
}


.post-body {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.post-image-block {
	width: 294px;
	height: 380px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	background-color: #f9f9f9;
}


.post-image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.post-image-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;

	transition: transform 0.4s ease-in-out;
}


.post-image-block:hover img {

	transform: scale(1.06);
}


.post-content-block {
	flex: 1;
}


.post-content-block h1 {
	font-size: 32px;
	color: #212529;
	line-height: 1.2;
	font-weight: bold;
}


.post-external-link {
	display: inline-block;
	text-decoration: none;
	color: #2eaf61;
	font-size: 14px;
	transition: color 0.2s;
}

.post-external-link i,
.favicon-bar-addressbar i,
.btn-main i {
	font-size: 13px;
	margin-right: 4px;
	color: #10abed;
}

.post-external-link:hover {
	color: #ff6729;
	text-decoration: underline;
}


.post-text {
	font-size: 16px;
	line-height: 1.6;
	color: #333333;
	scrollbar-width: thin;
	scrollbar-color: #dedede #fff;
}

.post-text p {
	text-align: justify;
	color: #4e4e4e;
	will-change: transform;
	font-size: 14px;
	line-height: 22px;
}

@media (min-width: 769px) {
	.post-body {
		display: flex;
		gap: 20px;
		align-items: stretch;
	}


	.post-sidebar {
		flex: 0 0 298px;
		display: flex;
		flex-direction: column;
	}


	.post-content-block {
		flex: 1;
		display: flex;
		flex-direction: column;
		min-height: 0;
		max-height: 565px;
	}


	.post-text {
		flex: 1;
		overflow-y: auto;
		padding-right: 10px;
	}
}


@media (max-width: 768px) {
	.post-body {
		flex-direction: column;
		align-items: center;
	}

	.post-sidebar {
		width: 100%;
		max-width: 300px;
		margin-bottom: 20px;
	}

	.post-content-block {
		width: 100%;
	}

	.post-text p {
		text-align: left;
	}
}


.post-image {
	border: 2px solid #5ca2b7;
	border-radius: 5px;
}

.post-image-block {
	width: 294px;
	height: 380px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	background-color: #f9f9f9;
}

.post-image-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0 0 5px 5px;
}

.favicon-bar-wrapper {
	background: #f3f3f3 url(img/top-bar.png) no-repeat left top;
	background-size: contain;
	width: 100%;
	height: 44px;
	overflow: hidden;
	border-radius: 5px 5px 0 0;
}

.favicon-bar-wrapper .favicon-bar-addressbar {
	text-align: center;
	justify-content: center;
	align-items: center;
	padding-left: 5px;
	display: flex;
	position: relative;
	top: 13px;
	left: 50%;
	transform: translate(-50%);
}

.favicon-bar-wrapper .favicon-bar-addressbar .favicon-bar-domain {
	color: #000;
	text-transform: lowercase;
	padding-top: 0;
	text-decoration: none;
	display: inline-block;
	position: relative;
	top: 0;
	left: 5px;
	font-size: 15px !important;
}

.favicon-bar-wrapper .favicon-bar-addressbar .favicon-bar-domain:before {
	content: "https://";
	color: #767676;
}

.link-disclaimer {
	text-align: center;
	color: #464646;
	margin-top: 6px;
	font-size: 11px;
	width: 100%;
	max-width: 294px;
	padding: 4px;
}

.btn-main {
	--animation-rgb-value: 118, 118, 118;
	color: #767676;
	text-transform: capitalize;
	border: 2px solid #5ca2b7;
	border-radius: 5px;
	justify-content: center;
	align-items: center;
	padding: 9px 7px 9px 8px;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	position: relative;
	text-decoration: none;
	text-align: center;
	margin: 10px 0;
}

.btn-main .text {
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0 5px;
	overflow: hidden;
}

.btn-main:hover {
	animation: 1s infinite pulse;
}


.post-content-block h1 {
	font-size: 32px;
	color: #212529;
	line-height: 1.2;
	font-weight: bold;
	margin-top: 10px;
}

.post-external-link {
	display: inline-block;
	text-decoration: none;
	color: #2eaf61;
	font-size: 14px;
	transition: color 0.2s;
	margin-bottom: 15px;
}

.post-external-link i,
.favicon-bar-addressbar i,
.btn-main i {
	font-size: 13px;
	margin-right: 4px;
	color: #10abed;
}

.post-external-link:hover {
	color: #ff6729;
	text-decoration: underline;
}

.post-text p {
	text-align: justify;
	color: #4e4e4e;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 12px;
}

.row-sites {
	z-index: 2;
	background-color: #f2f3f6;
	border-radius: 10px;
	width: 100%;
	padding: 3px 5px;
	overflow: hidden;
	text-decoration: none !important;
	justify-content: space-between;
	align-items: center;
	display: flex;
	border: 1px dashed #5ca2b7;
	background: #fff url(img/bg3.png) left 0 repeat-x;
}

.row-sites .title {
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #000;
	flex-grow: 1;
	flex-shrink: 1;
	margin: 0 15px 0 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 33px;
	overflow: hidden;
}

.row-sites .title .svg-icon {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	margin: -3px 0 0;
	display: inline-block;
}

.row-sites .title span {
	color: #767676;
}

.row-sites .title strong {
	font-weight: 500;
}

.row-sites .list-sites {
	text-align: right;
	flex-grow: 0;
	flex-shrink: 0;
	height: 30px;
	padding: 0 15px 0 7px;
	font-size: 0;
	position: relative;
}

.row-sites .list-sites .item-site {
	background-color: #fff;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	margin: 0 0 0 -7px;
	display: inline-flex;
	position: relative;
	box-shadow: 0 5px 9px #bfc0cb54;
}


.icon-site {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
}

.icon-site:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


.icon2079:before {
	background-image: url(img/fav.png);
}

.icon5228:before {
	background-image: url(img/fav.png);
}

.icon586:before {
	background-image: url(img/fav.png);
}

.icon2050:before {
	background-image: url(img/fav.png);
}

.icon6:before {
	background-image: url(img/fav.png);
}

.related-section {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed #5ca2b7;
}


.related-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	gap: 15px;
}

.related-header h2 {
	font-size: 24px;
	color: #212529;
	margin: 0;
	font-weight: bold;
}


.related-header .btn-main {
	margin: 0;
}


.related-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}


.related-grid-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
	background-color: #f9f9f9;
	aspect-ratio: 294 / 380;
}


.grid-item-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}


.related-grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease-in-out;
}


.related-grid-item:hover img {
	transform: scale(1.08);
}


.grid-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
	display: flex;
	align-items: flex-end;
	padding: 12px;
	box-sizing: border-box;
}


.grid-item-title {
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	width: 100%;
	text-align: center;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


@media (max-width: 1024px) {
	.related-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 650px) {
	.related-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.related-header .btn-main {
		width: 100%;
	}

	.related-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

.categories-triple-section {
	margin-top: 35px;
	padding-bottom: 20px;
}


.categories-grid-three {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}


.categories-grid-three .category-card {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	color: inherit;
}


.categories-grid-three .category-body {
	padding: 15px 16px 15px 16px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	position: relative;
	flex-grow: 1;
}


.card-sublinks-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 14px;
	margin-bottom: 25px;
}


.card-text-item {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}


.card-text-item .item-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	object-fit: contain;
}


.card-text-item .item-text {
	color: var(--text-muted, #666666);
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


.categories-grid-three .card-badge {
	position: absolute;
	bottom: 12px;
	right: 12px;
	padding: 2px 8px;
	border-radius: 10px;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


@media (max-width: 992px) {
	.categories-grid-three {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 650px) {
	.categories-grid-three {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}

@media (max-width: 480px) {

	.card-sublinks-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.main.category-page {
	max-width: 1200px;
	margin: 0 auto;
	background-color: var(--bg-card, #fff);
	border-left: 2px solid #5ca2b7;
	border-top: 2px solid #5ca2b7;
	border-right: 2px solid #5ca2b7;
	border-radius: 10px 10px 0 0;
	padding: 0 15px 96px;
	box-sizing: border-box;
}

.category-title {
	font-size: 28px;
	color: var(--text-main, #333);
}


.category-description-wrapper {
	margin-bottom: 30px;
}

.category-description-text {
	max-height: 4.2em;
	overflow: hidden;
	position: relative;
	line-height: 1.4;
	color: var(--text-main, #333);
	transition: max-height 0.3s ease;
}


.category-description-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 24px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--bg-card, #fff));
}

.category-description-text.expanded {
	max-height: 1200px;
}

.category-description-text.expanded::after {
	display: none;
}

.btn-toggle-desc {
	background: none;
	border: none;
	color: #5ca2b7;
	cursor: pointer;
	padding: 0;
	margin-top: 8px;
	font-size: 12px;
	text-decoration: underline;
}

.btn-toggle-desc:hover {
	text-decoration: none;
}


.category-unified-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 0; 
}

.category-sidebar {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    
    position: sticky;
    top: 20px; 
}


.sidebar-cat-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}


.sidebar-cat-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #5ca2b7;
	padding-bottom: 6px;
	transition: color 0.2s ease;
	border-bottom: 1px dashed #5ca2b7;
}


.sidebar-cat-link .cat-main-icon {
	width: 36px;
	height: 36px;
	object-fit: contain;
	margin-right: 6px;
	flex-shrink: 0;
}


.sidebar-cat-link .cat-details {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex-grow: 1;
	min-width: 0;
}


.sidebar-cat-link .cat-name {
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


.sidebar-cat-link .cat-meta {
	display: flex;
	align-items: center;
	gap: 6px;
}


.sidebar-cat-link .cat-mini-icons {
	display: flex;
	align-items: center;
	gap: 3px;
}


.sidebar-cat-link .cat-mini-icons img {
	width: 13px;
	height: 13px;
	object-fit: contain;
}


.sidebar-cat-link .cat-count {
	font-size: 12px;
	color: var(--text-muted, #666);
	font-weight: 500;
}


.sidebar-cat-link .cat-arrow {
	font-size: 12px;
	color: #5ca2b7;
	margin-left: auto;
	padding-left: 10px;
	flex-shrink: 0;
	transition: transform 0.2s ease, color 0.2s ease;
}


.sidebar-cat-link:hover {
	color: #000;
}

.sidebar-cat-link:hover .cat-arrow {
	color: #000;
	transform: translateX(3px);
}


.category-grid-item {
	display: flex;
	flex-direction: column;
	background-color: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-grid-item .grid-item-link {
	display: block;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 294 / 380;
}

.category-grid-item .grid-item-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease-in-out;
}

.category-grid-item .grid-item-link:hover img {
	transform: scale(1.08);
}


.category-grid-item .grid-item-description {
	margin-top: 8px;
	font-size: 13px;
	color: var(--text-muted, #666);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 4px;
}


@media (max-width: 992px) {
	.category-page-layout {
        grid-template-columns: 1fr;
    }
    
    .category-unified-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-sidebar {
        margin-bottom: 15px !important;
        position: static;
    }
}

@media (max-width: 576px) {
	.category-unified-grid {
        grid-template-columns: repeat(2, 1fr);
    }

	.category-sidebar {
		grid-column: 1 / span 2;
	}
}


.header-content-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}


.header-content-group h1 {
	margin: 0;
}


.header-quick-links {
	display: flex;
	align-items: center;
	gap: 10px;
}


.quick-link-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, opacity 0.2s ease;
}


.quick-link-item img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}


.quick-link-item:hover {
	transform: translateY(-2px);
	opacity: 0.8;
}


@media (max-width: 768px) {
	.header-content-group {
		align-items: center;
	}
}


.header-full-width {
	width: 100%;
	margin-bottom: 30px;
	position: relative;
	z-index: 10;
}


.header-flex-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;

}

.header-main-row {

	box-shadow: var(--card-shadow);
	background-color: #def3f8;
}


.header-full-width .logo {
	flex-shrink: 0;
	border: none;
}

.header-full-width .logo img {
	display: block;
	max-width: 250px;
	height: auto;
	border: none;
}


.header-title {
	font-size: 18px;
	color: var(--text-main);
	margin: 0;
	font-weight: 600;
	text-align: center;
	flex-grow: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.header-actions .quick-link-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #f2f3f6;
	transition: transform 0.2s, background-color 0.2s;
}

[data-theme="dark"] .header-actions .quick-link-item {
	background: #2a2d32;
}

.header-actions .quick-link-item:hover {
	transform: translateY(-2px);
	background: #e2e4e9;
}

[data-theme="dark"] .header-actions .quick-link-item:hover {
	background: #383c42;
}

.header-actions .quick-link-item img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}


.header-nav {
	max-width: 1200px;
	margin: 0 auto;

}

.nav-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;

}

.nav-list li {
	flex: 1;
	text-align: center;
}

.nav-list a {
	display: block;
	padding: 8px;
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	transition: color 0.3s, background-color 0.3s;
	background-color: #4b5050;
}


.nav-list li:not(:last-child) a {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-list a:hover {
	color: #fff;
	background-color: #646a6a;
}

.nav-list li:first-child a {
	border-bottom-left-radius: 8px;
}

.nav-list li:last-child a {
	border-bottom-right-radius: 8px;
}

.nav-list a:hover::after {
	width: 100%;
}

@media (max-width: 992px) {
	.header-flex-container {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.header-title {
		order: 3;
		width: 100%;
		margin-top: 10px;
		white-space: normal;
	}

	.nav-list {
		flex-wrap: wrap;
		padding: 0 10px;
	}

	.nav-list a {
		padding: 8px 0;
		font-size: 13px;
	}
}

@media (max-width: 600px) {
	.header-actions {
		gap: 8px;
	}

	.header-actions .quick-link-item {
		width: 32px;
		height: 32px;
	}
}

.quick-search-section {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 20px auto;
	border-radius: 8px;
	padding: 10px;
	background: #c9e9f2;
	border: 1px dashed #5ca2b7;
}

.search-title {
	text-align: center;
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--text-main);
	text-transform: capitalize;
}

.search-box {
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
}

.search-box input {
	width: 100%;
	padding: 15px 60px 15px 20px;
	font-size: 16px;
	border: 2px solid #ddd;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.3s;
	background: #f9f9f9;
}

.search-button {
	position: absolute;
	right: 5px;
	background: var(--grad-apps);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
	transition: transform 0.2s;
}

.search-button:hover {
	transform: scale(1.05);
}

.search-box input:focus {
	border-color: #ff4b2b;
}

.separator-block {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 40px 0;
	position: relative;

	overflow: hidden;
}


.line-left,
.line-right {
	height: 4px;
	flex-grow: 1;
}


.line-left {
	background-color: #212176;
}


.line-right {
	background-color: #ed6d29
}


.separator-icon {
	width: 80px;
	height: auto;
	margin-left: -13px;
	margin-right: -2px;
	z-index: 2;
}

.category-footer .read-more {
	background-color: #eee;
	border: 1px solid #e3e3e3;
	color: #5f5a5b;
	font-size: 13px;
	text-transform: capitalize;
	border-radius: 10px;
	height: 30px;
	line-height: 30px;
	display: block;
	text-decoration: none;
	white-space: nowrap;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 12px;
	padding-right: 12px;
}


@keyframes pulse-shadow {
	0% {
		box-shadow: 0 0 0 0px rgba(191, 191, 191, 0.8);
	}

	70% {
		box-shadow: 0 0 0 12px rgba(191, 191, 191, 0);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(191, 191, 191, 0);
	}
}


.category-footer .read-more:hover {
	animation: pulse-shadow 1.5s infinite;
}


.blog-section {
	max-width: 1200px;
	margin: 10px auto;
	background: #c5e7f0;
	padding: 15px 10px 15px 10px;
	border-radius: 15px;
	border: 1px dashed #5ca2b7;
}


.blog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}


.blog-item {
	display: block;
	padding: 4px;
	color: #ffffff;
	border: 2px solid #3088a3;
	background: #3088a3;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	box-sizing: border-box;
}


.blog-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}


.blog-item-title {
	margin: 10px 6px;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
}


.blog-item:hover {
	background: #def3f8;
	color: #3088a3;
	border: 2px solid #3088a3;
	animation: pulse-blog 1.5s infinite;
}


@keyframes pulse-blog {
	0% {
		box-shadow: 0 0 0 0px rgba(48, 136, 163, 0.8);
	}

	70% {
		box-shadow: 0 0 0 12px rgba(48, 136, 163, 0);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(48, 136, 163, 0);
	}
}


.blog-read-all {
	display: block;
	width: 100%;
	background-color: #def3f8;
	border: 1px solid #85b1bd;
	color: #3088a3;
	font-size: 13px;
	text-transform: capitalize;
	border-radius: 10px;
	text-align: center;
	padding: 10px 0;
	text-decoration: none;
	font-weight: 600;
	box-sizing: border-box;
	transition: all 0.3s ease;
}


.blog-read-all:hover {
	background: #e9fbff;
	border: 1px solid #9ac8d3;
}


@media (max-width: 992px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}


.archive-main-container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: var(--bg-card, #fff);
	border-left: 2px solid #5ca2b7;
	border-top: 2px solid #5ca2b7;
	border-right: 2px solid #5ca2b7;
	border-radius: 10px 10px 0 0;
	padding: 0 15px 96px;
	box-sizing: border-box;
}


.archive-title {
	font-size: 28px;
	color: #333;
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 700;
}


.blog-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 40px;
}


.BlogCard {
	display: flex;
	flex-direction: column;
	background-color: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.BlogCard:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.blog-card-img {
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.blog-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.BlogCard:hover .blog-card-img img {
	transform: scale(1.05);
}


.blog-card-content {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}


.blog-card-title {
	font-size: 16px;
	line-height: 1.4;
	margin: 0 0 10px 0;
	font-weight: 600;
}

.blog-card-title a {
	color: #33a2c4;
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-card-title a:hover {
	text-decoration: underline;
}


.blog-card-date {
	display: block;
	font-size: 12px;
	color: #999;
	margin-bottom: 12px;
}


.blog-card-desc {
	font-size: 13px;
	color: #5f5a5b;
	line-height: 1.5;
	margin: 0 0 20px 0;
	flex-grow: 1;


	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}


.BlogCard .read-more {
	margin-top: auto;
	background-color: #eee;
	border: 1px solid #e3e3e3;
	color: #5f5a5b;
	font-size: 13px;
	text-transform: capitalize;
	border-radius: 10px;
	height: 30px;
	line-height: 30px;
	display: block;
	text-decoration: none;
	white-space: nowrap;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 12px;
	padding-right: 12px;
}


@keyframes pulse-shadow {
	0% {
		box-shadow: 0 0 0 0px rgba(191, 191, 191, 0.8);
	}

	70% {
		box-shadow: 0 0 0 12px rgba(191, 191, 191, 0);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(191, 191, 191, 0);
	}
}


.BlogCard .read-more:hover {
	animation: pulse-shadow 1.5s infinite;
}


.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 50px;
}


.page-link {
	display: inline-block;
	min-width: 36px;
	height: 36px;
	line-height: 34px;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	box-sizing: border-box;
	border: 1px solid #e3e3e3;
	transition: all 0.2s ease;

	color: #e70542;
	background-color: #fff;
}

.page-link:hover:not(.current) {
	border-color: #33a2c4;
	color: #33a2c4;
	transform: translateY(-2px);
}


.page-link.current {
	border-color: #33a2c4;
	color: #fff;
	background-color: #33a2c4;
	cursor: default;
}


@media (max-width: 1200px) {
	.blog-archive-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.blog-archive-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.archive-title {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.blog-archive-grid {
		grid-template-columns: 1fr;
	}

	.blog-card-img {
		height: 200px;
	}
}


.error-page-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 80px 15px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(100vh - 350px);
}


.error-content-box {
	text-align: center;
	max-width: 600px;
	width: 100%;
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}


.error-code {
	font-size: 110px;
	line-height: 1;
	margin: 0 0 15px 0;
	font-weight: 900;
	letter-spacing: -2px;


	background: linear-gradient(135deg, #e70542, #33a2c4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;


	filter: drop-shadow(0 2px 8px rgba(51, 162, 196, 0.2));
}


.error-message {
	font-size: 22px;
	color: #333;
	margin: 0 0 15px 0;
	font-weight: 700;
	line-height: 1.3;
}


.error-description {
	font-size: 15px;
	color: #5f5a5b;
	line-height: 1.6;
	margin: 0 0 35px 0;
}


.error-actions-block {
	display: flex;
	justify-content: center;
}


.error-home-btn.read-more {
	display: inline-block;
	width: auto;
	padding: 0 30px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	font-weight: 600;


	background-color: #33a2c4;
	color: #fff;
	border: 1px solid #33a2c4;
	box-shadow: 0 4px 10px rgba(51, 162, 196, 0.2);
}


.error-home-btn.read-more:hover {
	background-color: #fff;
	color: #33a2c4;
	border-color: #33a2c4;
	animation: pulse-error-btn 1.5s infinite;
}


@keyframes pulse-error-btn {
	0% {
		box-shadow: 0 0 0 0px rgba(51, 162, 196, 0.7);
	}

	70% {
		box-shadow: 0 0 0 12px rgba(51, 162, 196, 0);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(51, 162, 196, 0);
	}
}


@media (max-width: 576px) {
	.error-page-container {
		padding: 40px 15px;
	}

	.error-code {
		font-size: 80px;
	}

	.error-message {
		font-size: 18px;
	}

	.error-description {
		font-size: 14px;
	}
}


.post-single {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto 50px auto;
}


.post-header {
	margin-bottom: 25px;
}

.post-main-title {
	font-size: 32px;
	color: #212529;
	margin: 0 0 12px 0;
	line-height: 1.3;
	font-weight: 700;
}

.post-date {
	font-size: 14px;
	color: #888;
}


.post-single p {
	font-size: 14px;
	line-height: 1.6;
	text-align: justify;
	margin-bottom: 25px;
	margin-top: 10px;
}

.post-single h2 {
	color: #3c8fa7;
	padding: 8px 8px;
	font-size: 18px;
	border-radius: 8px;
	line-height: 18px;
	margin-bottom: 8px;
	border-bottom: 3px solid #3c8fa7;
}

.post-single h3 {
	color: #3c8fa7;
	padding: 8px 8px;
	font-size: 16px;
	border-radius: 8px;
	line-height: 18px;
	margin-bottom: 8px;
	border-bottom: 3px solid #3c8fa7;
}


.post-single img {
	object-fit: cover;
	border-radius: 12px;
	display: block;
	text-align: center;
}


.image-caption {
	display: block;
	font-size: 13px;
	color: #666666;
	text-align: center;
	margin-top: 8px;
	font-style: italic;
}


.post-separator {
	display: flex;
	align-items: center;
	text-align: center;
	margin-bottom: 30px;
}

.post-separator::before,
.post-separator::after {
	content: '';
	flex: 1;
	border-bottom: 1px dashed #3088a3;
}

.post-separator:not(:empty)::before {
	margin-right: 15px;
}

.post-separator:not(:empty)::after {
	margin-left: 15px;
}

.separator-title {
	font-size: 18px;
	color: #3088a3;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}


@media (max-width: 768px) {
	.post-main-title {
		font-size: 26px;
	}

	.post-body h2 {
		font-size: 20px;
		margin: 25px 0 12px 0;
	}

	.post-body h3 {
		font-size: 18px;
	}

	.post-body p {
		font-size: 15px;
		line-height: 1.6;
	}
}

.desktop-nav {
	background-color: #212529;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.desktop-nav-list {
	display: flex;
	list-style: none;
	gap: 0;
	margin: 0;
	padding: 0;
}

.desktop-nav-list li a {
	display: block;
	padding: 12px 18px;
	color: #e2e8f0;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s, background 0.2s;
}

.desktop-nav-list li a:hover {
	color: #ff416c;
	background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 994px) {


	.category-sidebar,
	.header-actions,
	.header-title {
		display: none !important;
	}

	.desktop-nav {
		display: none !important;
	}


	.hamburger-btn {
		display: flex !important;
		position: absolute;
		right: 15px;
		top: calc(50% - 22px);
		z-index: 120;
	}

	.hamburger-btn:hover {
		background: rgba(255, 255, 255, 0.1);
		color: #ff416c;
	}

	.hamburger-btn:active {
		transform: scale(0.9);
		background: rgba(255, 255, 255, 0.15);
	}

	[data-theme="dark"] .hamburger-btn:hover {
		color: #f9d423;
	}


	.header-flex-container {
		justify-content: center !important;
		position: relative;
		height: 65px;
		display: flex;
		align-items: center;
	}

	.logo {
		margin: 0 auto;
		display: block;
	}

	.logo-img {
		width: 160px;
	}


	.header-bottom-row {
		display: none !important;
		position: fixed;
		top: 65px;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 100;
		pointer-events: none;
	}

	.header-bottom-row.active {
		display: block !important;
		pointer-events: auto;
	}


	.header-bottom-row .container,
	.header-bottom-row .header-nav {
		height: 100%;
		margin: 0;
		padding: 0;
	}


	.nav-list {
		display: none !important;
		width: 100%;
		height: 100%;
		background-color: #212529;
		border-radius: 0;
		margin: 0;
		padding: 0;
		box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
		overflow: hidden;
		pointer-events: auto;
	}

	.nav-list.active {
		display: flex !important;
		align-items: stretch;
		border-radius: 0;
	}

	.nav-list li:first-child a {
		border-bottom-left-radius: 0;
	}

	.nav-list li:last-child a {
		border-bottom-right-radius: 0;
	}


	.nav-list.active .nav-left-panel,
	.nav-list.active .nav-right-panel {
		display: flex !important;
		flex-direction: column;
		flex: 1;
		max-height: 100%;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nav-list.active .nav-left-panel {
		background-color: #363636;
		border-right: 1px solid rgba(255, 255, 255, 0.08);
	}

	.nav-list.active .nav-right-panel {
		background-color: #c5e7f0;
	}

	.nav-right-panel a {
		background: none;
		color: #000;
	}


	.nav-list.active .nav-left-panel::-webkit-scrollbar,
	.nav-list.active .nav-right-panel::-webkit-scrollbar {
		width: 4px;
	}

	.nav-list.active .nav-left-panel::-webkit-scrollbar-thumb,
	.nav-list.active .nav-right-panel::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.15);
		border-radius: 4px;
	}


	.main-menu-links {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.mobile-theme-item {
		display: block !important;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
	}

	.theme-toggle-mobile {
		width: 100%;
		background: transparent;
		border: none;
		color: #ff416c;
		padding: 14px 15px;
		font-size: 14px;
		font-family: inherit;
		font-weight: 600;
		cursor: pointer;
		text-align: left;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	[data-theme="dark"] .theme-toggle-mobile {
		color: #f9d423;
	}

	.nav-list li,
	.nav-right-panel li {
		width: 100%;
		list-style: none;
	}

	.nav-list a,
	.nav-right-panel .sidebar-cat-link,
	.nav-right-panel a {
		display: flex;
		align-items: center;
		padding: 12px 15px;
		color: #e2e8f0;
		text-decoration: none;
		font-size: 14px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		width: 100%;
		box-sizing: border-box;
	}

	.nav-right-panel .sidebar-cat-link {
		white-space: normal;
		overflow: visible;
		padding: 8px;
		border-bottom-color: #afd8e3;
	}

	.sidebar-cat-link .cat-main-icon {
		display: none;
	}


	.main-menu-links li:last-child a,
	.nav-right-panel li:last-child a,
	.nav-right-panel .sidebar-cat-link:last-child {
		border-bottom: none;
	}


	.nav-right-panel .sidebar-cat-link .cat-name,
	.nav-right-panel .sidebar-cat-link .cat-count,
	.nav-right-panel .sidebar-cat-link .cat-arrow {
		color: #000 !important;
		font-size: 12px;
		font-weight: normal;
	}

	.nav-right-panel .sidebar-cat-link:hover .cat-name,
	.nav-right-panel .sidebar-cat-link:hover .cat-arrow {
		color: #ff416c !important;
	}
}


.hamburger-btn {
	background: #000;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 10px 14px;
	cursor: pointer;
	font-size: 20px;
	display: none;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.hamburger-btn:hover {
	background: #333;
}

body.no-scroll {
	overflow: hidden !important;
	height: 100vh !important;
	position: fixed;
	width: 100%;
}

@media (min-width: 995px) {

	.main-menu-links-mobile {
		display: flex;
		flex-direction: column;
		width: 100%;
	}


	.header-bottom-row {
		display: block !important;
	}


	.nav-right-panel,
	.theme-toggle-mobile,
	.mobile-theme-item {
		display: none !important;
	}


	.header-bottom-row .main-menu-links,
	.main-menu-links {
		display: flex !important;
		flex-direction: row !important;
		list-style: none;
		width: 100%;
	}

	.main-menu-links li a {
		display: block;
		padding: 10px;
	}

	.nav-left-panel {
		width: 100%;
	}
}


.category-page-layout {
    display: grid;
    grid-template-columns: 260px 1fr; 
    gap: 20px;
    align-items: start;
    margin-top: 15px;
}