/* LORDFILM 2025 - Modern Minimal Dark Theme
   Console-style design without gradients and lift effects
   ================================================== */

:root {
	--bg-primary: #0a0a0a;
	--bg-secondary: #111111;
	--bg-card: #161616;
	--bg-hover: #1c1c1c;
	--text-primary: #f5f5f5;
	--text-secondary: #a0a0a0;
	--text-muted: #666666;
	--accent: #e50914;
	--accent-hover: #ff1a1a;
	--border: #252525;
	--border-light: #333333;
	--kp-color: #ff6600;
	--imdb-color: #f5c518;
	--success: #22c55e;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--transition: 0.2s ease;
	--font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* SMOKE CURSOR EFFECT - disabled on mobile */
#smoke-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9999;
}

@media (max-width: 768px) {
	#smoke-canvas {
		display: none !important;
	}
}

/* GLOW EFFECTS */
.btn--primary,
.btn--accent,
.vote-btn--up,
.player__tab.current {
	box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.rating-badge--kp {
	box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}

.rating-badge--imdb {
	box-shadow: 0 0 15px rgba(245, 197, 24, 0.2);
}

/* PULSE ANIMATION ON CARDS */
.card:hover .card__play-icon {
	animation: pulse 1s ease infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

/* SHINE EFFECT ON BUTTONS */
.btn--primary,
.btn--accent {
	position: relative;
	overflow: hidden;
}

.btn--primary::after,
.btn--accent::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 40%,
		rgba(255,255,255,0.1) 50%,
		transparent 60%
	);
	transform: translateX(-100%);
	transition: none;
}

.btn--primary:hover::after,
.btn--accent:hover::after {
	animation: shine 0.6s ease;
}

@keyframes shine {
	to { transform: translateX(100%); }
}

/* GLITCH EFFECT ON LOGO HOVER */
.logo:hover .logo__text {
	animation: glitch 0.3s ease;
}

@keyframes glitch {
	0%, 100% { transform: translate(0); }
	20% { transform: translate(-2px, 2px); }
	40% { transform: translate(2px, -2px); }
	60% { transform: translate(-1px, -1px); }
	80% { transform: translate(1px, 1px); }
}

/* FLOATING ANIMATION */
.full__poster {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* BACKGROUND PATTERN */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.02) 0%, transparent 40%),
		radial-gradient(circle at 40% 80%, rgba(100, 100, 255, 0.02) 0%, transparent 40%);
	pointer-events: none;
	z-index: -1;
}

/* CARD BORDER GLOW ON HOVER */
.card:hover {
	border-color: rgba(229, 9, 20, 0.3);
	box-shadow: 0 0 30px rgba(229, 9, 20, 0.1);
}

/* TYPING CURSOR IN SEARCH */
.search-field input:focus::placeholder {
	animation: typing-cursor 1s step-end infinite;
}

@keyframes typing-cursor {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

/* SMOOTH REVEAL ON SCROLL */
.card,
.section {
	opacity: 0;
	transform: translateY(20px);
	animation: revealUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6) { animation-delay: 0.3s; }

@keyframes revealUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* NEON UNDERLINE ON NAV HOVER */
.nav__link {
	position: relative;
}

.nav__link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent);
	box-shadow: 0 0 10px var(--accent);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav__link:hover::after {
	width: 100%;
}

/* SCROLL REVEAL */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger animation for cards */
.cards-grid .card.reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.cards-grid .card.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .card.reveal-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.cards-grid .card.reveal-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.cards-grid .card.reveal-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.cards-grid .card.reveal-on-scroll:nth-child(6) { transition-delay: 0.3s; }

/* CARD 3D PARALLAX */
.card {
	transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	transform-style: preserve-3d;
}

/* FOCUS GLOW FOR INPUTS */
input:focus,
textarea:focus,
select:focus {
	box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
	border-color: var(--accent) !important;
}

/* Images load instantly now */

