@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/outfit-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/onest-cyrillic.woff2") format("woff2");
}

@font-face {
	font-family: "Cabinet Grotesk";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/cabinet-400.woff2") format("woff2");
}

@font-face {
	font-family: "Cabinet Grotesk";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/cabinet-700.woff2") format("woff2");
}

@font-face {
	font-family: "Cabinet Grotesk";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("../fonts/cabinet-800.woff2") format("woff2");
}

:root {
	--amx-bg: #eef3fa;
	--amx-surface: #ffffff;
	--amx-surface-soft: #f7f9fd;
	--amx-ink: #111a2d;
	--amx-muted: #68738a;
	--amx-line: #d8e1ee;
	--amx-brand: #6558f5;
	--amx-brand-bright: #8b7cff;
	--amx-navy: #0a1427;
	--amx-navy-soft: #111d34;
	--amx-green: #35d39a;
	--amx-red: #ee5f77;
	--amx-shadow: 0 20px 60px rgba(33, 48, 82, 0.09);
	--amx-shadow-small: 0 10px 32px rgba(33, 48, 82, 0.06);
	--amx-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
	--amx-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
	--amx-page-gap: 18px;
	--amx-card-padding: 22px;
}

* {
	box-sizing: border-box;
}

html {
	min-width: 320px;
	background: var(--amx-bg);
	scroll-behavior: smooth;
}

body.amxcs-body {
	min-width: 320px;
	margin: 0;
	background:
		radial-gradient(circle at 8% 4%, rgba(101, 88, 245, 0.08), transparent 28%),
		var(--amx-bg);
	color: var(--amx-ink);
	font-family: "Outfit", "Onest", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.amxcs-body h1,
body.amxcs-body h2,
body.amxcs-body h3,
body.amxcs-body h4,
body.amxcs-body .block_head,
body.amxcs-body .btn {
	font-family: "Outfit", "Onest", Arial, sans-serif;
}

body.amxcs-body a {
	color: inherit;
	text-decoration: none;
}

body.amxcs-body a:hover,
body.amxcs-body a:focus {
	color: var(--amx-brand);
	text-decoration: none;
}

body.amxcs-body img {
	max-width: 100%;
}

body.amxcs-body button,
body.amxcs-body input,
body.amxcs-body select,
body.amxcs-body textarea {
	font: inherit;
}

body.amxcs-body :focus-visible {
	outline: 3px solid rgba(101, 88, 245, 0.35);
	outline-offset: 3px;
}

.wapper {
	display: flex;
	width: 100%;
	height: auto !important;
	min-height: 100vh;
	flex-direction: column;
	padding: 0;
	overflow: visible;
}

.wapper > .content {
	width: 100%;
	flex: 1 0 auto;
	padding-bottom: 58px;
}

.wapper .container {
	width: min(1180px, calc(100% - 40px));
	max-width: none;
	padding-right: 0;
	padding-left: 0;
}

.amxcs-skip-link {
	position: fixed;
	top: 8px;
	left: 12px;
	z-index: 9999;
	padding: 10px 15px;
	border-radius: 10px;
	background: var(--amx-navy);
	color: #fff !important;
	font-weight: 700;
	transform: translateY(-150%);
	transition: transform 160ms var(--amx-ease-out);
}

.amxcs-skip-link:focus {
	transform: translateY(0);
}

.wapper .header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	min-height: 76px;
	border-bottom: 1px solid rgba(196, 207, 224, 0.78);
	background: rgba(248, 250, 254, 0.9);
	box-shadow: none;
	backdrop-filter: blur(18px);
	transition: box-shadow 200ms ease, background-color 200ms ease;
}

.wapper .header .container {
	width: min(1360px, calc(100% - 40px));
}

.wapper .header.amxcs-header-scrolled {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 38px rgba(37, 53, 88, 0.08);
}

.wapper .header .amxcs-nav {
	display: flex;
	min-height: 76px;
	align-items: center;
	gap: 24px;
}

.amxcs-header-brand,
.amxcs-footer-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 12px;
	color: var(--amx-ink) !important;
}

.amxcs-header-brand {
	min-width: 210px;
}

.amxcs-brand-mark {
	position: relative;
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 12px;
	background: linear-gradient(145deg, #8174ff, #5366ef);
	box-shadow: 0 10px 24px rgba(101, 88, 245, 0.28);
	place-items: center;
}

.amxcs-brand-mark::before {
	width: 15px;
	height: 15px;
	content: "";
	border: 2px solid #fff;
	border-radius: 4px;
	transform: rotate(45deg);
}

.amxcs-brand-mark::after {
	position: absolute;
	width: 4px;
	height: 4px;
	content: "";
	border-radius: 50%;
	background: #fff;
}

.amxcs-brand-copy strong,
.amxcs-footer-brand strong {
	display: block;
	max-width: 230px;
	font-family: "Outfit", "Onest", Arial, sans-serif;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.amxcs-brand-copy small,
.amxcs-footer-brand small {
	display: block;
	margin-top: 4px;
	color: #8b96aa;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wapper .header #hidden-menu {
	position: static;
	flex: 1 1 auto;
}

.wapper .header #hidden-menu > .collapsible-menu {
	width: max-content;
	overflow: visible;
}

.wapper .header .collapsible-menu {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 20px;
	list-style: none;
}

.wapper .header .collapsible-menu > li {
	position: relative;
	float: none;
	margin: 0;
	padding: 0;
}

.wapper .header #hidden-menu .collapsible-menu > li.collapsible {
	padding-right: 16px;
}

.wapper .header #hidden-menu .collapsible-menu > li.collapsible::before,
.wapper .header .collapsible-menu.user-menu > li.collapsible::before {
	display: none !important;
}

.wapper .header #hidden-menu .collapsible-menu > li.collapsible::after,
.wapper .header .collapsible-menu.user-menu > li.collapsible::after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 7px;
	height: 7px;
	margin-top: -5px;
	content: "";
	border-right: 1.5px solid #8a96ab;
	border-bottom: 1.5px solid #8a96ab;
	background: transparent;
	color: transparent;
	pointer-events: none;
	transform: rotate(45deg);
	transform-origin: center;
	transition: transform 180ms var(--amx-ease-out), border-color 180ms ease;
}

.wapper .header #hidden-menu .collapsible-menu > li.collapsible:has(> a.open)::after,
.wapper .header .collapsible-menu.user-menu > li.collapsible:has(> a.open)::after {
	margin-top: -2px;
	border-color: var(--amx-brand);
	transform: rotate(225deg);
}

.wapper .header .collapsible-menu > li > a {
	display: inline-flex;
	float: none;
	min-height: 42px;
	align-items: center;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #68748b !important;
	font-size: 14px;
	font-weight: 750;
	line-height: 1;
	text-transform: none;
	white-space: nowrap;
	transition: color 180ms ease;
}

.wapper .header .collapsible-menu > li > a::before,
.wapper .header .collapsible-menu > li > a::after {
	display: none !important;
}

.wapper .header .collapsible-menu > li > a:hover,
.wapper .header .collapsible-menu > li > a.open,
.wapper .header .collapsible-menu > li.active > a {
	color: var(--amx-ink) !important;
}

.wapper .header .collapsible-menu > li > ul {
	position: absolute;
	top: calc(100% + 2px);
	left: -18px;
	z-index: 40;
	display: block !important;
	width: 240px !important;
	min-width: 240px !important;
	margin: 0;
	padding: 8px;
	border: 1px solid var(--amx-line);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.99);
	box-shadow: var(--amx-shadow);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px) scale(0.98);
	transform-origin: top left;
	visibility: hidden;
	transition: opacity 180ms var(--amx-ease-out), transform 180ms var(--amx-ease-out), visibility 0s linear 180ms;
}

.wapper .header .collapsible-menu > li:hover > ul,
.wapper .header .collapsible-menu > li > a.open + ul {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
	visibility: visible;
	transition-delay: 0s;
}

@media (min-width: 1321px) and (hover: hover) and (pointer: fine) {
	.wapper .header #hidden-menu .collapsible-menu > li.collapsible:hover::before,
	.wapper .header #hidden-menu .collapsible-menu > li.collapsible:has(> a.open)::before,
	.wapper .header .collapsible-menu.user-menu > li.collapsible:hover::before,
	.wapper .header .collapsible-menu.user-menu > li.collapsible:has(> a.open)::before {
		position: absolute;
		top: 100%;
		left: -18px;
		z-index: 39;
		display: block !important;
		width: 240px;
		height: 6px;
		margin: 0;
		content: "";
		background: transparent;
		pointer-events: auto;
	}

	.wapper .header .collapsible-menu.user-menu > li.collapsible:hover::before,
	.wapper .header .collapsible-menu.user-menu > li.collapsible:has(> a.open)::before {
		right: 0;
		left: auto;
	}
}

