* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

::-webkit-scrollbar {
	width: 6px
}

::-webkit-scrollbar-track {
	background: rgba(10, 10, 10, 0.9);
	border-radius: 3px
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 150, 80, 0.4);
	border-radius: 3px;
	border: 1px solid rgba(0, 100, 50, 0.2)
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 180, 90, 0.5)
}

::-webkit-scrollbar-thumb:active {
	background: rgba(0, 200, 100, 0.6)
}

* {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 150, 80, 0.4) rgba(10, 10, 10, 0.9)
}

body {
	background: linear-gradient(135deg, #0a0a0a 0, #1a1a1a 100%);
	color: #e0e0e0;
	min-height: 100vh;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 150, 80, 0.4) rgba(10, 10, 10, 0.9)
}

.container {
	max-width: 900px;
	width: 100%;
	padding: 20px
}

.corner-language-switcher {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000
}

.language-dropdown {
	position: relative
}

.language-toggle {
	background: rgba(0, 255, 100, 0.1);
	border: 1px solid rgba(0, 255, 100, 0.3);
	color: #0f8;
	padding: 10px 15px;
	border-radius: 8px;
	cursor: pointer;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	backdrop-filter: blur(10px)
}

.language-toggle:hover {
	background: rgba(0, 255, 100, 0.2);
	box-shadow: 0 0 10px rgba(0, 255, 100, 0.3)
}

.language-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: rgba(20, 20, 20, 0.95);
	border: 1px solid rgba(0, 255, 100, 0.3);
	border-radius: 8px;
	padding: 8px;
	margin-top: 5px;
	min-width: 150px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1000;
	backdrop-filter: blur(10px)
}

.language-menu.show {
	display: block
}

.lang-option {
	background: transparent;
	border: 0;
	color: #e0e0e0;
	padding: 10px 12px;
	border-radius: 6px;
	cursor: pointer;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	text-align: left;
	font-size: .9rem
}

.lang-option:hover {
	background: rgba(0, 255, 100, 0.1);
	color: #0f8
}

.flag {
	font-size: 1.2rem;
	width: 24px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2px
}

.lang-text {
	display: flex;
	align-items: center;
	height: 100%
}

header {
	text-align: center;
	margin-bottom: 30px;
	padding: 0
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 8px;
	color: #fff;
	text-shadow: 0 0 10px #0f8, 0 0 20px #0f8, 0 0 30px #0f8;
	letter-spacing: 2px;
	font-weight: 700;
	word-break: break-word;
	line-height: 1.3
}

.subtitle {
	font-size: 1.1rem;
	color: #b0b0b0;
	margin-bottom: 15px
}

.filters-section {
	background: rgba(20, 20, 20, 0.8);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 25px;
	border: 1px solid rgba(0, 255, 100, 0.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5)
}

.filters-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	gap: 15px
}

.search-box {
	position: relative;
	flex: 1
}

.search-box input {
	width: 100%;
	padding: 12px 20px 12px 45px;
	border-radius: 8px;
	border: 1px solid rgba(0, 255, 100, 0.2);
	background: rgba(10, 10, 10, 0.8);
	color: #fff;
	font-size: 1rem;
	transition: all .3s ease
}

.search-box input:focus {
	outline: 0;
	border-color: #0f8;
	box-shadow: 0 0 10px rgba(0, 255, 100, 0.3)
}

.search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #0f8;
	font-size: 1.2rem
}

.toggle-filters {
	background: transparent;
	border: 1px solid rgba(0, 255, 100, 0.3);
	color: #0f8;
	width: 36px;
	height: 36px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s ease;
	flex-shrink: 0
}

.toggle-filters:hover {
	background: rgba(0, 255, 100, 0.1);
	box-shadow: 0 0 8px rgba(0, 255, 100, 0.3)
}

.filters-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: stretch
}

.filter-group {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	justify-content: flex-start
}

.filter-group label {
	margin-bottom: 8px;
	font-size: .85rem;
	color: #b0b0b0;
	height: 20px;
	display: flex;
	align-items: center
}

.filter-group input {
	padding: 8px 10px;
	border-radius: 6px;
	border: 1px solid rgba(0, 255, 100, 0.2);
	background: rgba(10, 10, 10, 0.8);
	color: #fff;
	font-size: .9rem;
	transition: all .3s ease;
	height: 36px
}