/* RIPPLE EFFECT ON BUTTONS */
.btn--primary,
.btn--accent,
.player__tab,
.share-btn {
	position: relative;
	overflow: hidden;
}

/* ACTIVE STATE SCALE */
button:active,
.btn:active {
	transform: scale(0.97);
}

/* HOVER LIFT FOR INTERACTIVE ELEMENTS */
.player__tab:hover,
.share-btn:hover {
	transform: translateY(-2px);
}

/* TEXT GRADIENT FOR HEADINGS */
.section__title,
.full__title {
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* COUNTER ANIMATION */
@keyframes countUp {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.rating-badge__value,
.vote-circle span {
	animation: countUp 0.5s ease;
}

/* MOBILE TOUCH FEEDBACK */
@media (hover: none) and (pointer: coarse) {
	.card:active {
		transform: scale(0.98);
		opacity: 0.9;
	}
	
	.reveal-on-scroll {
		opacity: 1;
		transform: none;
	}
}

/* SMOOTH PAGE TRANSITIONS */
.app {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* RESET & BASE */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-primary);
	background: var(--bg-primary);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--accent);
}

ul, ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: transparent;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
}

.hidden {
	display: none !important;
}

/* CONTAINER */
.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
}

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

/* APP LAYOUT */
.app {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.main {
	flex: 1;
	padding: 32px 0;
}

/* HEADER */
.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--bg-secondary);
	border-bottom: 1px solid var(--border);
}

.header__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
	height: 64px;
	display: flex;
	align-items: center;
	gap: 32px;
}

/* LOGO */
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.5px;
	flex-shrink: 0;
}

.logo__icon {
	width: 36px;
	height: 36px;
	background: var(--accent);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
}

.logo__text {
	color: var(--text-primary);
}

/* NAVIGATION */
.nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav__item {
	position: relative;
}

.nav__link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.nav__link:hover {
	color: var(--text-primary);
	background: var(--bg-hover);
}

.nav__link .fa {
	font-size: 10px;
	opacity: 0.5;
}

/* DROPDOWN */
.nav__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all var(--transition);
	z-index: 100;
}

.nav__item:hover .nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav__dropdown-inner {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 8px;
	min-width: 180px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.nav__dropdown--wide .nav__dropdown-inner {
	min-width: 400px;
}

.nav__dropdown-col {
	min-width: 120px;
}

.nav__dropdown a {
	display: block;
	padding: 8px 12px;
	font-size: 13px;
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	white-space: nowrap;
}

.nav__dropdown a:hover {
	color: var(--text-primary);
	background: var(--bg-hover);
}

/* SEARCH */
.header__search {
	flex: 1;
}

.search-field {
	position: relative;
	display: flex;
	align-items: center;
}

.search-field i.fa-magnifying-glass {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 14px;
	pointer-events: none;
}

.search-field input {
	width: 100%;
	height: 44px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 0 50px 0 44px;
	color: var(--text-primary);
	font-size: 14px;
	transition: all var(--transition);
}

.search-field input::placeholder {
	color: var(--text-muted);
}

.search-field input:focus {
	outline: none;
	border-color: var(--accent);
	background: var(--bg-card);
}

.search-btn {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%) !important;
	width: 32px;
	height: 32px;
	background: var(--accent);
	border: none;
	border-radius: var(--radius-md);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	overflow: hidden;
}

.search-btn i {
	position: static;
	left: 0;
	color: white;
	line-height: 1;
	transform: none;
}

.search-btn:hover {
	background: var(--accent-hover);
}

.search-btn:active {
	transform: translateY(-50%) !important;
}

.search-btn:focus {
	outline: none;
}

/* USER BUTTON */
.header__user {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	transition: all var(--transition);
}

.header__user:hover {
	color: var(--text-primary);
	border-color: var(--border-light);
}

/* BURGER */
.header__burger {
	display: none;
	width: 32px;
	height: 32px;
	position: relative;
	z-index: 1001;
}