.wapper .header .collapsible-menu > li > ul > li,
.wapper .header .collapsible-menu > li > ul > li:hover {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.wapper .header .collapsible-menu > li > ul > li > a {
	display: flex;
	height: 40px;
	width: auto !important;
	align-items: center;
	margin: 0 !important;
	padding: 0 12px;
	border: 0 !important;
	border-radius: 9px;
	color: var(--amx-muted);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.25;
}

.wapper .header .collapsible-menu > li > ul > li > a:hover {
	background: #f1f3ff;
	color: var(--amx-brand);
}

.amxcs-header-actions {
	display: flex;
	margin-left: auto;
	align-items: center;
	gap: 10px;
}

.amxcs-theme-toggle {
	position: relative;
	display: inline-grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	padding: 0;
	border: 1px solid var(--amx-line);
	border-radius: 12px;
	background: var(--amx-surface);
	box-shadow: 0 6px 20px rgba(33, 48, 82, 0.04);
	color: var(--amx-ink);
	cursor: pointer;
	place-items: center;
	transition: transform 140ms var(--amx-ease-out), border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.amxcs-theme-icon {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	border: 0;
	background:
		linear-gradient(currentColor, currentColor) center top / 1.5px 4px no-repeat,
		linear-gradient(currentColor, currentColor) center bottom / 1.5px 4px no-repeat,
		linear-gradient(currentColor, currentColor) left center / 4px 1.5px no-repeat,
		linear-gradient(currentColor, currentColor) right center / 4px 1.5px no-repeat;
}

.amxcs-theme-icon::before {
	position: absolute;
	inset: 3px;
	content: "";
	border: 1.5px solid currentColor;
	border-radius: 50%;
}

.amxcs-theme-icon::after {
	position: absolute;
	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 50%;
	background-color: currentColor;
	background-image: radial-gradient(circle at 68% 30%, var(--amx-surface) 0 34%, transparent 38%);
	transform: rotate(-18deg) scale(0.9);
	transition: transform 180ms var(--amx-ease-out), background-color 180ms ease, box-shadow 180ms ease;
}

html[data-amxcs-theme="dark"] .amxcs-theme-icon::after {
	background-color: #f1c66d;
	background-image: none;
	box-shadow: 0 0 0 1px rgba(241, 198, 109, 0.24), 0 0 8px rgba(241, 198, 109, 0.58);
	transform: scale(0.5);
}

.wapper .header .auth-in {
	position: static;
	top: auto;
	right: auto;
	display: inline-flex;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 18px;
	border: 1px solid var(--amx-line);
	border-radius: 12px;
	background: var(--amx-surface);
	box-shadow: 0 6px 20px rgba(33, 48, 82, 0.04);
	color: var(--amx-ink);
	font-size: 13px;
	font-weight: 800;
	transition: transform 140ms var(--amx-ease-out), border-color 180ms ease, color 180ms ease;
}

.wapper .header .menu-trigger {
	position: static;
	display: none;
	height: 42px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 0 auto;
	padding: 0 14px;
	border: 1px solid var(--amx-line);
	border-radius: 12px;
	background: var(--amx-surface);
	box-shadow: 0 6px 20px rgba(33, 48, 82, 0.04);
	color: var(--amx-ink);
	font-family: "Onest", Arial, sans-serif;
	font-weight: 800;
}

.wapper .header .menu-trigger::before,
.wapper .header .menu-trigger::after {
	display: none;
}

.menu-trigger > span {
	position: relative;
	display: block;
	width: 14px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.menu-trigger > span::after {
	position: absolute;
	top: 3px;
	left: 0;
	width: 14px;
	height: 2px;
	content: "";
	background: currentColor;
}

.wapper .header .collapsible-menu.user-menu {
	position: relative;
	display: block;
	flex: 0 0 auto;
	margin-left: auto;
	overflow: visible;
}

.wapper .header .collapsible-menu.user-menu > li > a {
	display: grid;
	min-width: 164px;
	grid-template-columns: 34px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	gap: 0 9px;
	padding: 5px 30px 5px 6px !important;
	border: 1px solid var(--amx-line) !important;
	border-radius: 13px;
	background: var(--amx-surface) !important;
}

.wapper .header .collapsible-menu.user-menu > li > a > img {
	position: static;
	width: 34px;
	height: 34px;
	grid-row: 1 / 3;
	margin: 0;
	border: 0;
	border-radius: 10px;
	object-fit: cover;
}

.wapper .header .collapsible-menu.user-menu > li > a > h3,
.wapper .header .collapsible-menu.user-menu > li > a > p {
	position: static;
	width: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wapper .header .collapsible-menu.user-menu > li > a > h3 {
	align-self: end;
	color: var(--amx-ink);
	font-size: 13px;
}

.wapper .header .collapsible-menu.user-menu > li > a > p {
	align-self: start;
	color: #8e99ac;
	font-size: 11px;
}

.wapper .header .collapsible-menu.user-menu > li > ul {
	right: 0;
	left: auto;
	transform-origin: top right;
}

.wapper .header .collapsible-menu.user-menu > li.collapsible::after {
	right: 12px;
}

.wapper .navigation {
	min-height: 52px;
	border: 0;
	border-bottom: 1px solid var(--amx-line);
	background: rgba(255, 255, 255, 0.48);
}

.wapper .navigation .breadcrumb {
	display: flex;
	min-height: 52px;
	margin: 0;
	padding: 0;
	align-items: center;
	background: transparent;
	color: #8b96a9;
	font-size: 13px;
}

.wapper .navigation .breadcrumb > li {
	padding: 0;
}

.wapper .navigation .breadcrumb > li + li::before {
	padding: 0 9px;
	color: #bdc5d3;
}

.wapper .navigation .breadcrumb a {
	color: #7b879b;
}

#amxcs-main {
	padding-top: 24px;
}

#amxcs-main > .row {
	margin-right: -9px;
	margin-left: -9px;
}

#amxcs-main > .row > [class*="col-"] {
	padding-right: 9px;
	padding-left: 9px;
}

.amxcs-homepage {
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
}

.amxcs-hero-v2 {
	position: relative;
	display: grid;
	min-height: 450px;
	grid-template-columns: minmax(0, 1.65fr) minmax(350px, 0.9fr);
	border: 1px solid rgba(130, 146, 178, 0.18);
	border-radius: 26px;
	background:
		radial-gradient(circle at 35% 0%, rgba(108, 90, 255, 0.22), transparent 35%),
		var(--amx-navy);
	box-shadow: 0 28px 70px rgba(21, 34, 61, 0.17);
	overflow: hidden;
}

.amxcs-hero-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: 58px 54px;
}

.amxcs-eyebrow,
.amxcs-status-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #aeb8ff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.amxcs-eyebrow {
	margin-bottom: 22px;
}

.amxcs-eyebrow::before,
.amxcs-status-label i {
	display: block;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 50%;
	background: var(--amx-green);
	box-shadow: 0 0 0 5px rgba(53, 211, 154, 0.12);
}

.amxcs-hero-copy h1 {
	max-width: 920px;
	margin: 0;
	color: #fff;
	font-size: clamp(44px, 4.3vw, 68px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.052em;
}

.amxcs-hero-copy h1 span {
	display: block;
	color: var(--amx-brand-bright);
}

.amxcs-hero-copy > p {
	max-width: 690px;
	margin: 25px 0 0;
	color: #aab5cc;
	font-size: 15px;
	line-height: 1.65;
}

.amxcs-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

body.amxcs-body .btn {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 0 20px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.1;
	transition: transform 140ms var(--amx-ease-out), box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

body.amxcs-body .btn-primary,
body.amxcs-body a.btn.btn-primary,
body.amxcs-body button.btn.btn-primary,
body.amxcs-body input.btn.btn-primary {
	border-color: transparent !important;
	background: linear-gradient(110deg, #7159f6, #586cf3) !important;
	box-shadow: 0 14px 28px rgba(101, 88, 245, 0.25);
	color: #fff !important;
}

body.amxcs-body .btn-outline-primary,
body.amxcs-body a.btn.btn-outline-primary,
body.amxcs-body button.btn.btn-outline-primary {
	border-color: #cfd9e8;
	background: var(--amx-surface);
	color: var(--amx-brand);
}

body.amxcs-body .btn-outline-light {
	border: 1px solid rgba(179, 191, 220, 0.24);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.amxcs-hero-actions .btn {
	min-width: 190px;
	min-height: 50px;
	padding: 0 23px;
}

.amxcs-button-arrow {
	position: relative;
	display: inline-block;
	width: 15px;
	height: 10px;
	flex: 0 0 15px;
}

.amxcs-button-arrow::before {
	position: absolute;
	top: 4px;
	left: 0;
	width: 14px;
	height: 2px;
	content: "";
	border-radius: 2px;
	background: currentColor;
}

.amxcs-button-arrow::after {
	position: absolute;
	top: 1px;
	right: 0;
	width: 8px;
	height: 8px;
	content: "";
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.amxcs-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 27px;
	color: #8794b0;
	font-size: 12px;
	font-weight: 700;
}

.amxcs-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.amxcs-trust-row i {
	display: block;
	width: 6px;
	height: 6px;
	border: 1px solid #8290ff;
	border-radius: 50%;
}

.amxcs-hero-monitor {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 38px 32px 28px;
	border-left: 1px solid rgba(169, 183, 214, 0.15);
	background: rgba(4, 13, 29, 0.42);
}

.amxcs-monitor-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(169, 183, 214, 0.16);
}

.amxcs-monitor-head small {
	display: block;
	margin-bottom: 5px;
	color: #7988a8;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.amxcs-monitor-head strong {
	color: #fff;
	font-family: "Outfit", "Onest", Arial, sans-serif;
	font-size: 20px;
	font-weight: 800;
}

.amxcs-online-badge {
	display: inline-flex;
	min-height: 29px;
	align-items: center;
	padding: 0 11px;
	border-radius: 9px;
	background: rgba(16, 113, 88, 0.26);
	color: #45e3b0;
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.amxcs-hero-monitor .amxcs-monitoring,
.amxcs-hero-monitor .amxcs-server-grid {
	width: 100%;
	margin: 0;
	padding: 0;
}

.amxcs-hero-monitor .amxcs-server-grid {
	display: grid;
}

.wapper .amxcs-hero-monitor .monitoring .amxcs-server-grid > .server.amxcs-server-card {
	display: grid;
	min-width: 0;
	width: 100%;
	grid-template-columns: 46px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	float: none;
	margin: 0;
	padding: 17px 0;
	border: 0;
	border-bottom: 1px solid rgba(169, 183, 214, 0.13);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.wapper .amxcs-hero-monitor .monitoring .amxcs-server-grid > .server.amxcs-server-card:nth-child(n + 4) {
	display: none;
}

.wapper .monitoring .server.amxcs-server-card .map-image {
	position: static;
	width: 46px;
	height: 42px;
	float: none;
	margin: 0;
	border-radius: 10px;
	background-position: center;
	background-size: cover;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.amxcs-server-summary {
	min-width: 0;
}

.amxcs-server-title {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 7px;
}

.wapper .monitoring .server.amxcs-server-card .amxcs-server-summary h3 {
	position: static;
	min-width: 0;
	margin: 0;
	padding: 0;
	color: #f7f9ff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.amxcs-server-summary > span,
.amxcs-server-summary > a {
	display: block;
	max-width: 100%;
	margin-top: 4px;
	color: #8b9ab8;
	font-size: 11px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.amxcs-server-summary > a:hover {
	color: #b4a9ff !important;
}

body.amxcs-body .amxcs-hero-monitor .amxcs-server-summary > a {
	color: #aebdff !important;
}

body.amxcs-body .amxcs-hero-monitor .amxcs-server-summary > a:hover,
body.amxcs-body .amxcs-hero-monitor .amxcs-server-summary > a:focus-visible {
	color: #d5ceff !important;
}

.amxcs-server-admin {
	display: inline-grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	padding: 0;
	border: 0;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.08);
	color: #aeb8d0;
	font-size: 10px;
	place-items: center;
}

.amxcs-server-players {
	display: flex;
	min-width: 48px;
	flex-direction: column;
	align-items: flex-end;
	padding: 5px 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.amxcs-server-players strong {
	font-family: "Outfit", "Onest", Arial, sans-serif;
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
}

.amxcs-server-players strong small {
	color: #7685a1;
	font-size: 11px;
}

.amxcs-server-players > span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 5px;
	color: #7785a2;
	font-size: 11px;
}

.amxcs-server-players > span::before {
	width: 5px;
	height: 5px;
	content: "";
	border-radius: 50%;
	background: var(--amx-green);
}

.amxcs-monitor-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 20px;
	color: #9789ff !important;
	font-size: 12px;
	font-weight: 800;
}

.amxcs-monitor-note {
	display: none;
	margin: 14px 0 0;
	padding: 14px 0;
	border-top: 1px solid rgba(169, 183, 214, 0.13);
	border-bottom: 1px solid rgba(169, 183, 214, 0.13);
}

.amxcs-hero-monitor.amxcs-monitor-few .amxcs-monitor-note {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.amxcs-monitor-note span {
	display: block;
	color: #7785a2;
	font-size: 11px;
	line-height: 1.45;
}

.amxcs-monitor-note strong {
	display: block;
	margin-bottom: 4px;
	color: #c6cee0;
	font-size: 12px;
	font-weight: 750;
}

.amxcs-hero-monitor .monitoring-table {
	margin: 14px 0 0;
	border: 1px solid rgba(169, 183, 214, 0.15);
	border-radius: 12px;
}

.amxcs-hero-monitor .monitoring-table table {
	margin: 0;
	color: #c4cde0;
	font-size: 11px;
}

.amxcs-hero-monitor .monitoring-table thead {
	display: none;
}

.amxcs-hero-monitor .monitoring-table td {
	border-color: rgba(169, 183, 214, 0.12);
}

.amxcs-marquee {
	display: flex;
	margin: 18px 0;
	padding: 13px 0;
	border-top: 1px solid var(--amx-line);
	border-bottom: 1px solid var(--amx-line);
	color: #8a96ac;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	overflow: hidden;
}

.amxcs-marquee-track {
	display: flex;
	width: max-content;
	min-width: max-content;
	gap: 30px;
	will-change: transform;
}

.amxcs-marquee-track.amxcs-marquee-ready {
	animation: amxcs-marquee 28s linear infinite;
}

.amxcs-marquee-track span {
	display: inline-flex;
	align-items: center;
	gap: 30px;
	white-space: nowrap;
}

.amxcs-marquee-track span::after {
	width: 4px;
	height: 4px;
	content: "";
	border-radius: 50%;
	background: var(--amx-brand);
}

@keyframes amxcs-marquee {
	to {
		transform: translateX(calc(-50% - 15px));
	}
}

.amxcs-portal-grid {
	display: grid;
	grid-template-columns: minmax(0, 8fr) minmax(320px, 4fr);
	align-items: start;
	gap: 18px;
}

.amxcs-feed,
.amxcs-side {
	display: grid;
	min-width: 0;
	gap: 18px;
}

.block,
.amxcs-quote {
	margin: 0;
	border: 1px solid rgba(198, 209, 226, 0.92);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--amx-shadow-small);
	color: var(--amx-ink);
	overflow: hidden;
}

.block {
	padding: 22px;
}

#amxcs-main > .row > [class*="col-"] > .block + .block {
	margin-top: var(--amx-page-gap);
}

#amxcs-main > .row > [class*="col-"] > form + .block,
#amxcs-main > .row > [class*="col-"] > .block + form {
	margin-top: var(--amx-page-gap);
}

.block .block_head {
	display: flex;
	min-height: 66px;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: -22px -22px 20px;
	padding: 0 22px;
	border: 0;
	border-bottom: 1px solid var(--amx-line);
	background: transparent;
	color: var(--amx-ink);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.block .block_head::before,
.block .block_head::after {
	display: none;
}

.block .block_head > span {
	color: inherit;
	font-size: inherit;
}

.block .block_head > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--amx-brand);
	font-family: "Outfit", "Onest", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.block .block_head .amxcs-button-arrow {
	width: 12px;
	transform: scale(0.78);
	transform-origin: center left;
}

.amxcs-auth-card > p {
	margin: 0 0 20px;
	color: var(--amx-muted);
	font-size: 14px;
	line-height: 1.55;
}

.amxcs-auth-card .btn {
	width: 100%;
	margin: 0 0 10px;
}

.amxcs-auth-card .btn:last-child {
	margin-bottom: 0;
}

#news .small-new {
	display: grid;
	min-height: 72px;
	grid-template-columns: 68px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--amx-line);
}

#news .small-new:last-child {
	border-bottom: 0;
}

#news .small-new img {
	width: 68px;
	height: 48px;
	margin: 0;
	border-radius: 10px;
	object-fit: cover;
}

