*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}
html,
body {
	width: 100%;
	height: 100%;
}
html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
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;
}
input,
button,
textarea,
select {
	font: inherit;
	outline: none;
}
@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !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;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
		url('../fonts/Roboto-Regular.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
		url('../fonts/Roboto-Bold.woff') format('woff');
	font-display: swap;
	font-weight: bold;
}
@font-face {
	font-family: 'Philosopher';
	src: url('../fonts/Philosopher-Bold.woff2') format('woff2'),
		url('../fonts/Philosopher-Bold.woff') format('woff');
	font-display: swap;
}
body {
	background: var(--body-bg-color);
	font-family: var(--font-1);
}
body.o-lock {
	overflow: hidden;
}

.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,
.c-review__reply-btn {
	border-radius: 50px;
	font-weight: bold;
	font-size: 12px;
	padding: 5px;
	position: relative;
	text-align: center;
	top: 0;
	transition: all 0.1s ease-in-out;
	white-space: nowrap;
}
.o-btn:hover,
.c-review__reply-btn:hover {
	top: 3px;
	box-shadow: 0 0 0 0;
}
.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,
.c-review__reply-btn {
	background: var(--beige);
	box-shadow: 0 3px 0 0 #d3ba91;
	color: #000;
	text-shadow: 1px 1px 0 #b5b2b4;
}
.o-table {
	overflow-x: auto;
}
.o-table table {
	border-collapse: collapse;
}
.o-table th {
	font-size: 18px;
}
.o-table td,
.o-table th {
	border: 1px solid #1f1f1f;
	padding: 8px;
	text-align: center;
}
@-webkit-keyframes play-rotate {
	from {
		transform: rotate(0) scale(0.9);
	}
	to {
		transform: rotate(360deg) scale(0.9);
	}
}
@keyframes play-rotate {
	from {
		transform: rotate(0) scale(0.9);
	}
	to {
		transform: rotate(360deg) scale(0.9);
	}
}
@-webkit-keyframes play-rotate-reverse {
	from {
		transform: rotate(0) scale(0.8);
	}
	to {
		transform: rotate(-360deg) scale(0.8);
	}
}
@keyframes play-rotate-reverse {
	from {
		transform: rotate(0) scale(0.8);
	}
	to {
		transform: rotate(-360deg) scale(0.8);
	}
}
.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;
	transition: all 0.3s ease-in-out;
	right: 0;
	transform: translateX(100%);
	height: 100vh;
	max-width: 400px;
	width: 100%;
	z-index: 3;
}
.c-burger.o-active {
	transform: translateX(0%);
}
.c-burger__list {
	flex-grow: 1;
	gap: 8px;
	margin: 10px 0 0 0;
	max-height: calc(100vh - 40px - 10px);
	overflow-y: auto;
}
.c-burger__list a {
	color: #fff;
	display: block;
	font-weight: bold;
	padding: 8px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	transition: all 0.3s ease-in-out;
}
.c-burger__list a:hover {
	color: #bfff00;
}
.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:hover::before {
	opacity: 0.5;
}
.c-category__list li::before {
	background: linear-gradient(180deg, #384473 0%, #111c46 100%);
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.5s ease-out;
	opacity: 0;
}
.c-category__list a {
	color: #fff;
	display: inline-block;
	text-decoration: none;
	transition: box-shadow 0.3s ease-in-out;
	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 > h3 {
	font-size: var(--h3-font);
	margin-top: calc(var(--top-margin) / 2);
}
.c-content ul,
.c-content ol {
	margin: 0;
}
.c-content ul li,
.c-content ol li {
	margin-top: 8px;
}
.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:hover .c-slot__body {
	opacity: 1;
	visibility: visible;
}
.c-slot:hover::after {
	opacity: 1;
}
.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;
	transition: opacity 0.3s ease-in-out;
	width: 24px;
}
.c-slot__img {
	border-radius: 10px 10px 15px 15px;
	-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%);
	transition: all 0.3s ease-in-out;
	opacity: 0;
	visibility: hidden;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.c-slot__demo {
	border: none;
	cursor: pointer;
	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-review__reply-btn {
	min-width: 135px;
}
.c-faqs {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.c-faq {
	border: 1px solid var(--beige-2);
	padding: 8px;
}
.c-faq[open] .c-faq__question::after {
	transform: rotate(180deg);
	margin: 0 0 10px 0;
}
.c-faq__question {
	align-items: center;
	display: grid;
	gap: 15px;
	grid-template-columns: 1fr auto;
	cursor: pointer;
	font-size: 18px;
	position: relative;
}
.c-faq__question::after {
	border: 10px solid transparent;
	border-top: 10px solid var(--beige-2);
	content: '';
	margin: 10px 0 0 0;
	transition: all 0.3s ease-in-out;
}
.c-faq__question::marker {
	content: '';
	display: none;
}
.c-faq__body {
	padding-top: 15px;
}
.c-reviews {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.c-review {
	--padding: 15px;
}
.c-review__top {
	border: 1px solid var(--beige-2);
	display: grid;
	font-weight: bold;
	grid-template-columns: 1fr auto;
}
.c-review__top,
.c-review__body,
.c-review__bottom {
	padding: var(--padding);
}
.c-review__reply-btn {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-left: auto;
	min-height: 40px;
	min-width: 120px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.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;
	transition: all 0.3s ease-in-out;
	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.o-active {
	transform: initial;
}
.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%;
	cursor: pointer;
	position: fixed;
	bottom: 20px;
	right: 10px;
	height: 40px;
	width: 40px;
	z-index: 1;
}
.c-footer {
	background: var(--footer-bg-color);
	border-top: 1px solid #242424;
	padding-top: 40px;
	padding-bottom: 40px;
}
.c-footer * {
	color: var(--footer-color);
}
.c-footer__container {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.c-footer__container ul,
.c-footer__container ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
.c-footer__container p:not([class]) {
	font-size: 14px;
}
.c-footer__copyright {
	font-size: 12px;
	text-align: center;
}
.c-footer__images-wrap,
.c-footer__copyright {
	flex: 1 0 100%;
}
.c-footer__img {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}
.c-footer__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	text-align: center;
}
.c-footer__list li {
	list-style: disc;
	margin-left: 25px;
}
.c-footer__list a {
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	position: relative;
}
.c-footer__list a:hover {
	color: #fff;
}
@media (min-width: 480px) {
	.c-banner {
		background-image: url('../images/banner-bg-m.jpg');
		background-image: -webkit-image-set(
			url('../images/banner-bg-m.webp') 1x,
			url('../images/banner-bg-m.webp') 2x
		);
		background-image: image-set(
			url('../images/banner-bg-m.jpg') 1x,
			url('../images/banner-bg-m.jpg') 2x
		);
	}
}
@media (min-width: 768px) {
	:root {
		--content-inner: 15px;
		--top-margin: 60px;
	}
	.c-review__reply-btn {
		font-size: 16px;
	}
	.c-header__btns .o-btn {
		font-size: 16px;
	}
	.c-toc {
		max-width: 400px;
		width: initial;
	}
	.c-bonuses__img-wrapper img {
		width: 440px;
		height: auto;
	}
	.c-bonuses__bonus-title {
		font-size: 24px;
	}
	.c-banner__wrapper {
		position: relative;
	}
	.c-banner__left {
		--font: 24px;
		--big: 28px;
		background: none;
		position: relative;
		z-index: 1;
	}
	.c-banner__right {
		background-image: url('../images/banner.png');
		background-image: -webkit-image-set(
			url('../images/banner.webp') 1x,
			url('../images/banner.webp') 2x
		);
		background-image: image-set(
			url('../images/banner.png') 1x,
			url('../images/banner.png') 2x
		);
		background-repeat: no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		height: 100%;
		width: 50%;
	}
}
@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-footer {
		padding-bottom: 40px;
	}
	.c-footer__container {
		gap: 25px 15px;
	}
	.c-toc {
		bottom: initial;
		top: calc(var(--header-heigth) + 40px);
		margin: initial;
	}
	.c-toc-btn {
		cursor: pointer;
		height: 60px;
		width: 60px;
	}
	.c-toc__list {
		font-size: 20px;
	}
	.c-bonuses__img-wrapper img {
		width: 100%;
		max-width: 620px;
	}
	.c-bonuses__bonus-title {
		font-size: 30px;
	}
}