.header__burger span,
.header__burger span::before,
.header__burger span::after {
	position: absolute;
	width: 20px;
	height: 2px;
	background: var(--text-primary);
	transition: all var(--transition);
}

.header__burger span {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header__burger span::before,
.header__burger span::after {
	content: '';
	left: 0;
}

.header__burger span::before {
	top: -6px;
}

.header__burger span::after {
	top: 6px;
}

.header__burger.active span {
	background: transparent;
}

.header__burger.active span::before {
	top: 0;
	transform: rotate(45deg);
}

.header__burger.active span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* SECTIONS */
.section {
	margin-bottom: 48px;
}

.section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.section__title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.section__link {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
}

.section__link:hover {
	color: var(--accent);
}

/* TABS */
.tabs {
	display: flex;
	gap: 4px;
	background: var(--bg-card);
	padding: 4px;
	border-radius: var(--radius-md);
}

.tabs__btn {
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.tabs__btn:hover {
	color: var(--text-primary);
}

.tabs__btn.is-active {
	background: var(--bg-hover);
	color: var(--text-primary);
}

/* CARDS GRID */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 20px;
}

@media (min-width: 1200px) {
	.cards-grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

/* CARD */
.card {
	position: relative;
	display: block;
	background: var(--bg-card);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border);
	transition: border-color var(--transition);
}

.card:hover {
	border-color: var(--border-light);
}

.card__poster {
	position: relative;
	aspect-ratio: 2/3;
	overflow: hidden;
	background: var(--bg-secondary);
}

.card__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity var(--transition);
}

.card:hover .card__poster img {
	opacity: 0.8;
}

.card__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--transition);
}

.card:hover .card__play {
	opacity: 1;
}

.card__play-icon {
	width: 48px;
	height: 48px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	padding-left: 3px;
}

.card__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 4px 8px;
	background: var(--accent);
	color: white;
	font-size: 11px;
	font-weight: 600;
	border-radius: var(--radius-sm);
}

.card__info {
	padding: 12px;
}

.card__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--text-muted);
}

.card__year {
	color: var(--text-secondary);
}

.card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.card__rating--kp::before {
	content: 'KP';
	font-size: 9px;
	font-weight: 700;
	color: var(--kp-color);
}

.card__rating--imdb::before {
	content: 'IMDb';
	font-size: 9px;
	font-weight: 700;
	color: var(--imdb-color);
}

/* BREADCRUMBS */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.breadcrumbs a {
	color: var(--text-secondary);
}

.breadcrumbs a:hover {
	color: var(--text-primary);
}

/* FULL STORY */
.full {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	overflow: hidden;
}

.full__header {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	padding: 32px;
}

@media (max-width: 768px) {
	.full__header {
		grid-template-columns: 1fr;
		padding: 20px;
	}
}

.full__poster {
	position: relative;
}

.full__poster-img {
	aspect-ratio: 2/3;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--bg-secondary);
}

.full__poster-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.full__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 10px;
	background: var(--accent);
	color: white;
	font-size: 12px;
	font-weight: 600;
	border-radius: var(--radius-sm);
}

.full__content {
	display: flex;
	flex-direction: column;
}