.filter-group input:focus {
	outline: 0;
	border-color: #0f8;
	box-shadow: 0 0 8px rgba(0, 255, 100, 0.2)
}

.slider-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 36px;
	margin-top: 0
}

.slider-values {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
	font-size: .75rem;
	color: #b0b0b0
}

.slider-value {
	background: rgba(0, 255, 100, 0.1);
	padding: 2px 6px;
	border-radius: 3px;
	border: 1px solid rgba(0, 255, 100, 0.2)
}

.filter-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 15px
}

.reset-btn {
	padding: 8px 16px;
	border-radius: 6px;
	border: 0;
	font-size: .85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s ease;
	background: rgba(255, 50, 50, 0.2);
	color: #ff6b6b;
	border: 1px solid rgba(255, 50, 50, 0.3)
}

.reset-btn:hover {
	background: rgba(255, 50, 50, 0.3);
	box-shadow: 0 0 8px rgba(255, 50, 50, 0.3)
}

.noUi-target {
	background: rgba(50, 50, 50, 0.8);
	border: 0;
	border-radius: 3px;
	box-shadow: none;
	height: 8px;
	margin-top: 0
}

.noUi-connect {
	background: linear-gradient(90deg, #00a055, #0f8);
	box-shadow: 0 0 6px rgba(0, 255, 100, 0.5)
}

.noUi-handle {
	background: #0f8;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 0 8px #0f8;
	cursor: pointer;
	width: 16px !important;
	height: 16px !important;
	right: -8px !important;
	top: -5px !important
}

.noUi-handle:before,
.noUi-handle:after {
	display: none
}

.noUi-handle:hover {
	transform: scale(1.2);
	box-shadow: 0 0 12px #0f8
}

.noUi-base {
	height: 8px
}

.noUi-origin {
	border-radius: 3px
}

.noUi-background {
	background: rgba(50, 50, 50, 0.8);
	box-shadow: none
}

.server-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 25px
}

.server-card {
	background: rgba(20, 20, 20, 0.8);
	border-radius: 8px;
	padding: 12px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all .3s ease;
	border: 1px solid rgba(0, 255, 100, 0.1);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	position: relative;
	overflow: hidden;
	min-height: 80px
}

.server-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 100, 0.1), transparent);
	transition: .5s
}

.server-card:hover::before {
	left: 100%
}

.server-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7), 0 0 12px rgba(0, 255, 100, 0.3);
	border-color: rgba(0, 255, 100, 0.3)
}

.server-info {
	flex: 1;
	min-width: 0;
	width: 100%
}

.server-name {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: #fff;
	word-break: break-word;
	line-height: 1.3
}

.server-details {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	width: 100%
}

.server-detail {
	display: flex;
	align-items: baseline;
	font-size: .85rem;
	color: #b0b0b0;
	line-height: 1.3;
	flex-shrink: 0;
    gap: 0px;
}

.server-detail span {
	word-break: break-word;
	white-space: normal;
    display: contents;
}

.server-detail i {
	color: #0f8;
	font-size: .85rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: -0.125em;
	flex-shrink: 0;
    margin-right: 8px;
}

.server-status {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px
}

.online-status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	line-height: 1
}

.status-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #0f8;
	box-shadow: 0 0 8px #0f8;
	transform: translateY(1px)
}

.online-count {
	font-weight: 600;
	color: #fff;
	line-height: 1
}

.max-online {
	color: #888;
	line-height: 1
}

.progress-bar {
	width: 130px;
	height: 5px;
	background-color: #333;
	border-radius: 3px;
	overflow: hidden
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #00a055, #0f8);
	border-radius: 3px;
	box-shadow: 0 0 5px #0f8
}

.filters-collapsed .filters-body {
	display: none
}

.stats-section {
	background: rgba(20, 20, 20, 0.7);
	border-radius: 10px;
	padding: 15px;
	border: 1px solid rgba(0, 255, 100, 0.15);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	margin-top: 10px;
	width: 100%
}

.stats-row {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 15px
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 12px;
	border-radius: 8px;
	background: rgba(10, 10, 10, 0.5);
	border: 1px solid rgba(0, 255, 100, 0.1);
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
	text-align: center;
	min-height: 80px
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 100, 0.05), transparent);
	transition: .5s
}

