body,
h1,
li,
p {
	margin: 0;
}

*,
::after,
::before {
	box-sizing: border-box;
}

body,
h1,
h2,
li,
p {
	margin: 0;
}

body,
html {
	width: 100%;
	height: 100%;
}

body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

a[class] {
	text-decoration: none;
}

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

@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: 0s !important;
		animation-duration: 0s !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}

:root {
	--body-bg-color: #101010;
	--header-bg-color: #231508;
	--content-bg-color: #101010;
	--footer-bg-color: #231508;
	--footer-color: #a3a3a3;
	--container-width: 970px;
	--wrapper-width: 970px;
	--beige: #edddc3;
	--beige-2: #a0ab2c;
	--red: #991d21;
	--white: #fff;
	--black: #000;
	--content-inner: 7px;
	--header-heigth: 58px;
	--top-margin: 40px;
	--h1-font: 36px;
	--h2-font: 30px;
	--h3-font: 24px;
	--font-1: 'Roboto', Arial, Helvetica, sans-serif;
	--font-2: 'Philosopher', Arial, Helvetica, sans-serif;
}

body {
	background: var(--body-bg-color);
	font-family: var(--font-1);
}

.o-container {
	max-width: var(--container-width);
}

.o-wrapper {
	max-width: var(--wrapper-width);
}

.o-container,
.o-wrapper {
	margin: 0 auto;
}

.o-content-inner {
	padding-left: var(--content-inner);
	padding-right: var(--content-inner);
}

.o-btn {
	border-radius: 50px;
	font-weight: 700;
	font-size: 12px;
	padding: 5px;
	position: relative;
	text-align: center;
	top: 0;
	white-space: nowrap;
}

.o-login {
	background: linear-gradient(-105deg, #ff6082 0, #ed426a 33%, #da2351 90%);
	box-shadow: 0 3px 0 0 #ac1b52e6, inset 0 1px 0 0 #eb94cde6;
	color: var(--beige);
	text-shadow: 1px 2px 0 #b91179;
}

.o-reg {
	background: var(--beige);
	box-shadow: 0 3px 0 0 #d3ba91;
	color: #000;
	text-shadow: 1px 1px 0 #b5b2b4;
}

.c-header {
	background: var(--header-bg-color);
	border-bottom: 2px solid var(--beige-2);
	font-size: 16px;
	font-family: var(--font-2);
	position: fixed;
	padding-top: 8px;
	padding-bottom: 8px;
	top: 0;
	left: 0;
	min-height: var(--header-heigth);
	width: 100%;
	z-index: 2;
}

.c-header ul {
	list-style: none;
	padding: 0;
}

.c-header__container {
	align-items: center;
	display: flex;
	gap: 10px;
}

.c-burger-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
}

.c-burger-btn div {
	background: var(--white);
}

.c-burger-btn div:first-child {
	width: 28px;
}

.c-burger-btn div:nth-child(2) {
	width: 23px;
}

.c-burger-btn div:last-child {
	width: 13px;
}

.c-burger-close {
	position: relative;
	margin-left: var(--content-inner);
	margin-right: auto;
}

.c-burger-close div {
	background: var(--white);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 28px;
}

.c-burger-close div:first-child {
	transform: rotate(45deg);
}

.c-burger-close div:last-child {
	transform: rotate(-45deg);
}

.c-burger-btn,
.c-burger-close {
	height: 40px;
	width: 40px;
}

.c-burger-btn div,
.c-burger-close div {
	height: 3px;
}

.c-burger {
	background: var(--header-bg-color);
	position: absolute;
	padding: var(--content-inner) 0;
	top: 0;
	right: 0;
	transform: translateX(100%);
	height: 100vh;
	max-width: 400px;
	width: 100%;
	z-index: 3;
}

.c-burger__list {
	flex-grow: 1;
	gap: 8px;
	margin: 10px 0 0;
	max-height: calc(100vh - 40px - 10px);
	overflow-y: auto;
}

.c-burger__list a {
	color: #fff;
	display: block;
	font-weight: 700;
	padding: 8px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
}

.c-burger,
.c-burger__list {
	display: flex;
	flex-direction: column;
}

.c-header__btns {
	display: flex;
	gap: 10px;
	margin-left: auto;
}

.c-main {
	padding-top: var(--header-heigth);
}

.c-banner {
	background-color: #020925;
	background-image: url(images/banner-bg-s.jpg);
	background-image: -webkit-image-set(
		url('images/banner-bg-s.webp') 1x,
		url('images/banner-bg-s.webp') 2x
	);
	background-image: image-set(
		url('images/banner-bg-s.jpg') 1x,
		url('images/banner-bg-s.jpg') 2x
	);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	font-family: var(--font-2);
	min-height: 208px;
}

.c-banner__left {
	--font: 18px;
	--big: 20px;
	background-color: #0000005c;
	color: #f8f1e5;
	display: flex;
	flex-direction: column;
	font-size: var(--font);
	gap: 8px;
	padding: 20px;
}