.full__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.full__subtitle {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.full__desc {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.full__meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 32px;
	margin-bottom: 24px;
}

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

.full__meta-item {
	display: flex;
	gap: 8px;
	font-size: 14px;
	line-height: 1.5;
}

.full__meta-label {
	color: var(--text-muted);
	flex-shrink: 0;
}

.full__meta-value {
	color: var(--text-primary);
}

.full__meta-value a {
	color: var(--accent);
}

.full__ratings {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.rating-box {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--bg-secondary);
	border-radius: var(--radius-md);
}

.rating-box__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.rating-box--kp .rating-box__label {
	color: var(--kp-color);
}

.rating-box--imdb .rating-box__label {
	color: var(--imdb-color);
}

.rating-box__value {
	font-size: 18px;
	font-weight: 700;
}

.full__actions {
	display: flex;
	gap: 12px;
	margin-top: auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	border-radius: var(--radius-md);
	transition: all var(--transition);
}

.btn--primary {
	background: var(--accent);
	color: white;
}

.btn--primary:hover {
	background: var(--accent-hover);
	color: white;
}

.btn--secondary {
	background: var(--bg-secondary);
	color: var(--text-primary);
	border: 1px solid var(--border);
}

.btn--secondary:hover {
	background: var(--bg-hover);
	border-color: var(--border-light);
}

/* PLAYER */
.player-section {
	background: var(--bg-secondary);
}

.player__tabs {
	display: flex;
	gap: 0;
	background: var(--bg-primary);
	border-bottom: 1px solid var(--border);
}

.player__tab {
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: all var(--transition);
}

.player__tab:hover {
	color: var(--text-secondary);
}

.player__tab.current {
	color: var(--text-primary);
	border-bottom-color: var(--accent);
}

.player__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	padding: 12px 24px;
	background: var(--bg-primary);
}

.player__control {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-muted);
	transition: color var(--transition);
}

.player__control:hover {
	color: var(--text-primary);
}

.player__frame {
	aspect-ratio: 16/9;
	background: #000;
	position: relative;
}

.player__frame iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.player__loader {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #000;
	color: var(--text-muted);
	gap: 12px;
}

.player__loader .fa-spinner {
	font-size: 32px;
	color: var(--accent);
}

/* SHARE */
.share {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px;
	background: var(--bg-primary);
}

.share__btn {
	width: 40px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	font-size: 14px;
	color: white;
	transition: opacity var(--transition);
}

.share__btn:hover {
	opacity: 0.8;
	color: white;
}

.share__btn--vk { background: #4c75a3; }
.share__btn--tg { background: #0088cc; }
.share__btn--ok { background: #ee8208; }
.share__btn--tw { background: #1da1f2; }
.share__btn--fb { background: #4267b2; }

/* COMMENTS */
.comments-section {
	margin-top: 48px;
	padding: 0 32px;
}

.comments-section__title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.comments-section__title i {
	color: var(--accent);
}

.comments-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.comments-form.first {
	order: -1;
}

/* COMMENT ITEM */
.comment {
	display: flex;
	gap: 12px;
	padding: 16px;
	background: var(--bg-card);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	margin-bottom: 12px;
}

.comment__avatar {
	width: 40px;
	height: 40px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	flex-shrink: 0;
}

.comment__body {
	flex: 1;
	min-width: 0;
}

.comment__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.comment__author {
	font-weight: 600;
	color: var(--accent);
	font-size: 14px;
}

.comment__date {
	font-size: 12px;
	color: var(--text-muted);
}

.comment__badge {
	font-size: 11px;
	padding: 2px 8px;
	background: var(--accent);
	color: white;
	border-radius: var(--radius-sm);
	font-weight: 500;
}

.comment__text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-secondary);
}

.comment__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 12px;
}

.comment__action {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	color: var(--text-muted);
}

.comment__action:hover {
	color: var(--text-primary);
}

.comment__rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.comment__rating button {
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	color: var(--text-muted);
	transition: color 0.2s;
}

.comment__rating button:hover {
	color: var(--accent);
}

/* COMMENT FORM */
.comment-form {
	background: var(--bg-card);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	padding: 20px;
}

.comment-form__inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 12px;
}

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

.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	color: var(--text-primary);
	transition: all var(--transition);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
	color: var(--text-muted);
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--border-light);
}

.comment-form textarea {
	min-height: 100px;
	resize: vertical;
	margin-bottom: 12px;
}

.comment-form button[type="submit"] {
	width: 100%;
	padding: 14px;
	background: var(--accent);
	color: white;
	font-size: 14px;
	font-weight: 600;
	border-radius: var(--radius-md);
	transition: background var(--transition);
}