#news .small-new > div {
	min-width: 0;
}

#news .small-new p {
	margin: 0;
	color: var(--amx-muted);
	font-size: 12px;
	line-height: 1.35;
}

#news .small-new p:first-child {
	display: -webkit-box;
	margin-bottom: 3px;
	color: var(--amx-ink);
	font-size: 13px;
	font-weight: 700;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.amxcs-news-card,
.amxcs-forum-card,
.amxcs-events-card {
	padding-bottom: 0;
}

.amxcs-news-card .vertical-center-line {
	margin: -20px -22px 0;
}

#new_news,
.news {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

#new_news > div:not(.loader),
.news > div:not(.loader) {
	position: relative;
	display: flex;
	width: auto;
	min-height: 270px;
	flex-direction: column;
	justify-content: flex-end;
	float: none;
	margin: 0;
	padding: 26px;
	border-right: 1px solid var(--amx-line);
	background: #0d1729;
	color: #fff;
	overflow: hidden;
}

#new_news > div:not(.loader):nth-child(even),
.news > div:not(.loader):nth-child(even) {
	border-right: 0;
}

#new_news > div:not(.loader) > a:first-child,
.news > div:not(.loader) > a:first-child {
	position: absolute;
	inset: 0;
	z-index: 0;
}

#new_news > div:not(.loader) > a:first-child::after,
.news > div:not(.loader) > a:first-child::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, rgba(5, 11, 23, 0.08) 5%, rgba(5, 11, 23, 0.34) 48%, rgba(5, 11, 23, 0.96) 100%),
		linear-gradient(90deg, rgba(8, 17, 34, 0.2), transparent 64%);
}

#new_news > div:not(.loader) img,
.news > div:not(.loader) img {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
	object-fit: cover;
	filter: saturate(0.96) contrast(1.12);
}

#new_news > div:not(.loader) > *:not(:first-child),
.news > div:not(.loader) > *:not(:first-child) {
	position: relative;
	z-index: 1;
}

#new_news > div:not(.loader) h3,
.news > div:not(.loader) h3 {
	max-width: 360px;
	margin: 34px 0 9px;
	color: #fff;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

#new_news > div:not(.loader) h3 a,
.news > div:not(.loader) h3 a {
	color: #fff !important;
}

#new_news > div:not(.loader) p,
.news > div:not(.loader) p {
	margin: 0 0 8px;
	color: #c2ccdc;
	font-size: 13px;
	line-height: 1.55;
}

#new_news > div:not(.loader) p:last-child,
.news > div:not(.loader) p:last-child {
	order: -1;
	margin: 0;
	color: #aab8d1;
	font-size: 11px;
	font-weight: 700;
}

.amxcs-forum-card #forum {
	margin: -20px -22px 0;
	padding: 4px 22px 16px;
}

.amxcs-services-card {
	padding-bottom: 0;
}

.amxcs-services-accordion {
	display: flex;
	height: 280px;
	gap: 1px;
	margin: -20px -22px 0;
	background: var(--amx-line);
	overflow: hidden;
}

.amxcs-services-accordion > a {
	position: relative;
	display: flex;
	min-width: 0;
	flex: 1 1 0;
	align-items: flex-end;
	padding: 24px;
	background-position: center;
	background-size: cover;
	color: #fff !important;
	overflow: hidden;
}

.amxcs-services-accordion > a::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(10, 20, 39, 0.08), rgba(10, 20, 39, 0.9));
}

.amxcs-services-accordion > a > span {
	position: relative;
	z-index: 1;
	display: grid;
	min-width: 0;
	gap: 8px;
	transition: transform 180ms var(--amx-ease-out);
}

.amxcs-services-accordion strong {
	display: block;
	color: #fff;
	font-family: "Outfit", "Onest", Arial, sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.amxcs-services-accordion small {
	display: -webkit-box;
	max-width: 340px;
	color: #b8c1d2;
	font-size: 12px;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.amxcs-services-accordion .amxcs-button-arrow {
	margin-top: 5px;
}

#forum > .empty-element,
#events > .empty-element,
#online_users > .empty-element,
#last_activity > .empty-element,
#load_last_online > .empty-element {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: center;
	color: #929caf;
	font-size: 13px;
	text-align: center;
}

#forum .row,
#forum.row {
	margin: 0;
	border-bottom: 1px solid var(--amx-line);
}

#forum .row:last-child,
#forum.row:last-child {
	border-bottom: 0;
}

#forum .row .col-lg-8,
#forum.row .col-lg-8,
#forum .row .col-lg-4,
#forum.row .col-lg-4 {
	min-height: 76px;
	padding: 16px 8px;
	border: 0;
}

#forum .row .col-lg-8,
#forum.row .col-lg-8 {
	display: flex;
	align-items: center;
	gap: 13px;
}

#forum .row .col-lg-8 img,
#forum.row .col-lg-8 img {
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 11px;
	object-fit: cover;
}

#forum .row .col-lg-8 > div,
#forum.row .col-lg-8 > div {
	min-width: 0;
}

#forum .row h3,
#forum.row h3,
#forum .row p,
#forum.row p {
	margin: 0;
}

#forum .row h3 a,
#forum.row h3 a {
	color: var(--amx-ink);
	font-size: 14px;
	font-weight: 750;
}

#forum .row .col-lg-8 p,
#forum.row .col-lg-8 p,
#forum .row .col-lg-4 p,
#forum.row .col-lg-4 p {
	margin-top: 4px;
	color: #8a95a9;
	font-size: 11px;
	line-height: 1.45;
}

#forum .row .col-lg-4,
#forum.row .col-lg-4 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#forum .row .col-lg-4 a,
#forum.row .col-lg-4 a {
	color: var(--amx-brand);
	font-weight: 700;
}

#forum_topics.row {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
	margin: 0;
}

