.browse-container {
	margin: 0 auto;
}

/* Browse bottom action buttons - reseed + scroll top */
.browse-bottom-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 20px 0;
	flex-wrap: wrap;
}

.browse-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 30px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid var(--border-color);
	background: var(--colhead-bg-color);
	color: var(--body-color);
}

.browse-action-btn:hover {
	background: var(--alertbox-color);
	transform: translateY(-2px);
}

.browse-action-btn i {
	font-size: 16px;
}

.browse-action-reseed {
	border-left: 4px solid var(--url-font-color);
}

.browse-action-reseed i {
	color: var(--url-font-color);
}

.browse-action-top {
	border-left: 4px solid var(--url-font-color);
}

.browse-action-top i {
	color: var(--url-font-color);
} 

.alert-panel {
	background: var(--alertbox-color);
	color: var(--body-color);
	padding: 15px 20px;
	margin: 5px 0px;
	border: 1px var(--global-border-style) var(--border-color);
	border-left: 5px solid var(--border-color);
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.alert-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(214, 214, 214, 0.1), transparent);
	transition: left 0.5s ease;
}
.alert-panel:hover::before {
	left: 100%;
}
.alert-panel:hover {
	border-left-color: var(--body-color);
	transform: translateX(5px);
}
.alert-panel a {
	color: var(--url-font-color);
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}
.alert-panel a:hover {
	color: var(--url-font-hover-color);
}
.search-panel {
	background: var(--mainouter-color);
	border: 1px var(--global-border-style) var(--border-color);
	margin-bottom: 20px;
	position: relative;
}
.search-header {
	background: var(--colhead-bg-color);
	color: var(--body-color);
	padding: 15px 20px;
	font-weight: bold;
	border-bottom: 2px var(--global-border-style) var(--border-color);
	font-size: 14px;
	position: relative;
}
.search-content {
	color: var(--body-color);
	font-size: 13px;
}
.search-content h3 {
	color: var(--url-font-color);
	font-size: 16px;
	margin: 5px 0 15px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}
.filter-section {
	margin: 10px;
	border: 1px solid var(--border-color);
	overflow: hidden;
	background: var(--mainouter-color);
	transition: all 0.3s ease;
}

.filter-header {
	cursor: pointer;
	padding: 12px 15px;
	background: var(--colhead-bg-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	user-select: none;
}
.filter-header:hover {
	background: var(--alertbox-color);
}
.filter-header h3 {
	margin: 0;
	padding: 0;
	border: none;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--body-color);
}
.filter-icon {
	transition: transform 0.3s ease;
	color: var(--url-font-color);
	font-size: 16px;
}
.filter-icon.open {
	transform: rotate(90deg);
}
.filter-content {
	padding: 0 15px;
	background: var(--mainouter-color);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}
.filter-content.open {
	max-height: 800px !important;
}
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 10px;
	margin: 15px 0;
}