.comment-form button[type="submit"]:hover {
	background: var(--accent-hover);
}

/* RELATED */
.related-section {
	margin-top: 48px;
	padding: 32px;
	margin-bottom: 32px;
}

.related-section__title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
}

/* PAGINATION */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.pagination a,
.pagination span {
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 500;
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	background: var(--bg-card);
	color: var(--text-secondary);
	transition: all var(--transition);
}

.pagination a:hover {
	border-color: var(--border-light);
	color: var(--text-primary);
}

.pagination span:not(.nav_ext) {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
}

.pagination .nav_ext {
	background: transparent;
	border-color: transparent;
	color: var(--text-muted);
}

.load-more {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.load-more a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	transition: all var(--transition);
}

.load-more a:hover {
	border-color: var(--border-light);
	background: var(--bg-hover);
}

/* FOOTER */
.footer {
	background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
	border-top: 1px solid var(--border);
	padding: 40px 0 20px;
	margin-top: auto;
}

.footer__content {
	text-align: center;
}

.footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--text-primary);
}

.footer__logo i {
	color: var(--accent);
}

.footer__text {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 15px;
}

.footer__copy {
	font-size: 12px;
	color: var(--text-muted);
	opacity: 0.6;
}

/* LOGIN MODAL */
.login-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9998;
	display: none;
}

.login-box {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 400px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	z-index: 9999;
	display: none;
}

.login-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 18px;
	cursor: pointer;
	transition: color var(--transition);
}

.login-close:hover {
	color: var(--text-primary);
}

.login-title {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 24px;
}

.login-avatar {
	width: 64px;
	height: 64px;
	background: var(--bg-secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-size: 24px;
	color: var(--text-muted);
	overflow: hidden;
}

.login-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.login-input {
	margin-bottom: 16px;
}

.login-input input {
	width: 100%;
	height: 48px;
	padding: 0 16px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	color: var(--text-primary);
	font-size: 15px;
}

.login-input input::placeholder {
	color: var(--text-muted);
}

.login-input input:focus {
	outline: none;
	border-color: var(--border-light);
}

.login-check {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.login-check input {
	width: 18px;
	height: 18px;
	accent-color: var(--accent);
}

.login-check span {
	font-size: 14px;
	color: var(--text-secondary);
}

.login-btn button {
	width: 100%;
	height: 48px;
	background: var(--accent);
	color: white;
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--radius-md);
	margin-bottom: 16px;
	transition: background var(--transition);
}

.login-btn button:hover {
	background: var(--accent-hover);
}

.login-btm {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}

.login-btm a {
	color: var(--text-secondary);
}

.login-btm a:hover {
	color: var(--accent);
}

.login-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 16px;
}

.login-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	background: var(--bg-secondary);
	border-radius: var(--radius-md);
	font-size: 13px;
	color: var(--text-secondary);
	transition: all var(--transition);
}

.login-menu li a:hover {
	background: var(--bg-hover);
	color: var(--text-primary);
}

.login-soc-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 24px 0 16px;
	font-size: 13px;
	color: var(--text-muted);
}

.login-soc-title::before,
.login-soc-title::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--border);
}

.login-soc-btns {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.login-soc-btns a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}

.login-soc-btns img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* MOBILE MENU */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-primary);
	z-index: 999;
	padding: 70px 20px 20px;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu .search-field {
	margin-bottom: 20px;
}

.mobile-menu .search-field input {
	height: 48px;
	width: 100%;
}

.mobile-nav-item {
	border-bottom: 1px solid var(--border);
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-primary);
}

.mobile-nav-link i {
	font-size: 12px;
	color: var(--text-muted);
	transition: transform 0.3s;
}

.mobile-nav-item.open .mobile-nav-link i {
	transform: rotate(180deg);
}