#forum_topics.row > [class*="col-"] {
	width: 100%;
	max-width: none;
	padding: 17px 14px;
	border-bottom: 1px solid var(--amx-line);
}

#forum_topics.row > .col-lg-12 {
	min-height: 48px;
	grid-column: 1 / -1;
	padding-top: 0;
	padding-bottom: 12px;
}

#forum_topics.row > .col-lg-12 h2 {
	margin: 0;
	color: var(--amx-ink);
	font-size: 16px;
	font-weight: 700;
}

#forum_topics.row > .col-lg-8 {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 14px;
}

#forum_topics.row > .col-lg-8 img {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	margin: 0;
	border-radius: 13px;
	object-fit: cover;
}

#forum_topics.row > .col-lg-8 > div {
	min-width: 0;
}

#forum_topics.row h3,
#forum_topics.row p {
	margin: 0;
}

#forum_topics.row h3 a {
	color: var(--amx-ink);
	font-size: 14px;
	font-weight: 750;
}

#forum_topics.row p {
	margin-top: 4px;
	color: var(--amx-muted);
	font-size: 12px;
	line-height: 1.4;
}

#forum_topics.row p span {
	display: inline-flex;
	align-items: center;
	margin-right: 12px;
	gap: 4px;
}

#forum_topics.row > .col-lg-4 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-left: 1px solid var(--amx-line);
}

#forum_topics.row > .col-lg-4 a {
	color: var(--amx-brand);
	font-weight: 700;
}

.amxcs-community-card {
	display: grid;
	min-height: 275px;
	grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.78fr);
	padding: 0;
	border-color: rgba(8, 20, 39, 0.3);
	background: var(--amx-navy);
	color: #fff;
}

.amxcs-community-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 38px;
}

.amxcs-community-copy h2 {
	max-width: 520px;
	margin: 0;
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.045em;
}

.amxcs-community-copy p {
	max-width: 560px;
	margin: 17px 0 0;
	color: #9fabc2;
	font-size: 14px;
	line-height: 1.65;
}

.amxcs-reveal-word {
	display: inline-block;
	margin-right: 0.28em;
}

.amxcs-community-visual {
	min-height: 275px;
	background:
		linear-gradient(90deg, var(--amx-navy), transparent 55%),
		url("../img/hero-support.webp") 58% center / cover;
}

#chat {
	padding: 0;
}

#chat #chat_messages {
	height: 320px;
	max-height: 44vh;
	padding-right: 4px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e4 transparent;
}

#chat #chat_messages .chat_message {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	min-height: 66px;
	padding: 12px 0;
	border-bottom: 1px solid var(--amx-line);
}

#chat #chat_messages .chat_message > a img {
	width: 42px;
	height: 42px;
	margin: 0;
	border-radius: 12px;
	object-fit: cover;
}

#chat #chat_messages .chat_message .message {
	width: auto;
}

#chat #chat_messages .chat_message .message .info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

#chat #chat_messages .chat_message .message .info .author {
	color: var(--amx-ink);
	font-size: 13px;
	font-weight: 750;
}

#chat #chat_messages .chat_message .message .info .date {
	color: #9aa4b6;
	font-size: 11px;
}

#chat .input-group {
	flex-wrap: nowrap;
}

#chat .smile_input {
	flex: 1 1 auto;
}

#chat .input-group-btn .btn {
	min-height: 44px;
	border-radius: 0 11px 11px 0;
}

#events {
	margin: -4px 0 0;
}

#events > div {
	border-bottom: 1px solid var(--amx-line);
}

#events > div:last-child {
	border-bottom: 0;
}

#online_users {
	margin: -4px 0 0;
}

#online_users > a {
	display: grid;
	min-height: 59px;
	grid-template-columns: 38px minmax(0, 1fr) 8px;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 0 11px;
	padding: 10px 0;
	border-bottom: 1px solid var(--amx-line);
}

#online_users > a:last-child {
	border-bottom: 0;
}

#online_users > a::after {
	width: 7px;
	height: 7px;
	grid-column: 3;
	grid-row: 1 / 3;
	content: "";
	border-radius: 50%;
	background: var(--amx-green);
}

#online_users > a > img {
	width: 38px;
	height: 38px;
	grid-row: 1 / 3;
	margin: 0;
	border-radius: 12px;
	object-fit: cover;
}

#online_users > a > span {
	display: block;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#online_users > a > span:nth-of-type(1) {
	align-self: end;
	color: var(--amx-ink) !important;
	font-size: 13px;
	font-weight: 750;
}

#online_users > a > span:nth-of-type(2) {
	align-self: start;
	color: #929caf;
	font-size: 11px;
}

#top_users > a,
#last_activity > a,
#load_last_online > a {
	border-color: var(--amx-line);
}

.vertical-navigation {
	margin: -6px 0;
}

.vertical-navigation ul {
	margin: 0;
	padding: 0;
}

.vertical-navigation ul li {
	margin: 0;
	border-bottom: 1px solid var(--amx-line);
}

.vertical-navigation ul li:last-child {
	border-bottom: 0;
}

.vertical-navigation ul li a {
	display: flex;
	min-height: 44px;
	align-items: center;
	padding: 0 4px;
	border: 0;
	color: var(--amx-muted);
	font-size: 13px;
	font-weight: 650;
}

.vertical-navigation ul li a:hover,
.vertical-navigation ul li a.active {
	padding-left: 10px;
	background: transparent;
	color: var(--amx-brand);
}

.amxcs-quick-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	padding: 0;
	background: var(--amx-line);
}

.amxcs-quick-links > a {
	display: flex;
	min-height: 82px;
	flex-direction: column;
	justify-content: space-between;
	padding: 16px;
	background: var(--amx-surface);
	color: var(--amx-ink);
}

.amxcs-quick-links > a:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.amxcs-quick-links strong {
	font-size: 12px;
	font-weight: 750;
}

.amxcs-quick-links .amxcs-button-arrow {
	color: var(--amx-brand);
}

.amxcs-quote {
	padding: 25px;
	border: 0;
	background: linear-gradient(145deg, #6d5af6, #586bed);
	color: #fff;
}

.amxcs-quote-slides {
	position: relative;
	min-height: 92px;
}

.amxcs-quote p {
	position: absolute;
	inset: 0;
	margin: 0;
	color: #fff;
	font-family: "Outfit", "Onest", Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	opacity: 0;
	transform: translateY(7px);
	transition: opacity 180ms ease, transform 220ms var(--amx-ease-out);
}

.amxcs-quote p.active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
}

.amxcs-quote footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 26px;
	color: #d9d6ff;
	font-size: 11px;
	font-weight: 750;
}

.amxcs-quote footer::before {
	display: none;
}

.amxcs-quote-controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.amxcs-quote-controls button {
	display: inline-grid;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	place-items: center;
	transition: transform 140ms var(--amx-ease-out), background-color 180ms ease;
}

.amxcs-quote-controls button:first-child .amxcs-button-arrow {
	transform: rotate(180deg) scale(0.7);
}

.amxcs-quote-controls button:last-child .amxcs-button-arrow {
	transform: scale(0.7);
}

.amxcs-quote-controls b {
	min-width: 42px;
	font-size: 11px;
	font-weight: 750;
	text-align: center;
}

.amxcs-page-monitor {
	display: grid;
	min-height: 126px;
	grid-template-columns: minmax(220px, 0.78fr) minmax(0, 2.4fr);
	margin-bottom: 18px;
	border: 1px solid var(--amx-line);
	border-radius: 20px;
	background: var(--amx-surface);
	box-shadow: var(--amx-shadow-small);
	overflow: hidden;
}

.amxcs-page-monitor-copy {
	display: flex;
	align-items: center;
	padding: 24px;
	border-right: 1px solid var(--amx-line);
	background: #f8f9ff;
}

.amxcs-page-monitor-copy a {
	display: block;
	min-width: 0;
}

.amxcs-page-monitor-copy .amxcs-status-label {
	color: #7e89a1;
	font-size: 11px;
}

