* {
	box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
p,
a,
img,
ul,
ol,
li,
table,
thead,
tbody,
tr,
th,
td,
header,
main,
nav,
section,
article,
footer {
	margin: 0;
	padding: 0;
	border: 0;
}

:root {
	--vb-bg: #11110f;
	--vb-header: #11110f;
	--vb-nav: #181916;
	--vb-panel: #181916;
	--vb-panel-dark: #0d0d0d;
	--vb-row: #181916;
	--vb-row-alt: #141512;
	--vb-border: #292b27;
	--vb-green: #95f400;
	--vb-green-hover: #a7ff1f;
	--vb-text: #f4f4f4;
	--vb-muted: #a6aaa2;
	--header-h: 82px;
}

html {
	background: var(--vb-bg);
}

body {
	min-width: 300px;
	background: var(--vb-bg);
	color: var(--vb-text);
	font-family: "Roboto", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	text-align: left;
}

.wrap {
	width: min(1220px, calc(100% - 32px));
	margin: 0 auto;
}

a {
	color: var(--vb-green);
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

a:hover {
	color: var(--vb-green-hover);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-h);
	margin-bottom: 18px;
	border-bottom: 1px solid #20211e;
	background: var(--vb-header);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.site-header > .wrap,
.header-inner {
	height: 100%;
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
}

.logo {
	display: inline-flex;
	width: 168px;
	height: 54px;
	flex: 0 0 auto;
	align-items: center;
}

.logo img {
	width: 168px;
	height: 54px;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	align-items: center;
}

.nav-list {
	display: flex;
	gap: 2px;
	padding: 4px;
	border-radius: 3px;
	background: var(--vb-nav);
	list-style: none;
}

.nav-list a {
	display: inline-flex;
	min-height: 34px;
	padding: 0 13px;
	align-items: center;
	border-radius: 2px;
	color: #e6e7e3;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.nav-list a:hover {
	background: #20221e;
	color: var(--vb-green);
}

.nav-cta {
	display: flex;
	margin-left: auto;
	gap: 10px;
	flex: 0 0 auto;
}

.btn,
a.m_but {
	display: inline-flex;
	min-height: 38px;
	padding: 10px 22px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--vb-green);
	border-radius: 3px;
	background: var(--vb-green);
	color: #10110e;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.btn:hover,
a.m_but:hover {
	border-color: var(--vb-green-hover);
	background: var(--vb-green-hover);
	color: #10110e;
	box-shadow: 0 0 18px rgba(149, 244, 0, .18);
}

.btn-ghost,
a.m_but.intro-cta__secondary {
	border-color: #2b2d29;
	background: #181916;
	color: #f1f2ee;
	box-shadow: none;
}

.btn-ghost:hover,
a.m_but.intro-cta__secondary:hover {
	border-color: var(--vb-green);
	background: #20221e;
	color: var(--vb-green);
}

.article-content {
	padding: 18px 0 0;
}

.article-content p,
.article-content ul,
.article-content ol {
	margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
	padding-left: 28px;
}

.article-content li {
	margin: 7px 0;
}

.article-content li::marker {
	color: var(--vb-green);
	font-weight: 700;
}

.content-case,
.feature-case {
	border: 1px solid var(--vb-border);
	border-radius: 4px;
	background: var(--vb-panel);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .24);
}

.content-case--intro {
	margin-bottom: 22px;
	padding: 26px 28px;
}

.feature-case {
	margin-bottom: 30px;
	padding: 26px;
}

.feature-case__content.content-case {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.main_zag {
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

h1.main_zag {
	margin-bottom: 20px;
	color: var(--vb-text);
	font-size: 26px;
	line-height: 1.25;
	text-align: center;
}

.article-content > h2.main_zag {
	margin: 36px 0 20px;
	padding: 11px 14px;
	border-left: 4px solid var(--vb-green);
	border-radius: 3px;
	background: var(--vb-nav);
	color: var(--vb-text);
	font-size: 20px;
	line-height: 1.3;
}

.content-case h3 {
	margin: 28px 0 18px;
	padding: 10px 14px;
	border-left: 4px solid var(--vb-green);
	border-radius: 3px;
	background: var(--vb-nav);
	color: var(--vb-text);
	font-size: 18px;
	line-height: 1.3;
	text-transform: uppercase;
}

.banner-slot {
	width: 100%;
	max-width: 1108px;
	aspect-ratio: 16 / 9;
	margin: 0 auto 22px;
	overflow: hidden;
	border: 1px solid var(--vb-border);
	border-radius: 4px;
	background: var(--vb-panel-dark);
}

.banner-slot .image-lightbox {
	display: block;
	width: 100%;
	height: 100%;
	cursor: zoom-in;
}

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

.intro-cta {
	display: flex;
	margin: 0 0 24px;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.table-card {
	margin: 0 0 24px;
	overflow: hidden;
	border: 1px solid var(--vb-border);
	border-radius: 4px;
	background: var(--vb-panel);
}

.entry_table {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.article-content table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	background: var(--vb-row);
	color: var(--vb-text);
	font-size: 14px;
}

.article-content th,
.article-content td {
	padding: 12px 14px;
	border-right: 1px solid var(--vb-border);
	border-bottom: 1px solid var(--vb-border);
	text-align: left;
	vertical-align: top;
}

.article-content th:last-child,
.article-content td:last-child {
	border-right: 0;
}

.article-content tbody tr:last-child td {
	border-bottom: 0;
}

.article-content thead th {
	background: #20221e;
	color: var(--vb-green);
	font-weight: 800;
	text-transform: uppercase;
}

.article-content tbody td {
	background: var(--vb-row);
	color: #d9dbd5;
	font-weight: 400;
	text-transform: none;
}

.article-content tbody td:first-child {
	color: #f0f1ed;
	font-weight: 700;
}

.article-content tbody tr:nth-child(even) td {
	background: var(--vb-row-alt);
}

.article-content tbody tr:hover td {
	background: #20231d;
}

.article-content p.warn-block {
	position: relative;
	margin: 20px 0;
	padding: 17px 20px 17px 58px;
	border: 1px solid rgba(149, 244, 0, .28);
	border-left: 4px solid var(--vb-green);
	border-radius: 4px;
	background: linear-gradient(90deg, rgba(149, 244, 0, .10), rgba(149, 244, 0, .025)), #161814;
	color: #eef1e9;
}

.article-content p.warn-block::before {
	content: "!";
	position: absolute;
	top: 17px;
	left: 18px;
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border: 1px solid var(--vb-green);
	border-radius: 50%;
	background: #20251a;
	color: var(--vb-green);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
}

.faq-case .content-case > h3 {
	margin: 1.6rem 0 .6rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vb-green);
	font-size: 1.12rem;
	line-height: 1.4;
	letter-spacing: 0;
	text-transform: none;
}

.faq-case .content-case > h3:first-child {
	margin-top: 0;
}

.faq-case .content-case > p {
	margin: 0 0 1rem;
	color: #d4d6d0;
	line-height: 1.65;
}

.faq-case .content-case > p:last-child {
	margin-bottom: 0;
}

footer {
	margin-top: 10px;
	padding: 12px 0;
	border-top: 1px solid var(--vb-border);
	background: var(--vb-header);
}

.flogo {
	display: flex;
	justify-content: center;
	padding: 8px 0;
}

.flogo img {
	width: 168px;
	height: auto;
}

.copu {
	padding-bottom: 8px;
	color: var(--vb-muted);
	font-size: 12px;
	font-weight: 600;
	text-align: center;
}

.fancybox-bg {
	background: #070806;
}

@media (max-width: 1020px) {
	.header-inner {
		gap: 14px;
	}

	.nav-list a {
		padding: 0 9px;
		font-size: 11px;
	}

	.nav-cta .btn {
		padding: 9px 14px;
	}
}

@media (max-width: 759px) {
	:root {
		--header-h: 66px;
	}

	.wrap {
		width: min(100% - 20px, 1220px);
	}

	.logo,
	.logo img {
		width: 120px;
		height: 42px;
	}

	.nav-menu {
		display: none;
	}

	.nav-cta {
		gap: 6px;
	}

	.nav-cta .btn {
		min-height: 34px;
		padding: 8px 10px;
		font-size: 11px;
	}

	.article-content {
		padding-top: 8px;
	}

	.content-case--intro,
	.feature-case {
		padding: 18px 16px;
	}

	h1.main_zag {
		font-size: 21px;
	}

	.article-content > h2.main_zag {
		font-size: 18px;
	}

	.banner-slot {
		margin-bottom: 18px;
	}

	a.m_but {
		min-height: 36px;
		padding: 10px 16px;
		font-size: 12px;
	}

	.article-content th,
	.article-content td {
		padding: 10px 11px;
	}

	.article-content p.warn-block {
		padding: 15px 16px 15px 50px;
	}

	.article-content p.warn-block::before {
		top: 15px;
		left: 14px;
	}
}