.mobile-nav-dropdown {
	display: none;
	background: var(--bg-secondary);
	padding: 10px 15px 15px;
	margin-bottom: 5px;
	border-radius: var(--radius-md);
}

.mobile-nav-item.open .mobile-nav-dropdown {
	display: block;
}

.mobile-nav-dropdown a {
	display: block;
	padding: 10px 0;
	color: var(--text-secondary);
	font-size: 14px;
	border-bottom: 1px solid var(--border);
}

.mobile-nav-dropdown a:last-child {
	border-bottom: none;
}

.mobile-nav-dropdown a:hover,
.mobile-nav-dropdown a:active {
	color: var(--accent);
}

/* SEO TEXT */
.seo-text {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 32px;
	margin-top: 48px;
}

.seo-text h1,
.seo-text h2,
.seo-text h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

.seo-text p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 16px;
}

.seo-text a {
	color: var(--accent);
}

/* UTILITIES */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
	.header__inner {
		padding: 0 16px;
	}
	
	.nav {
		display: none;
	}
	
	.header__burger {
		display: flex;
	}
	
	.header__search {
		flex: 1;
	}
	
	.header__user span {
		display: none;
	}
	
	.header__user {
		padding: 8px 12px;
	}
}

@media (max-width: 768px) {
	.main {
		padding: 24px 0;
	}
	
	.section {
		margin-bottom: 32px;
	}
	
	.section__title {
		font-size: 20px;
	}
	
	.comments-section {
		padding: 0 16px;
	}
	
	.related-section {
		padding: 32px 16px;
		margin-bottom: 24px;
	}
	
	.cards-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
	
	.card__info {
		padding: 10px;
	}
	
	.card__title {
		font-size: 13px;
	}
	
	.full__title {
		font-size: 22px;
	}
	
	.player__tabs {
		overflow-x: auto;
	}
	
	.player__tab {
		padding: 12px 16px;
		white-space: nowrap;
	}
}

@media (max-width: 480px) {
	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.full__ratings {
		flex-direction: column;
	}
	
	.full__actions {
		flex-direction: column;
	}
	
	.full__actions .btn {
		width: 100%;
	}
}

/* SCROLLBAR */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
	background: var(--border-light);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--text-muted);
}

/* ANIMATIONS */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { 
		opacity: 0;
		transform: translateY(20px);
	}
	to { 
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeIn 0.3s ease;
}

.slide-up {
	animation: slideUp 0.3s ease;
}

/* DLE PUSH NOTIFICATIONS / ALERTS */
.DLEPush {
	position: fixed;
	z-index: 99999;
	max-width: 400px;
}

.DLEPush.top-right {
	top: 80px;
	right: 20px;
}

.DLEPush.top-left {
	top: 80px;
	left: 20px;
}

.DLEPush.bottom-right {
	bottom: 20px;
	right: 20px;
}

.DLEPush.bottom-left {
	bottom: 20px;
	left: 20px;
}

.DLEPush-notification.wrapper {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 16px;
	margin-bottom: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	animation: slideIn 0.3s ease;
}

.DLEPush-notification.push-error {
	border-color: var(--accent);
}

.DLEPush-notification.push-success {
	border-color: var(--success);
}

.DLEPush-notification.push-info {
	border-color: #3b82f6;
}

.DLEPush-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.push-error .DLEPush-icon {
	color: var(--accent);
}

.push-success .DLEPush-icon {
	color: var(--success);
}

.push-info .DLEPush-icon {
	color: #3b82f6;
}

.DLEPush-icon svg {
	width: 24px;
	height: 24px;
}

.DLEPush-header {
	font-weight: 600;
	margin-bottom: 4px;
}

.DLEPush-message {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.5;
}

.DLEPush-close {
	position: absolute;
	top: 8px;
	right: 8px;
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-size: 20px;
	cursor: pointer;
	padding: 4px;
	line-height: 1;
	transition: color var(--transition);
}