.amxcs-page-monitor-copy strong,
.amxcs-page-monitor-copy small {
	display: block;
	max-width: 240px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.amxcs-page-monitor-copy strong {
	margin-top: 11px;
	color: var(--amx-ink);
	font-family: "Outfit", "Onest", Arial, sans-serif;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.amxcs-page-monitor-copy small {
	margin-top: 5px;
	color: #8a95a9;
	font-size: 12px;
}

.amxcs-page-monitor-content {
	display: flex;
	min-width: 0;
	align-items: center;
	padding: 13px 20px;
}

.amxcs-page-monitor-content .monitoring,
.amxcs-page-monitor-content .amxcs-server-grid {
	width: 100%;
	margin: 0;
}

.amxcs-page-monitor-content .amxcs-server-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.wapper .amxcs-page-monitor-content .monitoring .amxcs-server-grid > .server.amxcs-server-card {
	display: grid;
	min-width: 0;
	width: 100%;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	float: none;
	margin: 0;
	padding: 10px 15px;
	border: 0;
	border-right: 1px solid var(--amx-line);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.wapper .amxcs-page-monitor-content .monitoring .amxcs-server-grid > .server.amxcs-server-card:last-child {
	border-right: 0;
}

.wapper .amxcs-page-monitor-content .monitoring .server.amxcs-server-card .map-image {
	position: static;
	width: 42px;
	height: 40px;
	float: none;
	border-radius: 10px;
}

.amxcs-page-monitor-content .amxcs-server-summary h3 {
	color: var(--amx-ink);
}

.amxcs-page-monitor-content .amxcs-server-summary > span,
.amxcs-page-monitor-content .amxcs-server-summary > a {
	color: #8995aa;
}

.amxcs-page-monitor-content .amxcs-server-players {
	color: var(--amx-ink);
}

.amxcs-page-monitor-content .monitoring-table {
	width: 100%;
	margin: 0;
}

.table-responsive {
	border: 1px solid var(--amx-line);
	border-radius: 13px;
	background: var(--amx-surface);
	overflow-x: auto;
}

body.amxcs-body .table {
	margin: 0;
	color: var(--amx-ink);
	font-size: 13px;
}

body.amxcs-body .table th,
body.amxcs-body .table td {
	padding: 12px;
	border-color: var(--amx-line);
	vertical-align: middle;
}

body.amxcs-body .table thead td,
body.amxcs-body .table thead th {
	background: #f5f7fb;
	color: #7e899d;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

body.amxcs-body .form-control,
body.amxcs-body input.form-control,
body.amxcs-body select.form-control,
body.amxcs-body textarea.form-control {
	min-height: 44px;
	border: 1px solid #ced8e7;
	border-radius: 11px;
	background: var(--amx-surface);
	box-shadow: none;
	color: var(--amx-ink);
	font-size: 14px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.amxcs-body textarea.form-control {
	min-height: 110px;
}

body.amxcs-body .form-control:focus {
	border-color: var(--amx-brand);
	box-shadow: 0 0 0 4px rgba(101, 88, 245, 0.11);
}

body.amxcs-body .input-group-text {
	border-color: var(--amx-line);
	background: #f4f6fa;
	color: var(--amx-muted);
}

.modal {
	color: var(--amx-ink);
}

.modal .modal-dialog {
	margin-top: 8vh;
}

.modal .modal-content {
	border: 1px solid rgba(198, 209, 226, 0.94);
	border-radius: 18px;
	background: var(--amx-surface);
	box-shadow: 0 30px 90px rgba(17, 26, 45, 0.22);
	overflow: hidden;
}

.modal .modal-content .modal-header {
	display: flex;
	min-height: 64px;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid var(--amx-line);
}

.modal .modal-content .modal-header h4 {
	margin: 0;
	color: var(--amx-ink);
	font-size: 20px;
	font-weight: 800;
}

.modal .modal-content .modal-header .close {
	order: 2;
	margin: 0 0 0 auto;
	color: var(--amx-ink);
	opacity: 0.58;
}

.modal .modal-content .modal-body {
	padding: 22px;
}

.dropdown-menu,
.popover {
	border: 1px solid var(--amx-line);
	border-radius: 13px;
	background: var(--amx-surface);
	box-shadow: var(--amx-shadow);
	color: var(--amx-ink);
}

.pagination {
	gap: 5px;
}

.pagination .page-link {
	border: 1px solid var(--amx-line);
	border-radius: 9px !important;
	background: var(--amx-surface);
	color: var(--amx-muted);
}

.pagination .active .page-link {
	border-color: var(--amx-brand);
	background: var(--amx-brand);
	color: #fff;
}

.alert,
.noty-block {
	border: 1px solid var(--amx-line);
	border-radius: 12px;
}

.loader {
	border-color: rgba(101, 88, 245, 0.18);
	border-top-color: var(--amx-brand);
}

.wapper > .footer {
	width: 100%;
	margin: 0;
	padding: 38px 0;
	border-top: 1px solid var(--amx-line);
	background: rgba(246, 249, 253, 0.78);
	color: #8792a6;
}

.amxcs-footer-inner {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) minmax(360px, 1.45fr) minmax(230px, 0.8fr);
	align-items: center;
	gap: 32px;
}

.amxcs-footer-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 22px;
}

.amxcs-footer-links a {
	color: #7f8b9f;
	font-size: 12px;
	font-weight: 650;
}

.amxcs-footer-meta {
	display: grid;
	gap: 6px;
	text-align: right;
}

.amxcs-footer-meta p,
.amxcs-footer-meta #copyright {
	margin: 0;
	color: #94a0b3;
	font-size: 11px;
	line-height: 1.5;
}

.amxcs-footer-meta #copyright br {
	display: none;
}

.amxcs-footer-meta #copyright {
	width: auto;
	height: auto !important;
	padding: 0 !important;
	border: 0 !important;
	line-height: 1.5 !important;
}

.wapper > .footer .banners {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.wapper > .footer .banners img {
	width: 88px;
	height: 31px;
	margin: 0;
	border: 1px solid var(--amx-line);
	border-radius: 5px;
	opacity: 0.62;
}

/* GameCMS compatibility and readability layer */
body.amxcs-body .with_code,
body.amxcs-body .block p,
body.amxcs-body .block label,
body.amxcs-body .block li {
	font-size: 14px;
	line-height: 1.55;
}

body.amxcs-body .block small,
body.amxcs-body .block .small,
body.amxcs-body .block .text-muted {
	font-size: 12px;
	line-height: 1.45;
}

body.amxcs-body .profile-page .profile table tbody tr td {
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 14px;
	line-height: 1.45;
}

body.amxcs-body .profile-page .profile table tbody tr td[colspan="2"] h4 {
	color: var(--amx-ink);
	font-size: 15px;
	font-weight: 700;
}

body.amxcs-body .block.block-table > .block_head {
	margin: 0;
	padding: 0 22px;
}

body.amxcs-body .block.block-table > .table-responsive {
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
	border-radius: 0;
}

body.amxcs-body .profile-settings > .row {
	display: block;
	margin-right: -9px;
	margin-left: -9px;
	column-count: 2;
	column-gap: 0;
}

body.amxcs-body .profile-settings > .row > .col-lg-6 {
	display: contents;
}

body.amxcs-body .profile-settings > .row .block {
	display: inline-block;
	width: calc(100% - 18px);
	margin: 0 9px 18px;
	break-inside: avoid;
	vertical-align: top;
}

body.amxcs-body .profile-settings .form-group > label h4 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

body.amxcs-body input[type="file"] {
	width: 100%;
	padding: 7px;
	border: 1px solid var(--amx-line);
	border-radius: 11px;
	background: #f7f9fd;
	color: var(--amx-muted);
	font-size: 12px;
}

body.amxcs-body input[type="file"]::file-selector-button {
	margin-right: 8px;
	padding: 7px 10px;
	border: 0;
	border-radius: 8px;
	background: #e9edff;
	color: var(--amx-brand);
	font: 700 12px/1.2 "Outfit", "Onest", Arial, sans-serif;
	cursor: pointer;
}

#chat #chat_messages .chat_message .with_code {
	color: #2b3549;
	font-size: 15px;
	line-height: 1.5;
}

#top_users > a {
	display: grid;
	width: 100%;
	height: auto;
	min-height: 68px;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-top: 0;
	border-bottom: 1px solid var(--amx-line);
}

#top_users > a:last-child {
	border-bottom: 0;
}

#top_users > a img {
	width: 42px;
	height: 42px;
	margin: 0;
	border-radius: 12px;
	object-fit: cover;
	float: none;
}

#top_users > a div {
	display: grid;
	width: 100%;
	min-width: 0;
	gap: 4px;
	margin: 0;
	float: none;
}

#top_users > a div > span {
	display: block;
	width: 100%;
	color: var(--amx-ink);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.25;
}

#top_users > a div p {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
}

#top_users > a div p span {
	width: auto;
	color: #7c879b;
	font-size: 12px;
}

#top_users > a span i::before {
	color: #9eabde;
	font-size: 12px;
}

#last_activity > span {
	display: grid;
	width: 100%;
	height: auto;
	min-height: 76px;
	align-content: center;
	gap: 3px;
	padding: 12px 0;
	border-top: 0;
	border-bottom: 1px solid var(--amx-line);
	line-height: 1.35;
}

#last_activity > span:last-child {
	border-bottom: 0;
}

#last_activity > span p {
	width: 100%;
	margin: 0;
	color: #7c879b;
	font-size: 12px;
	line-height: 1.35;
}

#last_activity > span p:first-child {
	font-size: 13px;
	font-weight: 700;
}

#events .event {
	display: grid;
	width: 100%;
	height: auto;
	min-height: 82px;
	grid-template-columns: minmax(0, 1.3fr) minmax(125px, 0.8fr) minmax(145px, 0.74fr) 118px;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-top: 0;
	overflow: visible;
}

#events .event > div,
#events .event > a:not(.btn),
#events .event > span,
#events .event > a.btn {
	display: flex;
	width: auto;
	height: auto;
	min-width: 0;
	align-items: center;
	margin: 0;
	padding: 0;
	float: none;
	line-height: 1.4;
}

#events .event > div > a {
	display: block;
	width: 100%;
	height: auto;
	color: #596478;
	font-size: 13px;
	line-height: 1.4;
}

#events .event > a:not(.btn) {
	color: var(--amx-ink);
	font-size: 13px;
	font-weight: 700;
}

#events .event > a:not(.btn) img {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	margin: 0 10px 0 0;
	border-radius: 12px;
	object-fit: cover;
}

#events .event > span {
	color: #7c879b;
	font-size: 13px;
	white-space: normal;
}

#events .event > a.btn {
	width: 118px;
	min-height: 44px;
	justify-content: center;
}

#users .friend {
	display: grid;
	min-height: 100px;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-color: var(--amx-line);
}

#users .friend > a,
#users .friend > div {
	width: auto;
	min-width: 0;
	float: none;
}

#users .friend > a img {
	width: 64px;
	height: 64px;
	margin: 0;
	border-radius: 16px;
	object-fit: cover;
}

#users .friend > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 16px;
}

#users .friend > div > a {
	color: #657188;
	font-size: 13px;
	line-height: 1.5;
}

#users .friend > div > a:first-child {
	width: 100%;
	color: var(--amx-ink);
	font-size: 14px;
	font-weight: 700;
}

#users .friend > div > a::after {
	display: none;
	content: none;
}

body.amxcs-body .topic-answers {
	display: grid;
	gap: 14px;
	margin: 0 !important;
	padding: 0;
}

body.amxcs-body .topic-answers > div[id^="answer"] {
	border: 1px solid var(--amx-line);
	border-radius: 16px;
	background: var(--amx-surface);
	overflow: hidden;
}

body.amxcs-body .topic-answers > div[id^="answer"] .top-area {
	display: flex;
	height: auto;
	min-height: 52px;
	align-items: center;
	margin: 0;
	padding: 0 18px;
	border-top: 0;
	border-left: 0;
	border-bottom: 1px solid var(--amx-line);
	background: var(--amx-surface-soft);
	color: var(--amx-ink);
	line-height: 1.35;
}

body.amxcs-body .topic-answers > div[id^="answer"] .left-side {
	width: 150px;
	flex: 0 0 150px;
	padding-right: 16px;
	float: none;
}

body.amxcs-body .topic-answers > div[id^="answer"] .right-side {
	width: calc(100% - 150px);
	flex: 1 1 auto;
	padding-left: 16px;
	float: none;
}

body.amxcs-body .topic-answers > div[id^="answer"] .top-area .left-side {
	font-size: 14px;
	font-weight: 700;
}

body.amxcs-body .topic-answers > div[id^="answer"] .top-area .right-side a {
	color: #7c879b;
	font-size: 13px;
}

body.amxcs-body .topic-answers > div[id^="answer"] .center-area,
body.amxcs-body .topic-answers > div[id^="answer"] .bottom-area {
	display: flex;
	margin: 0;
	padding-right: 18px;
	padding-left: 18px;
}