.stat-item:hover::before {
	left: 100%
}

.stat-item:hover {
	border-color: rgba(0, 255, 100, 0.2);
	box-shadow: 0 0 10px rgba(0, 255, 100, 0.1)
}

.stat-icon {
	font-size: 1.2rem;
	color: #0f8;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	vertical-align: middle
}

.stat-main {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-bottom: 4px;
	width: 100%
}

.stat-value {
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 0 6px rgba(0, 255, 100, 0.3);
	line-height: 1
}

.stat-divider {
	color: #888;
	font-size: 1rem;
	line-height: 1
}

.stat-total {
	font-size: 1rem;
	color: #888;
	line-height: 1
}

.stat-label {
	font-size: .8rem;
	color: #b0b0b0;
	text-align: center;
	line-height: 1.2;
	width: 100%
}

.server-actions {
	display: flex;
	gap: 10px;
	margin-top: 8px;
	flex-wrap: wrap;
	width: 100%
}

.ip-action,
.content-action {
	background: transparent;
	border: 1px solid rgba(0, 255, 100, 0.2);
	color: #0f8;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: .8rem;
	cursor: pointer;
	transition: all .3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0
}

.ip-action:hover,
.content-action:hover {
	background: rgba(0, 255, 100, 0.1);
	border-color: rgba(0, 255, 100, 0.4);
	box-shadow: 0 0 8px rgba(0, 255, 100, 0.2)
}

.ip-action:active,
.content-action:active {
	transform: scale(0.98)
}

.ip-action i,
.content-action i {
	font-size: .7rem
}

@media(max-width:768px) {
	.server-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 15px;
		min-height: auto
	}

	.server-name {
		white-space: normal;
		word-break: break-word;
		line-height: 1.3;
		width: 100%
	}

	.server-details {
		flex-direction: column;
		gap: 8px;
		width: 100%
	}

	.server-detail {
		width: 100%;
		flex-wrap: wrap;
		align-items: flex-start
	}

	.server-detail i {
		flex-shrink: 0;
		margin-top: 2px
	}

	.server-detail span {
		white-space: normal;
		word-break: break-word;
		flex: 1;
		min-width: 0
	}

	.server-status {
		align-items: flex-start;
		width: 100%;
		flex-shrink: 0
	}

	.progress-bar {
		width: 100%
	}

	.server-actions {
		justify-content: flex-start;
		gap: 8px;
		width: 100%
	}

	.ip-action,
	.content-action {
		white-space: nowrap;
		flex-shrink: 0
	}

	h1 {
		font-size: 1.8rem;
		line-height: 1.2;
		word-break: break-word
	}

	.subtitle {
		font-size: 1rem;
		line-height: 1.3
	}

	.filters-body {
		flex-direction: column;
		gap: 15px
	}

	.filter-group {
		width: 100%
	}

	.stats-row {
		flex-direction: column;
		gap: 10px
	}

	.stat-item {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 12px 15px;
		text-align: left;
		min-height: 60px
	}

	.stat-icon {
		margin-bottom: 0;
		margin-right: 12px;
		height: auto
	}

	.stat-content {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		text-align: right;
		flex: 1
	}

	.stat-main {
		justify-content: flex-end;
		margin-bottom: 2px
	}

	.stat-label {
		text-align: right
	}

	.corner-language-switcher {
		top: 10px;
		right: 10px
	}

	.language-toggle {
		padding: 8px 12px;
		font-size: .9rem
	}

	.language-menu {
		right: 0;
		left: auto;
		transform: none
	}
}

@media(max-width:480px) {
	.container {
		padding: 10px
	}

	.server-card {
		padding: 12px
	}

	.server-name {
		font-size: 1.1rem
	}

	.server-detail {
		font-size: .8rem
	}

	.server-actions {
		flex-wrap: wrap
	}

	.ip-action,
	.content-action {
		white-space: normal;
		word-break: break-word;
		text-align: center;
		justify-content: center;
		flex: 1;
		min-width: 120px
	}

	h1 {
		font-size: 1.6rem;
		padding: 0 10px
	}

	.filters-section {
		padding: 15px
	}

	.search-box input {
		padding: 10px 15px 10px 40px
	}

	.search-icon {
		left: 12px
	}

	.server-details {
		gap: 6px
	}
}