.DLEPush-close:hover {
	color: var(--text-primary);
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* jGrowl compatibility */
.jGrowl-notification {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 16px;
	margin-bottom: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	animation: slideIn 0.3s ease;
	color: var(--text-primary);
}

.jGrowl-close {
	position: absolute;
	top: 8px;
	right: 8px;
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-size: 20px;
	cursor: pointer;
}

/* ALERT / INFO BLOCK */
.alert {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-left: 4px solid #3b82f6;
	border-radius: var(--radius-md);
	padding: 20px;
	margin-bottom: 24px;
}

.alert__icon {
	flex-shrink: 0;
	font-size: 24px;
	color: #3b82f6;
}

.alert__text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-secondary);
}

.alert--error {
	border-left-color: var(--accent);
}

.alert--error .alert__icon {
	color: var(--accent);
}

.alert--success {
	border-left-color: var(--success);
}

.alert--success .alert__icon {
	color: var(--success);
}

.alert--info {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	margin-bottom: 20px;
	color: var(--text-secondary);
	font-size: 14px;
}

.alert--info i {
	color: #3b82f6;
	font-size: 18px;
}

/* SEARCH PAGE */
.search-page {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 30px;
	margin-bottom: 20px;
}

.search-page #searchtable {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.search-page input[type="text"] {
	width: 100%;
	height: 50px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 0 20px;
	color: var(--text-primary);
	font-size: 16px;
}

.search-page input[type="text"]:focus {
	border-color: var(--accent);
	outline: none;
}

.search-page input[type="submit"],
.search-page button {
	height: 50px;
	padding: 0 30px;
	background: var(--accent);
	border: none;
	border-radius: var(--radius-md);
	color: white;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.search-page input[type="submit"]:hover,
.search-page button:hover {
	background: var(--accent-hover);
}

/* DLE Search Table */
/* DLE Search Form */
.search-form-box {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 24px;
	margin-bottom: 24px;
}

.search-form-box table {
	width: 100%;
	border-collapse: collapse;
}

.search-form-box td {
	padding: 8px 0;
	vertical-align: middle;
}

.search-form-box tr:first-child td {
	padding-top: 0;
}

.search-form-box input[type="text"],
.search-form-box input.dle_inpfile {
	width: 100%;
	height: 48px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 0 16px;
	color: var(--text-primary);
	font-size: 15px;
	transition: all 0.2s;
}

.search-form-box input[type="text"]:focus,
.search-form-box input.dle_inpfile:focus {
	border-color: var(--accent);
	outline: none;
	background: var(--bg-primary);
}

.search-form-box input[type="submit"],
.search-form-box .bbcodes,
.search-form-box input[type="button"] {
	height: 48px;
	padding: 0 24px;
	border-radius: var(--radius-md);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	margin-right: 8px;
}

.search-form-box input[type="submit"] {
	background: var(--accent);
	border: none;
	color: white;
}

.search-form-box input[type="submit"]:hover {
	background: var(--accent-hover);
}

.search-form-box .bbcodes,
.search-form-box input[type="button"] {
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	color: var(--text-secondary);
}

.search-form-box .bbcodes:hover,
.search-form-box input[type="button"]:hover {
	background: var(--bg-hover);
	border-color: var(--border-light);
	color: var(--text-primary);
}

/* Search Info Message */
.search-info {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: var(--bg-card);
	border-radius: var(--radius-md);
	border-left: 3px solid #3b82f6;
	color: var(--text-secondary);
	font-size: 14px;
	margin-top: 16px;
}

.search-info i {
	color: #3b82f6;
	font-size: 18px;
}

/* Search Results */
#search-results {
	margin-top: 24px;
}

#search-results .cards-grid:empty {
	display: none;
}

/* LOADING */
.loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 60px 20px;
	color: var(--text-muted);
	font-size: 14px;
	grid-column: 1 / -1;
}