body.amxcs-body .topic-answers > div[id^="answer"] .center-area {
	min-height: 0;
	padding-top: 18px;
	padding-bottom: 18px;
}

body.amxcs-body .topic-answers > div[id^="answer"] .center-area::after,
body.amxcs-body .topic-answers > div[id^="answer"] .bottom-area::after {
	left: 168px;
	background: var(--amx-line);
}

body.amxcs-body .topic-answers > div[id^="answer"] .center-area .left-side img {
	width: 104px;
	height: 104px;
	margin-bottom: 12px;
	padding: 0;
	border-radius: 15px;
	box-shadow: 0 8px 22px rgba(17, 26, 45, 0.12);
	object-fit: cover;
}

body.amxcs-body .topic-answers > div[id^="answer"] .center-area .left-side p {
	color: #707b8f;
	font-size: 13px;
	line-height: 26px;
}

body.amxcs-body .topic-answers > div[id^="answer"] .center-area .right-side {
	color: #2b3549;
	font-size: 15px;
	line-height: 1.65;
}

body.amxcs-body .topic-answers > div[id^="answer"] .center-area > .clearfix,
body.amxcs-body .topic-answers > div[id^="answer"] .bottom-area > .clearfix {
	display: none;
}

body.amxcs-body .topic-answers > div[id^="answer"] .bottom-area {
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid var(--amx-line);
	border-color: var(--amx-line);
}

body.amxcs-body .amxcs-page-monitor-content .monitoring .amxcs-server-summary h3 {
	color: var(--amx-ink) !important;
	font-size: 14px;
}

body.amxcs-body .amxcs-page-monitor-content .monitoring .amxcs-server-summary > span,
body.amxcs-body .amxcs-page-monitor-content .monitoring .amxcs-server-summary > a {
	color: #6f7b91 !important;
	font-size: 11px;
}

body.amxcs-body .amxcs-page-monitor-content .monitoring .amxcs-server-players {
	color: var(--amx-ink);
}

body.amxcs-body .amxcs-page-monitor-content .monitoring .amxcs-server-players > span {
	color: #718096;
}

#cote {
	grid-column: 1 / -1;
}

@media (hover: hover) and (pointer: fine) {
	body.amxcs-body .btn:hover,
	.wapper .header .auth-in:hover {
		transform: translateY(-1px);
	}

	body.amxcs-body .btn:active,
	.wapper .header .auth-in:active,
	.wapper .header .menu-trigger:active,
	.amxcs-server-players:active,
	.amxcs-server-admin:active {
		transform: scale(0.97);
	}

	.block,
	.amxcs-quote {
		transition: transform 220ms var(--amx-ease-out), box-shadow 220ms ease;
	}

	.amxcs-feed > .block:hover,
	.amxcs-side > .block:hover,
	.amxcs-side > .amxcs-quote:hover {
		box-shadow: 0 18px 48px rgba(35, 51, 86, 0.09);
	}

	.amxcs-server-card .map-image {
		transition: transform 220ms var(--amx-ease-out);
	}

	.amxcs-server-card:hover .map-image {
		transform: scale(1.04);
	}

	.amxcs-quick-links > a {
		transition: background-color 180ms ease, transform 180ms var(--amx-ease-out);
	}

	.amxcs-quick-links > a:hover {
		position: relative;
		z-index: 1;
		background: #f6f4ff;
	}

	.amxcs-services-accordion > a:hover > span,
	.amxcs-services-accordion > a:focus-visible > span {
		transform: translateY(-3px);
	}
}

@media (min-width: 1321px) {
	.wapper .header #hidden-menu.collapse {
		display: block !important;
	}

	.order-is-first {
		order: -1;
	}

	.order-is-last {
		order: 13;
	}
}

@media (max-width: 1320px) {
	.wapper .header .amxcs-nav {
		position: relative;
	}

	.wapper .header .menu-trigger {
		display: inline-flex;
	}

	.wapper .header #hidden-menu {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		left: 0;
		z-index: 50;
		padding: 8px;
		border: 1px solid var(--amx-line);
		border-radius: 15px;
		background: var(--amx-surface);
		box-shadow: var(--amx-shadow);
	}

	.wapper .header #hidden-menu:not(.show):not(.collapsing) {
		display: none;
	}

	.wapper .header #hidden-menu.show {
		display: block;
	}

	.wapper .header .collapsible-menu:not(.user-menu) {
		display: grid;
		width: 100%;
		gap: 0;
	}

	.wapper .header #hidden-menu .collapsible-menu > li.collapsible {
		padding-right: 0;
	}

	.wapper .header #hidden-menu .collapsible-menu > li.collapsible::after {
		top: 22px;
		right: 14px;
	}

	.wapper .header .collapsible-menu:not(.user-menu) > li > a {
		width: 100%;
		min-height: 44px;
		padding: 0 12px !important;
		border-radius: 9px !important;
	}

	.wapper .header .collapsible-menu:not(.user-menu) > li > a:hover,
	.wapper .header .collapsible-menu:not(.user-menu) > li > a.open {
		background: #f2f3ff !important;
	}

	.wapper .header #hidden-menu .collapsible-menu > li > ul {
		position: static;
		display: none !important;
		width: 100% !important;
		min-width: 0 !important;
		margin: 0 0 6px;
		padding: 3px 8px 6px 18px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
		transition: none;
	}

	.wapper .header #hidden-menu .collapsible-menu > li > a.open + ul {
		display: block !important;
	}

	.wapper .header .amxcs-header-actions {
		margin-left: 0;
	}
}

@media (max-width: 1100px) {
	.wapper .header .amxcs-nav {
		gap: 20px;
	}

	.amxcs-header-brand {
		min-width: 0;
	}

	.wapper .header .collapsible-menu {
		gap: 18px;
	}

	.amxcs-hero-v2 {
		grid-template-columns: 1fr;
	}

	.amxcs-hero-monitor {
		border-top: 1px solid rgba(169, 183, 214, 0.15);
		border-left: 0;
	}

	.amxcs-portal-grid {
		grid-template-columns: 1fr;
	}

	.amxcs-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-flow: dense;
	}

	.amxcs-side > .amxcs-quote,
	.amxcs-side > .amxcs-quick-links,
	.amxcs-side > #vk_groups,
	.amxcs-side > [id^="vk_"] {
		grid-column: 1 / -1;
	}

	.amxcs-page-monitor {
		grid-template-columns: 220px minmax(0, 1fr);
	}

	.amxcs-page-monitor-content .amxcs-server-grid {
		grid-template-columns: 1fr;
	}

	.wapper .amxcs-page-monitor-content .monitoring .amxcs-server-grid > .server.amxcs-server-card {
		border-right: 0;
		border-bottom: 1px solid var(--amx-line);
	}
}

@media (max-width: 991px) {
	.wapper .header .amxcs-nav {
		position: relative;
	}

	.wapper .header .menu-trigger {
		display: inline-flex;
	}

	.wapper .header #hidden-menu {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		left: 0;
		z-index: 50;
		padding: 8px;
		border: 1px solid var(--amx-line);
		border-radius: 15px;
		background: #fff;
		box-shadow: var(--amx-shadow);
	}

	.wapper .header #hidden-menu:not(.show):not(.collapsing) {
		display: none;
	}

	.wapper .header #hidden-menu.show {
		display: block;
	}

	.wapper .header .collapsible-menu:not(.user-menu) {
		display: grid;
		gap: 0;
	}

	.wapper .header .collapsible-menu:not(.user-menu) > li > a {
		width: 100%;
		min-height: 44px;
		padding: 0 12px !important;
		border-radius: 9px !important;
	}

	.wapper .header .collapsible-menu:not(.user-menu) > li > a:hover,
	.wapper .header .collapsible-menu:not(.user-menu) > li > a.open {
		background: #f2f3ff !important;
	}

	.wapper .header #hidden-menu .collapsible-menu > li > ul {
		position: static;
		display: none !important;
		width: 100% !important;
		min-width: 0 !important;
		margin: 0 0 6px;
		padding: 3px 8px 6px 18px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
		transition: none;
	}

	.wapper .header #hidden-menu .collapsible-menu > li > a.open + ul {
		display: block !important;
	}

	#amxcs-main > .row > .col-lg-9,
	#amxcs-main > .row > .col-lg-3 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	#amxcs-main > .row > .col-lg-3 {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-flow: dense;
		gap: 18px;
		margin-top: 18px;
	}

	#amxcs-main > .row > .col-lg-3 > .block {
		margin: 0;
	}

	body.amxcs-body .profile-settings > .row {
		column-count: 1;
	}
}