.c-banner__left .o-login {
	font-size: 14px;
	padding: 10px 20px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.c-banner__left .big {
	font-size: var(--big);
}

.c-banner__left .gold {
	color: #bfff00;
}

.c-banner__right {
	display: none;
}

.c-category {
	background: #161d35;
	background: linear-gradient(180deg, #242d51 0, #161d35 100%);
	overflow-x: auto;
}

.c-category__list {
	display: flex;
	font-size: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.c-category__list li {
	position: relative;
}

.c-category__list li::before {
	background: linear-gradient(180deg, #384473 0, #111c46 100%);
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.c-category__list a {
	color: #fff;
	display: inline-block;
	text-decoration: none;
	padding: 10px;
	position: relative;
	white-space: nowrap;
}

.c-content {
	--text-indent: 15px;
	background-color: var(--content-bg-color);
	color: var(--white);
	padding-top: 40px;
	padding-bottom: 40px;
	gap: 0 30px;
}

.c-content h1 {
	font-size: var(--h1-font);
}

.c-content h2 {
	font-size: var(--h2-font);
	margin-top: var(--top-margin);
}

.c-content > * {
	margin-top: var(--text-indent);
}

.c-slots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 20px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.c-slot {
	background: #203260e6;
	border-radius: 10px;
	box-shadow: 0 4px 4px #00000040;
	position: relative;
	flex: 0 0 222px;
}

.c-slot .img-cov {
	width: 222px;
	height: 130px;
}
.c-slot .img-cov img {
	width: 100%;
	height: 100%;
}

.c-slot::after {
	border: 12px solid transparent;
	border-bottom: 12px solid #eedfc6;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	margin: 0 auto;
	width: 24px;
}

.c-slot__img {
	-o-object-fit: cover;
	object-fit: cover;
}

.c-slot__body {
	align-items: center;
	background: #eedfc6;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	font-size: 12px;
	gap: 8px;
	justify-content: center;
	position: absolute;
	top: 0;
	text-align: center;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.c-slot__demo {
	border: none;
	text-transform: uppercase;
	padding: 8px 20px;
	min-width: 120px;
}

.c-slot__title {
	background: var(--content-bg-color);
	border-radius: 0 0 10px 10px;
	padding: 0 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 222px;
	width: 100%;
}

.c-toc {
	background: var(--footer-bg-color);
	border: 1px solid #000;
	border-right: 0;
	padding: 20px;
	position: fixed;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
	transform: translateX(100%);
	overflow-y: auto;
	max-height: calc(100vh - var(--header-heigth) - 90px - 40px);
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	max-width: calc(320px - var(--content-inner));
	width: 100%;
	z-index: 1;
}

.c-toc::-webkit-scrollbar {
	background: #101213;
	width: 8px;
}

.c-toc::-webkit-scrollbar-thumb {
	background: #bfff00;
	border-radius: 8px;
}

.c-toc__list {
	color: #fff;
	display: flex;
	flex-direction: column;
	font-size: 18px;
	gap: 10px;
}

.c-toc__list a {
	color: #fff;
	text-decoration: none;
}

.c-toc-btn {
	background-color: var(--black);
	background-image: url(images/toc.svg);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	border-radius: 50%;
	position: fixed;
	bottom: 20px;
	right: 10px;
	height: 40px;
	width: 40px;
	z-index: 1;
}

@media (min-width: 480px) {
}

@media (min-width: 768px) {
	:root {
		--content-inner: 15px;
		--top-margin: 60px;
	}

	.c-header__btns .o-btn {
		font-size: 16px;
	}

	.c-toc {
		max-width: 400px;
		width: initial;
	}

	.c-banner__wrapper {
		position: relative;
	}

	.c-banner__left {
		--font: 24px;
		--big: 28px;
		background: 0 0;
		position: relative;
		z-index: 1;
	}
}

@media (min-width: 970px) {
	:root {
		--header-heigth: 84px;
		--content-inner: 0px;
	}

	body {
		font-size: 18px;
	}

	.c-header {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.c-logo img {
		height: 72px;
		width: 190px;
	}

	.c-burger-btn,
	.c-burger-close {
		display: none;
	}

	.c-burger {
		background: initial;
		position: initial;
		padding: initial;
		transform: initial;
		height: initial;
		margin: 0 auto;
		max-width: initial;
		width: initial;
	}

	.c-burger__list {
		flex-direction: row;
		margin: 0;
	}

	.c-header__btns {
		margin: 0;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}

	.c-header__btns .o-btn {
		font-weight: initial;
		text-transform: uppercase;
		padding: 5px 20px;
	}

	.c-banner__wrapper {
		min-height: 437px;
	}

	.c-banner__right {
		background-size: cover;
	}

	.c-banner__left {
		gap: 40px;
		--font: 36px;
		--big: 46px;
	}

	.c-banner__left .o-login {
		font-size: 24px;
	}

	.c-category__list {
		justify-content: center;
	}

	.c-toc {
		bottom: initial;
		top: calc(var(--header-heigth) + 40px);
		margin: initial;
	}

	.c-toc-btn {
		height: 60px;
		width: 60px;
	}

	.c-toc__list {
		font-size: 20px;
	}
}
.o-table {
	width: 100%;
	overflow-x: auto;
}
.o-table table {
	width: 100%;
}
.o-table table td {
	width: max-content;
}
.img-cov {
	width: 100%;
	height: 100%;
}
.img-cov img {
	width: 100%;
	height: 100%;
}

.c-content.o-wrapper.o-content-inner ul li a {
	color: #bfff00;
}