.loading i {
	font-size: 24px;
	color: var(--accent);
}

.error {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	color: var(--accent);
	font-size: 14px;
	text-align: center;
	grid-column: 1 / -1;
}

/* NOT FOUND */
.not-found {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
	text-align: center;
}

.not-found i {
	font-size: 64px;
	color: var(--text-muted);
	margin-bottom: 24px;
	opacity: 0.5;
}

.not-found p {
	font-size: 18px;
	color: var(--text-secondary);
}

/* LAZY IMAGES WITH SKELETON */
.card__poster,
.full__poster-img {
	position: relative;
	overflow: hidden;
}

.lazy-img {
	opacity: 0;
	transition: opacity 0.4s ease;
}

.lazy-img.lazy-loaded {
	opacity: 1;
}

/* Skeleton animation пока грузится картинка */
.card__poster:has(.lazy-img:not(.lazy-loaded)),
.full__poster-img:has(.lazy-img:not(.lazy-loaded)) {
	background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-card) 50%, var(--bg-secondary) 75%);
	background-size: 200% 100%;
	animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Poster image styles */
.card__poster img,
.full__poster-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.full__poster-img::after {
	content: '\f008';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 48px;
	color: var(--border-light);
	z-index: 2;
	opacity: 0.5;
}

.full__poster-img:has(.lazy-loaded)::after,
.full__poster-img.loaded::after {
	display: none;
}

/* XFSEARCH PAGES */
.xfsearch-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 24px;
}

/* SPEEDBAR / BREADCRUMBS OVERRIDE */
.speedbar a {
	color: var(--text-secondary);
}

.speedbar a:hover {
	color: var(--accent);
}

.speedbar span {
	color: var(--text-muted);
}

/* DLE DIALOG */
.ui-dialog {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-lg) !important;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
	padding: 0 !important;
}

.ui-dialog-titlebar {
	background: var(--bg-secondary) !important;
	border-bottom: 1px solid var(--border) !important;
	padding: 16px 20px !important;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}

.ui-dialog-title {
	color: var(--text-primary) !important;
	font-size: 16px !important;
	font-weight: 600 !important;
}

.ui-dialog-titlebar-close {
	background: transparent !important;
	border: none !important;
	color: var(--text-muted) !important;
	font-size: 18px !important;
	cursor: pointer !important;
}

.ui-dialog-content {
	padding: 20px !important;
	color: var(--text-secondary) !important;
}

.ui-dialog-buttonpane {
	background: var(--bg-secondary) !important;
	border-top: 1px solid var(--border) !important;
	padding: 16px 20px !important;
}

.ui-dialog-buttonpane button {
	background: var(--accent) !important;
	color: white !important;
	border: none !important;
	padding: 10px 20px !important;
	border-radius: var(--radius-md) !important;
	font-weight: 600 !important;
	cursor: pointer !important;
}

/* DLE STANDART ELEMENTS */
#loading-layer {
	background: rgba(0, 0, 0, 0.8) !important;
}

#loading-layer span {
	background: var(--bg-card) !important;
	color: var(--text-primary) !important;
	border-radius: var(--radius-md) !important;
	padding: 20px 30px !important;
}

/* SEARCH SUGGESTIONS */
#searchsuggestions {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	margin-top: 4px;
	overflow: hidden;
}

#searchsuggestions a {
	display: block;
	padding: 12px 16px;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border);
	transition: all var(--transition);
}

#searchsuggestions a:last-child {
	border-bottom: none;
}

#searchsuggestions a:hover {
	background: var(--bg-hover);
	color: var(--text-primary);
}

#searchsuggestions .seperator {
	display: none;
}

/* CATEGORY TITLE FOR XFSEARCH */
.section__title--xf {
	display: flex;
	align-items: center;
	gap: 12px;
}

.section__title--xf::before {
	content: '';
	width: 4px;
	height: 28px;
	background: var(--accent);
	border-radius: 2px;
}