@media (max-width: 767px) {
	.wapper .container {
		width: min(calc(100% - 24px), 560px);
	}

	.wapper > .content {
		padding-bottom: 42px;
	}

	.wapper .header,
	.wapper .header .amxcs-nav {
		min-height: 66px;
	}

	.wapper .header .amxcs-nav {
		gap: 10px;
	}

	.amxcs-brand-mark {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
		border-radius: 11px;
	}

	.amxcs-brand-copy strong {
		max-width: 138px;
		font-size: 15px;
	}

	.wapper .header .auth-in {
		display: none;
	}

	.wapper .header .menu-trigger {
		height: 40px;
		width: auto;
		min-width: 92px;
		flex: 0 0 auto;
		font-size: 13px;
		line-height: 1;
	}

	.wapper .header .menu-trigger > span {
		width: 14px;
		flex: 0 0 14px;
	}

	.wapper .header .collapsible-menu.user-menu {
		width: 42px !important;
		height: 42px !important;
		flex: 0 0 42px;
		margin-left: 0;
	}

	.wapper .header .collapsible-menu.user-menu > li {
		position: relative;
		width: 42px !important;
		height: 42px !important;
	}

	.wapper .header .collapsible-menu.user-menu > li::before,
	.wapper .header .collapsible-menu.user-menu > li::after {
		display: none !important;
	}

	.wapper .header .collapsible-menu.user-menu > li > a {
		min-width: 42px;
		width: 42px;
		height: 42px;
		grid-template-columns: 1fr;
		padding: 3px !important;
	}

	.wapper .header .collapsible-menu.user-menu > li > a > img {
		width: 34px;
		height: 34px;
		grid-row: auto;
	}

	.wapper .header .collapsible-menu.user-menu > li > a > h3,
	.wapper .header .collapsible-menu.user-menu > li > a > p {
		display: none;
	}

	.wapper .header .collapsible-menu.user-menu > li > ul {
		position: absolute !important;
		top: calc(100% + 8px);
		right: 0;
		left: auto;
		z-index: 60;
		width: 230px !important;
		min-width: 230px !important;
		margin: 0;
		padding: 8px;
		border: 1px solid var(--amx-line);
		border-radius: 15px;
		background: #fff;
		box-shadow: var(--amx-shadow);
	}

	.wapper .header .collapsible-menu.user-menu > li > ul a {
		display: flex;
		min-height: 40px;
		align-items: center;
		padding: 0 11px !important;
		border-radius: 9px;
		color: var(--amx-ink);
		font-size: 13px;
		font-weight: 700;
		white-space: nowrap;
	}

	.wapper .header .collapsible-menu.user-menu > li > ul a:hover {
		background: #f2f3ff;
		color: var(--amx-accent);
	}

	body.amxcs-body .profile-page.row {
		margin-right: 0;
		margin-left: 0;
	}

	body.amxcs-body .profile-page.row > [class*="col-"] {
		padding-right: 0;
		padding-left: 0;
	}

	.wapper .navigation,
	.wapper .navigation .breadcrumb {
		min-height: 46px;
	}

	#amxcs-main {
		padding-top: 16px;
	}

	.amxcs-hero-v2 {
		min-height: 0;
		border-radius: 21px;
	}

	.amxcs-hero-copy {
		padding: 34px 22px 32px;
	}

	.amxcs-eyebrow {
		margin-bottom: 18px;
		font-size: 11px;
	}

	.amxcs-hero-copy h1 {
		max-width: 100%;
		font-size: clamp(36px, 11vw, 48px);
		line-height: 0.99;
		letter-spacing: -0.05em;
	}

	.amxcs-hero-copy > p {
		margin-top: 20px;
		font-size: 14px;
		line-height: 1.58;
	}

	.amxcs-hero-actions {
		display: grid;
		margin-top: 25px;
	}

	.amxcs-hero-actions .btn {
		width: 100%;
	}

	.amxcs-trust-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px 16px;
	}

	.amxcs-hero-monitor {
		padding: 28px 20px 22px;
	}

	.amxcs-monitor-head strong {
		font-size: 17px;
	}

	.wapper .amxcs-hero-monitor .monitoring .amxcs-server-grid > .server.amxcs-server-card {
		grid-template-columns: 42px minmax(0, 1fr) auto;
	}

	.amxcs-server-card .map-image {
		width: 42px;
		height: 39px;
	}

	.amxcs-marquee {
		margin: 14px 0;
	}

	.block,
	.amxcs-quote {
		border-radius: 17px;
	}

	.block {
		padding: 18px;
	}

	.block .block_head {
		min-height: 62px;
		margin: -18px -18px 18px;
		padding: 0 18px;
		font-size: 17px;
	}

	.block .block_head > a {
		font-size: 12px;
	}

	.amxcs-news-card .vertical-center-line {
		margin: -18px -18px 0;
	}

	#new_news,
	.news {
		grid-template-columns: 1fr;
	}

	#new_news > div:not(.loader),
	.news > div:not(.loader) {
		min-height: 220px;
		padding: 22px;
		border-right: 0;
		border-bottom: 1px solid var(--amx-line);
	}

	#new_news > div:not(.loader):last-child,
	.news > div:not(.loader):last-child {
		border-bottom: 0;
	}

	#new_news > div:not(.loader) h3,
	.news > div:not(.loader) h3 {
		font-size: 22px;
	}

	.amxcs-forum-card #forum {
		margin: -18px -18px 0;
		padding: 4px 17px 12px;
	}

	.amxcs-services-card {
		padding-bottom: 0;
	}

	.amxcs-services-accordion {
		height: auto;
		flex-direction: column;
		margin: -18px -18px 0;
	}

	.amxcs-services-accordion > a {
		min-height: 180px;
		flex-basis: auto;
		padding: 22px;
	}

	#forum .row .col-lg-8,
	#forum.row .col-lg-8,
	#forum .row .col-lg-4,
	#forum.row .col-lg-4 {
		min-height: 0;
		padding: 13px 3px;
	}

	#forum .row .col-lg-4,
	#forum.row .col-lg-4 {
		padding-top: 0;
	}

	.amxcs-community-card {
		grid-template-columns: 1fr;
	}

	.amxcs-community-copy {
		padding: 28px 24px;
	}

	.amxcs-community-copy h2 {
		font-size: 31px;
	}

	.amxcs-community-visual {
		min-height: 180px;
		background:
			linear-gradient(0deg, var(--amx-navy), transparent 42%),
			url("../img/hero-support.webp") center / cover;
	}

	.amxcs-side {
		grid-template-columns: 1fr;
	}

	.amxcs-side > .amxcs-quote,
	.amxcs-side > .amxcs-quick-links,
	.amxcs-side > #vk_groups,
	.amxcs-side > [id^="vk_"] {
		grid-column: auto;
	}

	.amxcs-page-monitor {
		grid-template-columns: 1fr;
		border-radius: 17px;
	}

	.amxcs-page-monitor-copy {
		padding: 20px;
		border-right: 0;
		border-bottom: 1px solid var(--amx-line);
	}

	.amxcs-page-monitor-content {
		padding: 8px 16px;
	}

	#amxcs-main > .row > .col-lg-3 {
		grid-template-columns: 1fr;
	}

	#chat #chat_messages {
		height: 280px;
		max-height: 52vh;
	}

	#events .event {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px 14px;
		padding: 15px 0;
	}

	#events .event > div {
		grid-column: 1 / -1;
	}

	#events .event > a:not(.btn) {
		grid-column: 1;
	}

	#events .event > span {
		grid-column: 2;
		justify-content: flex-end;
		text-align: right;
	}

	#events .event > a.btn {
		width: 100%;
		grid-column: 1 / -1;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .top-area {
		margin-right: -18px;
		margin-left: -18px;
		padding-right: 18px;
		padding-left: 18px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .left-side {
		width: 96px;
		flex-basis: 96px;
		padding-right: 12px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .right-side {
		width: calc(100% - 96px);
		padding-left: 12px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .center-area,
	body.amxcs-body .topic-answers > div[id^="answer"] .bottom-area {
		margin-right: -18px;
		margin-left: -18px;
		padding-right: 18px;
		padding-left: 18px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .center-area {
		min-height: 210px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .center-area::after,
	body.amxcs-body .topic-answers > div[id^="answer"] .bottom-area::after {
		left: 114px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .center-area .left-side img {
		width: 72px;
		height: 72px;
		border-radius: 12px;
	}

	.amxcs-footer-inner {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 24px;
	}

	.amxcs-footer-links {
		justify-content: flex-start;
		gap: 12px 18px;
	}

	.amxcs-footer-meta {
		text-align: left;
	}

	.wapper > .footer .banners {
		grid-column: auto;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}

@media (max-width: 390px) {
	.amxcs-brand-copy strong {
		max-width: 112px;
	}

	.amxcs-monitor-head {
		flex-direction: column;
	}

	.wapper .amxcs-hero-monitor .monitoring .amxcs-server-grid > .server.amxcs-server-card {
		grid-template-columns: 40px minmax(0, 1fr) auto;
		gap: 9px;
	}

	.amxcs-server-card .map-image {
		width: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}
}

/* Unified subpage rhythm */
@media (max-width: 991px) {
	#forum_topics.row {
		grid-template-columns: 1fr;
	}

	#forum_topics.row > .col-lg-4 {
		padding-top: 0;
		border-left: 0;
	}

	#forum_topics.row > .col-lg-8 {
		border-bottom: 0;
	}
}

@media (max-width: 767px) {
	.amxcs-theme-toggle {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
		border-radius: 11px;
	}

	.wapper .header .amxcs-nav {
		gap: 7px;
	}

	.wapper .header .menu-trigger {
		min-width: 84px;
		padding-right: 11px;
		padding-left: 11px;
	}

	#amxcs-main > .row > [class*="col-"] > .block + .block,
	#amxcs-main > .row > [class*="col-"] > form + .block,
	#amxcs-main > .row > [class*="col-"] > .block + form {
		margin-top: 16px;
	}

	#forum_topics.row > [class*="col-"] {
		padding-right: 10px;
		padding-left: 10px;
	}

	body.amxcs-body .topic-answers {
		gap: 12px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .top-area {
		margin: 0;
		padding-right: 14px;
		padding-left: 14px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .left-side {
		width: 92px;
		flex-basis: 92px;
		padding-right: 10px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .right-side {
		width: calc(100% - 92px);
		padding-left: 10px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .center-area,
	body.amxcs-body .topic-answers > div[id^="answer"] .bottom-area {
		margin: 0;
		padding-right: 14px;
		padding-left: 14px;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .center-area {
		min-height: 0;
	}

	body.amxcs-body .topic-answers > div[id^="answer"] .center-area::after,
	body.amxcs-body .topic-answers > div[id^="answer"] .bottom-area::after {
		left: 106px;
	}

	.amxcs-footer-inner {
		gap: 20px;
	}

	.wapper > .footer {
		padding: 30px 0;
	}
}

/* Client-side dark theme */
html[data-amxcs-theme="dark"] {
	--amx-bg: #080e1b;
	--amx-surface: #111a2a;
	--amx-surface-soft: #162135;
	--amx-ink: #f1f5fd;
	--amx-muted: #9ba9be;
	--amx-line: #28374d;
	--amx-brand: #8d7dff;
	--amx-brand-bright: #a79bff;
	--amx-navy: #07101f;
	--amx-navy-soft: #101b2e;
	--amx-shadow: 0 22px 68px rgba(0, 0, 0, 0.34);
	--amx-shadow-small: 0 12px 34px rgba(0, 0, 0, 0.24);
	background: var(--amx-bg);
}

html[data-amxcs-theme="dark"] body.amxcs-body {
	background:
		radial-gradient(circle at 8% 4%, rgba(117, 94, 255, 0.13), transparent 30%),
		linear-gradient(180deg, #0a1120, var(--amx-bg) 38%);
	color: var(--amx-ink);
}

html[data-amxcs-theme="dark"] .wapper .header {
	border-bottom-color: rgba(52, 70, 96, 0.88);
	background: rgba(10, 17, 31, 0.9);
}

html[data-amxcs-theme="dark"] .wapper .header.amxcs-header-scrolled {
	background: rgba(10, 17, 31, 0.97);
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu > li > a {
	color: #a8b4c7 !important;
}

html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu > li > a:hover,
html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu > li > a.open,
html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu > li.active > a {
	color: #fff !important;
}

html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu > li > ul,
html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu.user-menu > li > ul {
	border-color: var(--amx-line);
	background: rgba(17, 26, 42, 0.99);
}

html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu > li > ul > li > a:hover,
html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu.user-menu > li > ul a:hover {
	background: #1b2940 !important;
	color: #b6adff !important;
}

html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu.user-menu > li > a > p {
	color: #8f9cb1;
}

html[data-amxcs-theme="dark"] .wapper .navigation {
	border-bottom-color: var(--amx-line);
	background: rgba(13, 22, 37, 0.72);
}

html[data-amxcs-theme="dark"] .wapper .navigation .breadcrumb,
html[data-amxcs-theme="dark"] .wapper .navigation .breadcrumb a {
	color: #94a2b7;
}

html[data-amxcs-theme="dark"] .block,
html[data-amxcs-theme="dark"] .amxcs-quote {
	border-color: var(--amx-line);
	background-color: rgba(17, 26, 42, 0.96);
	color: var(--amx-ink);
}

html[data-amxcs-theme="dark"] .block .block_head,
html[data-amxcs-theme="dark"] .block .block_head a,
html[data-amxcs-theme="dark"] .block h2,
html[data-amxcs-theme="dark"] .block h3,
html[data-amxcs-theme="dark"] .block h4,
html[data-amxcs-theme="dark"] .block strong {
	color: var(--amx-ink);
}

html[data-amxcs-theme="dark"] .amxcs-page-monitor-copy,
html[data-amxcs-theme="dark"] body.amxcs-body .topic-answers > div[id^="answer"] .top-area,
html[data-amxcs-theme="dark"] body.amxcs-body .table thead td,
html[data-amxcs-theme="dark"] body.amxcs-body .table thead th {
	background: var(--amx-surface-soft);
}

html[data-amxcs-theme="dark"] .amxcs-page-monitor-copy small,
html[data-amxcs-theme="dark"] .amxcs-page-monitor-copy .amxcs-status-label,
html[data-amxcs-theme="dark"] #forum .row .col-lg-8 p,
html[data-amxcs-theme="dark"] #forum.row .col-lg-8 p,
html[data-amxcs-theme="dark"] #forum .row .col-lg-4 p,
html[data-amxcs-theme="dark"] #forum.row .col-lg-4 p {
	color: #929fb3;
}

html[data-amxcs-theme="dark"] #forum > h2,
html[data-amxcs-theme="dark"] #forum_topics > .col-lg-12,
html[data-amxcs-theme="dark"] .topic-answers > div[id^="answer"] {
	border-color: var(--amx-line);
	background: var(--amx-surface);
}

html[data-amxcs-theme="dark"] #forum > h2 {
	background: var(--amx-surface-soft) !important;
	color: #dfe6f1 !important;
}

html[data-amxcs-theme="dark"] body.amxcs-body .topic-answers > div[id^="answer"] .center-area .right-side,
html[data-amxcs-theme="dark"] #chat #chat_messages .chat_message .with_code {
	color: #d8e0ec;
}

html[data-amxcs-theme="dark"] body.amxcs-body .form-control,
html[data-amxcs-theme="dark"] body.amxcs-body input.form-control,
html[data-amxcs-theme="dark"] body.amxcs-body select.form-control,
html[data-amxcs-theme="dark"] body.amxcs-body textarea.form-control,
html[data-amxcs-theme="dark"] body.amxcs-body input[type="file"],
html[data-amxcs-theme="dark"] .table-responsive,
html[data-amxcs-theme="dark"] .modal .modal-content,
html[data-amxcs-theme="dark"] .dropdown-menu,
html[data-amxcs-theme="dark"] .popover {
	border-color: var(--amx-line);
	background: var(--amx-surface);
	color: var(--amx-ink);
}

html[data-amxcs-theme="dark"] body.amxcs-body input[type="file"]::file-selector-button,
html[data-amxcs-theme="dark"] body.amxcs-body .input-group-text {
	background: #1d2a40;
	color: #b8b0ff;
}

html[data-amxcs-theme="dark"] body.amxcs-body .table,
html[data-amxcs-theme="dark"] body.amxcs-body .table td,
html[data-amxcs-theme="dark"] body.amxcs-body .table th,
html[data-amxcs-theme="dark"] body.amxcs-body .profile-page .profile table tbody tr td,
html[data-amxcs-theme="dark"] body.amxcs-body .profile-page .profile table tbody tr td[colspan="2"] h4 {
	border-color: var(--amx-line);
	background-color: transparent;
	color: var(--amx-ink);
}

html[data-amxcs-theme="dark"] .modal,
html[data-amxcs-theme="dark"] .modal .modal-content .modal-header h4,
html[data-amxcs-theme="dark"] .modal .modal-content .modal-header .close {
	color: var(--amx-ink);
}

html[data-amxcs-theme="dark"] .amxcs-quick-links,
html[data-amxcs-theme="dark"] .amxcs-quick-links > a {
	background-color: var(--amx-surface);
	color: var(--amx-ink);
}

html[data-amxcs-theme="dark"] .vertical-navigation ul li a,
html[data-amxcs-theme="dark"] #last_activity > span p,
html[data-amxcs-theme="dark"] #top_users > a div p span,
html[data-amxcs-theme="dark"] #events .event > span,
html[data-amxcs-theme="dark"] #events .event > div > a {
	color: #98a5b9;
}

html[data-amxcs-theme="dark"] .pagination .page-link {
	border-color: var(--amx-line);
	background: var(--amx-surface);
	color: #a7b3c5;
}

html[data-amxcs-theme="dark"] .wapper > .footer {
	border-top-color: var(--amx-line);
	background: rgba(9, 16, 29, 0.88);
}

html[data-amxcs-theme="dark"] .amxcs-footer-brand strong {
	color: var(--amx-ink);
}

html[data-amxcs-theme="dark"] .amxcs-footer-brand small {
	color: #8391a6;
}

html[data-amxcs-theme="dark"] .amxcs-footer-links a,
html[data-amxcs-theme="dark"] .amxcs-footer-meta p,
html[data-amxcs-theme="dark"] .amxcs-footer-meta #copyright {
	color: #8f9db1;
}

html[data-amxcs-theme="dark"] .block hr,
html[data-amxcs-theme="dark"] .new_info {
	border-color: var(--amx-line);
}

html[data-amxcs-theme="dark"] .profile-page #friends::after {
	background: linear-gradient(to top, var(--amx-surface) 10%, rgba(17, 26, 42, 0));
}

html[data-amxcs-theme="dark"] .profile-page #friends .empty-element {
	color: var(--amx-muted);
}

html[data-amxcs-theme="dark"] body.amxcs-body .noty-block,
html[data-amxcs-theme="dark"] body.amxcs-body #store_service_info.with_code {
	border-color: var(--amx-line) !important;
	background: #16233a !important;
	color: #afbbce !important;
}