.category-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	transition: all 0.3s ease;
	padding: 4px 8px;
}
.category-item:hover {
	background: var(--alertbox-color);
	transform: translateY(-2px);
}
.category-item input[type="checkbox"] {
	accent-color: var(--url-font-color);
	cursor: pointer;
	width: 16px;
	height: 16px;
	margin: 0;
}
.category-item a {
	color: var(--url-font-color);
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	transition: color 0.3s ease;
	line-height: 1.4;
}
.category-item a:hover {
	color: var(--body-color);
}
.genre-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 10px;
	margin: 15px 0;
}
.genre-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	transition: all 0.3s ease;
	padding: 4px 8px;
}
.genre-item:hover {
	background: var(--alertbox-color);
	transform: scale(1.05);
}
.genre-item input[type="checkbox"] {
	accent-color: var(--url-font-color);
	cursor: pointer;
	width: 16px;
	height: 16px;
	margin: 0;
}
.search-controls {
	margin: 10px;
	padding: 15px;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.search-input {
	background: var(--input-color);
	color: var(--input-text-color);
	border: 1px var(--global-border-style) var(--border-color);
	padding: 8px 12px;
	font-size: var(--input-font-size);
	width: 450px;
	transition: all 0.3s ease;
	height: 36px;
	box-sizing: border-box;
}
.search-input:focus {
	outline: none;
	border-color: var(--border-color);
	transform: scale(1.02);
}
.search-input::placeholder {
	color: var(--placeholder-color);
}
.search-select {
	background: var(--input-color);
	color: var(--input-text-color);
	border: 1px var(--global-border-style) var(--border-color);
	padding: 8px 12px;
	font-size: var(--input-font-size);
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 150px;
	height: 36px;
	box-sizing: border-box;
}
.search-select:hover {
	border-color: var(--border-color);
}
.search-button {
	background: var(--menu-background);
	color: var(--body-color);
	border: 1px var(--global-border-style) var(--border-color);
	padding: 8px 30px;
	font-size: var(--input-font-size);
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	height: 36px;
	box-sizing: border-box;
}
.search-button:hover {
	background: var(--menu-hover);
	transform: scale(1.05);
}
.search-button:active {
	transform: scale(0.98);
}
.featured-panel {
	background: var(--mainouter-color);
	border: 1px var(--global-border-style) var(--border-color);
	margin-bottom: 5px;
	overflow: hidden;
}
.featured-header {
	background: var(--colhead-bg-color);
	color: var(--body-color);
	padding: 15px 20px;
	font-weight: bold;
	border-bottom: 2px var(--global-border-style) var(--border-color);
	font-size: 14px;
	position: relative;
}
.featured-grid {
	display: flex;
	gap: 15px;
	padding: 20px;
	overflow: hidden;
	position: relative;
}
.featured-grid-wrapper {
	display: flex;
	gap: 15px;
	animation: marquee 30s linear infinite;
	white-space: nowrap;
}
.featured-grid-wrapper:hover {
	animation-play-state: paused;
}
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
.featured-item {
	text-align: center;
	width: 120px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.featured-item:hover {
	transform: scale(1.05);
}
.featured-poster {
	width: 120px;
	height: 180px;
	background-size: cover;
	background-position: center;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}
.featured-poster::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(214, 214, 214, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.featured-poster:hover::before {
	opacity: 1;
}
.featured-poster:hover {
	transform: scale(1.08);
	border-color: var(--border-color);
}
.featured-stats {
	font-size: 11px;
	color: var(--url-font-color);
	line-height: 1.6;
	background: var(--mainouter-color);
	padding: 8px;
	border: 1px solid var(--border-color);
	width: 120px;
	box-sizing: border-box;
}
.torrent-table {
	width: 100%;
	border-collapse: separate;
	background: transparent;
	margin: 0 auto;
	table-layout: auto;
	overflow: visible;
}
.torrent-table tbody {
	overflow: visible;
}
.torrent-header {
	background: var(--colhead-bg-color);
	position: relative;
}
.torrent-header th {
	padding: 12px 6px;
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	line-height: 1.4;
	color: var(--body-color);
	border: none;
	position: relative;
	white-space: nowrap;
}
.torrent-header a {
	color: var(--body-color);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}
.torrent-header a:hover {
	color: var(--url-font-color);
}
.torrent-row {
	background: var(--mainouter-color);
	position: relative;
	overflow: visible;
}
.torrent-row:hover {
	background: var(--alertbox-color);
	overflow: visible;
}
.torrent-row.downloaded {
	background: var(--torrent-downloaded-color);
	border-left: 4px solid var(--border-color);
}
.torrent-row td {
	padding: 0px 6px;
	vertical-align: middle;
	color: var(--body-color);
	font-size: 12px;
	line-height: 1.5;
	border-top: solid 1px var(--border-color);
	word-wrap: break-word;
	overflow: visible;
}
.torrent-row .torrent-category {
	border-left: 1px solid var(--border-color);
	padding: 0;
	margin: 0;
}
.torrent-row .torrent-stats:last-child {
	border-right: 1px solid var(--border-color);
}
.torrent-row:last-child td {
	border-bottom: 1px solid var(--border-color);
}
.col-type { 
	width: 50px; 
	text-align: center;
}
.col-title { 
	min-width: 350px;
	max-width: 500px;
}
.col-details, .col-check { 
	width: 35px; 
	text-align: center;
}
.col-comments { 
	width: 50px;
	text-align: center;
}
.col-date { 
	width: 90px;
	text-align: center;
}
.col-size { 
	width: 90px;
	text-align: center;
}
.col-completed { 
	width: 60px;
	text-align: center;
}
.col-seeders, .col-leechers { 
	width: 65px;
	text-align: center;
}
.torrent-category img {
	width: 76px;
	height: auto;
	transition: transform 0.3s ease;
}
.torrent-category img:hover {
	transform: scale(1.15) rotate(5deg);
}
.torrent-title {
	position: relative;
	min-width: 415px;
}
.torrent-title-link {
	color: var(--body-color);
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	line-height: 1.5;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 420px;
	transition: all 0.3s ease;
	position: relative;
}
.torrent-title-link:hover {
	color: var(--url-font-color);
	transform: translateX(3px);
}
.torrent-title-wrapper {
	position: relative;
	display: inline-block;
}
.torrent-subtitle {
	font-size: 11px;
	margin-top: 5px;
	line-height: 1.4;
	opacity: 0.8;
	display: block;
	clear: both;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 420px;
}
.torrent-subtitle:empty {
	display: none;
	margin-top: 0;
}
.torrent-meta {
	font-size: 10px;
	margin-top: 5px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 4px;
	min-height: 20px;
}
.torrent-meta:empty {
	display: none;
	margin-top: 0;
}
.torrent-meta span {
	display: inline-block;
}
.torrent-meta img {
	width: 16px;
	height: 16px;
	transition: all 0.3s ease;
	vertical-align: middle;
	display: inline-block;
}
.torrent-meta a {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}
.torrent-meta img:hover {
	transform: scale(1.2);
	filter: brightness(1.2);
}
.torrent-meta .uploader-link {
	margin-left: auto;
	white-space: nowrap;
	text-decoration: none;
	line-height: 1.4;
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 500;
}
.torrent-meta .reseed-separator {
	font-size: 11px;
	color: var(--body-color);
	opacity: 0.6;
	margin: 0 4px;
	line-height: 1.4;
	display: inline-flex;
	align-items: center;
}
.torrent-meta .reseed-text {
	font-size: 11px;
	color: var(--body-color);
	opacity: 0.9;
	white-space: nowrap;
	line-height: 1.4;
	display: inline-flex;
	align-items: center;
	font-weight: 400;
}
.torrent-meta .reseed-text a {
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.torrent-meta .reseed-text a:hover {
	opacity: 0.8;
	margin-left: 3px;
}
.torrent-meta .reseed-text a {
	text-decoration: none;
}
.uploader-link {
	text-decoration: none;
}
.uploader-link.deleted-user,
.reseed-text.deleted-user,
.deleted-user {
	opacity: 0.5;
	font-style: italic;
	cursor: default;
	pointer-events: none;
	color: var(--body-color) !important;
}
.torrent-stats {
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
}
.torrent-stats a {
	color: var(--url-font-color);
	text-decoration: none;
	transition: all 0.3s ease;
}
.torrent-stats a:hover {
	color: var(--body-color);
}
.badge {
	padding: 3px 6px;
	font-size: 9px;
	font-weight: bold;
	display: inline-block;
	margin: 2px;
}
.badge-success {
	background: linear-gradient(135deg, #00ff7f, #00cc66);
	color: #000;
}
.badge-danger {
	background: linear-gradient(135deg, #ff4444, #cc0000);
	color: #fff;
}
.badge-info {
	background: linear-gradient(135deg, #3498db, #2980b9);
	color: #fff;
}
.badge-warning {
	background: linear-gradient(135deg, #f39c12, #e67e22);
	color: #fff;
}
.table-container {
	width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	position: relative;
}
.rss-panel {
	background: var(--mainouter-color);
	border: 1px var(--global-border-style) var(--border-color);
}
.rss-header {
	background: var(--colhead-bg-color);
	color: var(--body-color);
	padding: 15px 20px;
	font-weight: bold;
	border-bottom: 2px var(--global-border-style) var(--border-color);
	font-size: 14px;
	position: relative;
}
.rss-content {
	padding: 20px;
	text-align: center;
	font-size: 14px;
}
.rss-input {
	background: var(--input-color);
	color: var(--input-text-color);
	border: 1px var(--global-border-style) var(--border-color);
	padding: 12px;
	width: 80%;
	font-weight: bold;
	font-size: 12px;
}
.rss-button {
	background: var(--colhead-bg-color);
	color: var(--body-color);
	border: 1px var(--global-border-style) var(--border-color);
	padding: 13px 25px;
	font-weight: bold;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.3s ease;
}
.rss-button:hover {
	transform: scale(1.05);
}
.no-results {
	text-align: center;
	padding: 60px;
	color: var(--body-color);
	font-size: 20px;
	font-weight: bold;
	background: var(--mainouter-color);
	border: 1px var(--global-border-style) var(--border-color);
	margin: 5px 0;
}
.poster-view-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background: var(--mainouter-color);
	border: 1px var(--global-border-style) var(--border-color);
	padding: 20px;
}
.poster-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 25px;
	width: 100%;
}
.poster-item {
	background: var(--mainouter-color);
	border: 2px var(--global-border-style) var(--border-color);
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}
.poster-item:hover {
	transform: translateY(-12px);
	border-color: var(--border-color);
}
.poster-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(214, 214, 214, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}
.poster-item:hover::before {
	opacity: 1;
}
.poster-image-container {
	position: relative;
	width: 100%;
	height: 320px;
	overflow: hidden;
	background: var(--alertbox-color);
}
.poster-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}
.poster-item:hover .poster-image-container img {
	transform: scale(1.1);
}
.poster-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 15px;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.poster-item:hover .poster-overlay {
	opacity: 1;
}
.poster-title {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 5px;
	line-height: 1.3;
}
.poster-subtitle {
	font-size: 11px;
	color: var(--url-font-color);
	font-style: italic;
}
.poster-subtitle:empty {
	display: none;
}
.poster-icons-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 12px 10px;
	background: var(--alertbox-color);
	border-bottom: 1px solid var(--border-color);
	min-height: 40px;
	order: -1;
}
.poster-icon {
	width: 16px;
	height: 16px;
	transition: all 0.3s ease;
	display: inline-block;
}
.poster-icon:hover {
	transform: scale(1.2);
	filter: brightness(1.2);
}
.poster-info {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	flex: 1;
}
.poster-stats-row {
	display: flex;
	justify-content: space-around;
	padding: 12px 10px;
	background: var(--mainouter-color);
	font-size: 11px;
	border-bottom: 1px solid var(--border-color);
}
.poster-stat {
	text-align: center;
	flex: 1;
}
.poster-stat-value {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: var(--url-font-color);
	margin-bottom: 3px;
}
.poster-stat-label {
	display: block;
	font-size: 9px;
	color: var(--body-color);
	text-transform: uppercase;
}
.poster-meta {
	font-size: 10px;
	color: var(--body-color);
	line-height: 1.6;
	padding: 12px 15px;
	background: var(--mainouter-color);
}
.poster-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
	padding: 3px 0;
	border-bottom: 1px solid var(--border-color);
}
.poster-meta-row:last-child {
	border-bottom: none;
}
.poster-meta-label {
	color: var(--url-font-color);
	font-weight: bold;
}
.poster-meta-value {
	text-align: right;
}
.poster-category {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	padding: 8px 10px;
	background: var(--colhead-bg-color);
	justify-content: center;
	border-bottom: 1px solid var(--border-color);
}
.poster-category img {
	width: 20px;
	height: auto;
}
.poster-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	padding: 12px 10px;
	border-top: 1px solid var(--border-color);
	margin-top: auto;
	background: var(--mainouter-color);
}
.poster-action-btn {
	flex: 1;
	padding: 12px 10px;
	background: var(--colhead-bg-color);
	color: var(--body-color);
	border: 1px solid var(--border-color);
	text-decoration: none;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.poster-action-btn i {
	font-size: 14px;
}
.poster-action-download {
	background: linear-gradient(135deg, #28a745 0%, #218838 100%);
	color: #fff;
	border-color: #1e7e34;
}
.poster-action-download:hover {
	background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
	transform: translateY(-2px);
}
.poster-action-details {
	background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
	color: #fff;
	border-color: #004085;
}
.poster-action-details:hover {
	background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
	transform: translateY(-2px);
}
.poster-external-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 8px;
	background: var(--alertbox-color);
}
.poster-external-links a {
	opacity: 0.7;
	transition: all 0.3s ease;
}
.poster-external-links a:hover {
	opacity: 1;
	transform: scale(1.2);
}
.poster-multipliers {
	display: flex;
	gap: 8px;
	font-size: 10px;
	justify-content: center;
	padding: 8px 10px;
	background: var(--mainouter-color);
	border-bottom: 1px solid var(--border-color);
}
.poster-multiplier {
	padding: 4px 8px;
	background: var(--alertbox-color);
	font-weight: bold;
}
.poster-multiplier.upload {
	color: #00ff7f;
}
.poster-multiplier.download {
	color: #ff6b6b;
}
.download-link {
	color: var(--url-font-color);
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 16px;
}
.download-link:hover {
	color: var(--body-color);
	transform: scale(1.15);
	filter: drop-shadow(0 0 6px var(--url-font-color));
}
.icon-link {
	display: inline-block;
	margin: 0 1px;
	transition: all 0.3s ease;
}
.icon-link img {
	width: auto;
	transition: all 0.3s ease;
}
.icon-link:hover img {
	transform: scale(1.2);
	filter: brightness(1.2);
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.6; }
}
.new-torrent-link {
	animation: pulse 2s infinite;
}
.torrent-quick-actions {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	gap: 5px;
	z-index: 10;
}
.torrent-row:hover .torrent-quick-actions {
	opacity: 1;
}
.quick-action-btn {
	background: var(--colhead-bg-color);
	color: var(--body-color);
	border: 1px solid var(--border-color);
	padding: 4px 2px;
	font-size: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	white-space: nowrap;
	min-width: 30px;
}
.quick-action-btn:hover {
	background: var(--url-font-color);
	color: var(--mainouter-color);
	transform: scale(1.1);
}
.quick-action-btn i {
	font-size: 13px;
}
.quick-action-bookmark-add {
	background: #28a745;
	border-color: #28a745;
	color: #fff;
}
.quick-action-bookmark-add:hover {
	background: #218838;
	border-color: #1e7e34;
	color: #fff;
}
.quick-action-bookmark-remove {
	background: #dc3545;
	border-color: #dc3545;
	color: #fff;
}
.quick-action-bookmark-remove:hover {
	background: #c82333;
	border-color: #bd2130;
	color: #fff;
}
.settings-button-container {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 999999999;
}
.settings-button {
	background: var(--colhead-bg-color);
	color: var(--body-color);
	border: 2px solid var(--border-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.settings-button:hover {
	transform: scale(1.1) rotate(90deg);
}
.settings-modal {
	display: none;
	position: fixed;
	z-index: 999999998;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	animation: fadeIn 0.3s ease;
	overflow-y: auto;
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.settings-modal-content {
	background: var(--alertbox-color);
	margin: 3% auto;
	padding: 0;
	border: 2px solid var(--border-color);
	width: 90%;
	max-width: 550px;
	max-height: 85vh;
	overflow: hidden;
	animation: slideDown 0.3s ease;
	position: relative;
	z-index: 999999999;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
@keyframes slideDown {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.settings-modal-header {
	background: var(--colhead-bg-color);
	color: var(--body-color);
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid var(--border-color);
}
.settings-modal-header h2 {
	margin: 0;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.settings-close {
	color: var(--url-font-color);
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 1;
	padding: 5px;
}
.settings-close:hover {
	color: #ff4444;
	transform: rotate(90deg);
}
.settings-modal-body {
	padding: 25px;
	color: var(--body-color);
	max-height: calc(85vh - 160px);
	overflow-y: auto;
}
.settings-group {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
}
.settings-group:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.settings-group label {
	display: block;
	font-weight: bold;
	font-size: 15px;
	margin-bottom: 12px;
	color: var(--url-font-color);
	display: flex;
	align-items: center;
	gap: 8px;
}
.settings-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.settings-radio,
.settings-checkbox {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	background: var(--mainouter-color);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	margin-bottom: 8px;
}
.settings-radio:last-child,
.settings-checkbox:last-child {
	margin-bottom: 0;
}
.settings-radio:hover,
.settings-checkbox:hover {
	background: var(--colhead-bg-color);
	border-color: var(--url-font-color);
	transform: translateX(3px);
}
.settings-radio input,
.settings-checkbox input {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	cursor: pointer;
	accent-color: var(--url-font-color);
}
.settings-radio span,
.settings-checkbox span {
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.settings-modal-footer {
	padding: 20px 25px;
	text-align: center;
	border-top: 2px solid var(--border-color);
	background: var(--colhead-bg-color);
}
.settings-save-button {
	background: var(--input-color);
	color: var(--input-text-color);
	border: 1px solid var(--border-color);
	padding: 12px 35px;
	font-size: 15px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.settings-save-button:hover {
	background: var(--mainouter-color);
	color: var(--url-font-color);
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.banner-center {
	text-align: center;
	margin-bottom: 20px;
}
.banner-img-small {
	width: 468px;
	height: 60px;
}
.banner-img-large {
	width: 728px;
	height: 90px;
}
.alert-text {
	text-align: center;
	font-size: 14px;
}
.genre-link {
	text-decoration: none;
	font-weight: bold;
}
.rss-info {
	margin-top: 15px;
	font-size: 12px;
}
.user-title-header {
	text-align: center;
	color: var(--body-color);
}
.user-title-link {
	text-decoration: none;
}
.ads-container {
	text-align: center;
	margin: 10px 0;
}
.torrent-title-cell {
	position: relative;
	overflow: visible;
}
.quick-action-delete {
	background: #dc3545;
	border-color: #dc3545;
}
.title-icons-wrapper {
	display: flex;
	align-items: center;
	gap: 5px;
}
.badge-new {
	cursor: pointer;
	font-size: 9px;
}
.icon-request {
	color: #00BFFF;
	font-size: 18px;
	position: absolute;
	right: 41px;
	top: 32px;
}
.icon-competition {
	font-size: 16px;
	color: #ff9900;
}
.hover-card-description {
	font-size: 10px;
	max-height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.icon-reseed {
	color: #1e90ff;
}
.meta-icons-wrapper {
	float: right;
}
.korhatar-icon {
	width: 20px;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 5px;
	right: 4px;
}
.verified-icon { color: green; }
.rejected-icon { color: red; }
.pending-icon { color: orange; }
.upload-download-stats { font-size: 9px; }
.ad-cell { text-align: center; padding: 20px; }
.reseed-link-wrapper {
	background: linear-gradient(135deg, var(--colhead-bg-color) 0%, var(--mainouter-color) 100%);
	border: 1px solid var(--border-color);
	margin: 20px 0;
	padding: 25px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
.reseed-link-wrapper::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}
.reseed-link-wrapper:hover::before { left: 100%; }
.reseed-link-wrapper:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.reseed-link-wrapper a { text-decoration: none; display: block; }
.reseed-link-title {
	color: var(--body-color);
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 0;
	transition: all 0.3s ease;
}
.reseed-link-title .fa-sync-alt {
	font-size: 24px;
	color: var(--url-font-color);
	animation: rotate 2s linear infinite;
}
.reseed-link-title .fa-chevron-right {
	font-size: 24px;
	color: var(--url-font-color);
	transition: transform 0.3s ease;
}
.reseed-link-wrapper:hover .reseed-link-title .fa-chevron-right { transform: translateX(10px); }
.reseed-link-wrapper:hover .reseed-link-title { color: var(--url-font-color); }
@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
.custom-tooltip {
	position: fixed;
	background: var(--alertbox-color);
	color: var(--placeholder-color);
	padding: 8px 12px;
	border-radius: 6px;
	font-family: var(--body-font-family);
	font-size: 11px;
	pointer-events: none;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
	border: 1px var(--global-border-style) var(--border-color);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	max-width: 300px;
	word-wrap: break-word;
	white-space: pre-wrap;
}
.custom-tooltip::before {
	content: '';
	position: absolute;
	border: 6px solid transparent;
}
.custom-tooltip.top::before { bottom: -12px; left: 50%; transform: translateX(-50%); border-top-color: var(--border-color); }
.custom-tooltip.bottom::before { top: -12px; left: 50%; transform: translateX(-50%); border-bottom-color: var(--border-color); }
.custom-tooltip.left::before { right: -12px; top: 50%; transform: translateY(-50%); border-left-color: var(--border-color); }
.custom-tooltip.right::before { left: -12px; top: 50%; transform: translateY(-50%); border-right-color: var(--border-color); }
.custom-tooltip.show { opacity: 1; visibility: visible; }
.torrent-hover-card-popup {
	position: fixed;
	z-index: 10000;
	width: 500px;
	background: var(--alertbox-color);
	border: 2px solid var(--border-color);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	pointer-events: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.torrent-hover-card-popup.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.hover-card-inner { display: flex; flex-direction: row; }
.hover-card-image { width: 180px; height: 250px; object-fit: cover; background: var(--alertbox-color); flex-shrink: 0; }
.hover-card-content { padding: 15px; flex: 1; display: flex; flex-direction: column; overflow-y: auto; max-height: 250px; }
.hover-card-title { font-size: 14px; font-weight: bold; color: var(--body-color); margin-bottom: 8px; line-height: 1.4; word-break: break-word; }
.hover-card-subtitle { font-size: 12px; color: var(--url-font-color); font-style: italic; margin-bottom: 12px; line-height: 1.3; word-break: break-word; }
.hover-card-info { font-size: 11px; color: var(--body-color); line-height: 1.6; padding-top: 10px; border-top: 1px solid var(--border-color); }
.hover-card-row { display: flex; justify-content: space-between; margin-bottom: 5px; }
.hover-card-label { color: var(--url-font-color); font-weight: bold; }
.browse-reseed-bar {
	text-align: center;
	padding: 10px 20px;
	margin-bottom: 5px;
	background: var(--colhead-bg-color);
	border: 1px solid var(--border-color);
	border-left: 4px solid var(--url-font-color);
}
.browse-reseed-bar a {
	color: var(--body-color);
	text-decoration: none;
	font-weight: bold;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}
.browse-reseed-bar a:hover { color: var(--url-font-color); }
.browse-reseed-bar i { color: var(--url-font-color); }
.scroll-top-button-container {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999999999;
}
.scroll-top-button {
	background: var(--colhead-bg-color);
	color: var(--body-color);
	border: 2px solid var(--border-color);
	border-radius: 8px;
	width: 44px;
	height: 44px;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.7;
}
.scroll-top-button:hover { opacity: 1; border-color: var(--url-font-color); }
.scroll-top-button i { color: var(--url-font-color); }

/* ===================== PAGER ===================== */
.ht-pager {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
	padding: 14px 10px;
	margin: 5px 0;
	background: var(--colhead-bg-color);
	border: 1px var(--global-border-style) var(--border-color);
}
.ht-pager-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 8px;
	background: var(--mainouter-color);
	color: var(--body-color);
	border: 1px var(--global-border-style) var(--border-color);
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
	user-select: none;
}
.ht-pager-btn:hover {
	background: var(--alertbox-color);
	color: var(--url-font-color);
	border-color: var(--url-font-color);
}
.ht-pager-current {
	background: var(--url-font-color);
	color: var(--mainouter-color);
	border-color: var(--url-font-color);
	cursor: default;
}
.ht-pager-current:hover {
	background: var(--url-font-color);
	color: var(--mainouter-color);
	border-color: var(--url-font-color);
}
.ht-pager-disabled {
	opacity: 0.35;
	cursor: default;
}
.ht-pager-disabled:hover {
	background: var(--mainouter-color);
	color: var(--body-color);
	border-color: var(--border-color);
}
.ht-pager-ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 34px;
	font-size: 13px;
	color: var(--body-color);
	opacity: 0.6;
}
.ht-pager-info {
	margin-left: 10px;
	font-size: 12px;
	color: var(--body-color);
	opacity: 0.7;
	white-space: nowrap;
}

/* ===================== TORRENT DETAILS PANEL ===================== */
.torrent-details-row td { padding: 0 !important; }
.torrent-details-panel { background: var(--mainouter-color); padding: 20px; border-top: 2px solid var(--border-color); }
.highlight-flash { animation: pulse 0.5s ease 3; }
.error-message { color: #ff4444; padding: 20px; text-align: center; }
.loading { text-align: center; padding: 20px; }