html[data-amxcs-theme="dark"] body.amxcs-body .noty-block.info {
	border-left-color: #4f8bd6 !important;
	background: #142840 !important;
}

html[data-amxcs-theme="dark"] .mce-panel,
html[data-amxcs-theme="dark"] .mce-container,
html[data-amxcs-theme="dark"] .mce-toolbar-grp,
html[data-amxcs-theme="dark"] .mce-statusbar {
	border-color: var(--amx-line) !important;
	background: var(--amx-surface-soft) !important;
	color: var(--amx-ink) !important;
}

.tox.tox-tinymce {
	overflow: hidden;
	border-color: var(--amx-line);
	border-radius: 12px;
}

html[data-amxcs-theme="dark"] .tox.tox-tinymce,
html[data-amxcs-theme="dark"] .tox .tox-editor-header,
html[data-amxcs-theme="dark"] .tox .tox-toolbar-overlord,
html[data-amxcs-theme="dark"] .tox .tox-toolbar,
html[data-amxcs-theme="dark"] .tox .tox-toolbar__primary,
html[data-amxcs-theme="dark"] .tox .tox-menubar,
html[data-amxcs-theme="dark"] .tox .tox-statusbar,
html[data-amxcs-theme="dark"] .tox .tox-sidebar-wrap {
	border-color: var(--amx-line) !important;
	background: var(--amx-surface-soft) !important;
	box-shadow: none !important;
}

html[data-amxcs-theme="dark"] .tox .tox-tbtn,
html[data-amxcs-theme="dark"] .tox .tox-statusbar__path-item,
html[data-amxcs-theme="dark"] .tox .tox-statusbar__wordcount,
html[data-amxcs-theme="dark"] .tox .tox-statusbar__branding a,
html[data-amxcs-theme="dark"] .tox .tox-mbtn,
html[data-amxcs-theme="dark"] .tox .tox-mbtn__select-label {
	color: #aeb9cb !important;
}

html[data-amxcs-theme="dark"] .tox .tox-tbtn:hover,
html[data-amxcs-theme="dark"] .tox .tox-tbtn--enabled,
html[data-amxcs-theme="dark"] .tox .tox-tbtn--enabled:hover,
html[data-amxcs-theme="dark"] .tox .tox-mbtn:hover,
html[data-amxcs-theme="dark"] .tox .tox-mbtn--active {
	background: #22314b !important;
}

html[data-amxcs-theme="dark"] .tox .tox-tbtn svg {
	fill: #aeb9cb !important;
}

html[data-amxcs-theme="dark"] .tox .tox-tbtn--disabled svg {
	fill: #647087 !important;
}

html[data-amxcs-theme="dark"] .tox .tox-menu,
html[data-amxcs-theme="dark"] .tox .tox-collection__item,
html[data-amxcs-theme="dark"] .tox .tox-dialog,
html[data-amxcs-theme="dark"] .tox .tox-dialog__header,
html[data-amxcs-theme="dark"] .tox .tox-dialog__body,
html[data-amxcs-theme="dark"] .tox .tox-dialog__footer {
	border-color: var(--amx-line) !important;
	background: var(--amx-surface-soft) !important;
	color: #d8e0ec !important;
}

html[data-amxcs-theme="dark"] .tox .tox-collection__item--active,
html[data-amxcs-theme="dark"] .tox .tox-collection__item:hover {
	background: #22314b !important;
}

@media (max-width: 1320px) {
	html[data-amxcs-theme="dark"] .wapper .header #hidden-menu {
		border-color: var(--amx-line);
		background: rgba(17, 26, 42, 0.99);
		box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
	}

	html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu:not(.user-menu) > li > a:hover,
	html[data-amxcs-theme="dark"] .wapper .header .collapsible-menu:not(.user-menu) > li > a.open {
		background: #1b2940 !important;
		color: #fff !important;
	}
}
