* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}
header ul,
header ol {
	list-style: none;
}

footer ul,
footer ol {
	list-style: none;
}

body {
	overflow-x: hidden;
	background: #0a0f1c;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
}

/* header */
.header {
	padding: 25px 0;
	background: #0a0f1c;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header__list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
	transition: all 0.3s ease;
	flex-wrap: wrap;
}

.header__list-item a {
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
}
.header__list-item a:hover {
	color: #7e18d1;
}
.header__butons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.header__link {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding: 12px 30px;
	background: linear-gradient(90deg, #77708b 0%, #afa8c0 54.4%, #9b92ae 100%);
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
}
.burger {
	width: 25px;
	height: 15px;
	background-color: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	display: none;
}
.burger span {
	width: 100%;
	height: 3px;
	border-radius: 100px;
	background: white;
	transition: all 0.3s ease;
}

.burger.active span:first-child {
	transform: rotate(45deg);
	position: relative;
	top: 5px;
}
.burger.active span:last-child {
	transform: rotate(-45deg);
	position: relative;
	top: -6px;
}

/* footer */
.footer {
	padding: 17px 0;
	background: #0a0f1c;
}
.footer__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.footer__title {
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	line-height: 27px;
	margin: 0 0 25px 0;
}
.footer__list {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 15px;
	flex-wrap: wrap;
}

.footer__list-item a {
	color: #b4b9d0;
	text-align: center;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
}
.footer__list-item a:hover {
	color: #7e18d1;
}

/* promo */
.promo {
	padding: 80px 0;
	margin: 0 0 40px 0;
}
.promo__block {
	padding: 50px;
	border-radius: 24px;
	background: url('/front/images/promo/web.png') center center / cover no-repeat;
}
.promo__title {
	color: #fff;
	font-size: 48px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	text-transform: uppercase;
	margin: 0 0 35px 0;
	text-align: center;
}

.promo__text {
	color: #cacaca;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	margin: 0 0 30px 0;
	text-align: center;
}
.promo__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.promo__link {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	background: linear-gradient(90deg, #77708b 0%, #afa8c0 54.4%, #9b92ae 100%);

	padding: 17px 40px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
	text-decoration: none;
}

/* games */
.games {
	margin: 0 0 60px 0;
}
.games__table {
	background: #1e2338;
	border-radius: 16px;
}

.games__table-thead {
	padding: 25px;
	display: flex;
	align-items: center;
	gap: 200px;
	border-bottom: 2px solid #30323b;
}

.games__table-info {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: #b4b9d0;
}

.games__table-tbody {
}

.games__tbody-item {
	padding: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	border-bottom: 2px solid #30323b;
	flex-wrap: wrap;
}
.games__tbody-item:last-child {
	border-bottom: none;
}

.games__tbody-counter {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	background: #2a2f4c;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}

.games__tbody-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.games__tbody-img {
	width: 120px;
	height: 60px;
}
.games__tbody-img img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.games__tbody-title {
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 5px 0;
}

.games__tbody-descr {
	color: #b4b9d0;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
}

.games__tbody-rating {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.games__tbody-rating span {
	font-size: 16px;
	line-height: 24px;
	color: #ffb800;
	font-weight: 500;
}

.games__tbody-welcome {
	font-weight: 500;
	line-height: 24px;
	font-size: 16px;
	color: #45e2bd;
}

.games__tbody-link {
	padding: 12px 30px;
	border-radius: 8px;
	background: linear-gradient(90deg, #77708b 0%, #afa8c0 54.4%, #9b92ae 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

/* content */
.content {
	margin: 0 0 60px 0;
}
.cotent__block {
	background: #1e2338;
	border-radius: 16px;
	padding: 30px;
}
.content h2 {
	color: #fff;
	font-size: 22px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}
.content strong {
	display: block;
	color: #fff;
	font-size: 22px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}
.content h3 {
	color: #fff;
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}
.content p {
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin: 0 0 10px 0;
}
.content .table {
	width: 100%;
	overflow: auto;
	margin: 30px 0;
}
.content .table table {
	width: 100%;
	border-collapse: collapse;
}
.content .table tr {
	border: 1px solid #fff;
}
.content .table tr td,
.content .table tr th {
	width: 50%;
	padding: 10px 16px;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}
.content .table tr td:nth-child(odd) {
	color: #fff;
}
.content ul,
.content ol {
	margin: 15px auto;
}
.content ul li,
.content ol li {
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin: 0 auto 5px auto;
	width: fit-content;
}
.content .promo__link {
	margin: 15px auto;
}

.img-cov {
	margin: 30px auto !important;
	text-align: center;
	max-width: 500px;
}

.img-cov img {
	width: 100%;
	text-align: center;
	border-radius: 12px;
}

.block {
	padding: 50px;
	background: #1a1a3a;
	border-radius: 16px;
	margin: 0 0 75px 0;
	text-align: center;
}

section ul li a {
	color: #fff;
	text-decoration: none;
}
section ul li a:hover {
	color: #7e18d1;
}

/* security */
.security {
	margin: 0 0 60px 0;
}
.security__block {
	padding: 30px;
	border-radius: 16px;
	background-color: #1e2338;
}
.security__wrapper {
	display: flex;
	justify-content: space-evenly;
}

.security__title {
	color: #b4b9d0;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	margin: 0 0 25px 0;
}

.security__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.security__list-item {
	padding: 0 0 0 30px;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	font-weight: 400;
}
.security__list-item::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 16px;
	height: 16px;
	background: url('/front/images/check.svg') center center / cover no-repeat;
}

.security__images {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 85px;
}
.security__images img {
	width: 80px;
	height: 40px;
	object-fit: cover;
}

@media (max-width: 768px) {
	.img-cov img {
		width: 100%;
	}
	.burger {
		display: flex;
	}
	.header__list {
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
	}
	.header__list.active {
		transition: all 0.3s ease;
		top: 65px;
	}
	.header__list {
		padding: 30px 0;
		background: #0a0a1f;
		flex-direction: column;
	}
	.header__link {
		display: none;
	}
	.promo__block {
		padding: 25px;
		background: url('/front/images/promo/mob.png') center center / cover
			no-repeat;
	}
	.promo__buttons {
		flex-direction: column;
	}
	.promo__link {
		width: 100%;
	}
	.promo__title {
		font-size: 24px;
	}

	.block {
		margin: 0 0 30px 0;
	}
	/* security */
	.security__wrapper {
		flex-direction: column;
	}
	.security__images {
		gap: 60px;
	}
	.security__images img {
		width: 60px;
		height: 30px;
	}
	/* games */
	.games__table-thead {
		display: none;
	}
	.games__tbody-item {
		padding: 15px;
	}
	.games__tbody-link {
		width: 100%;
	}
	.games__tbody-info {
		width: 80%;
	}
	.games__tbody-descr {
		white-space: nowrap;
	}
	.games__tbody-img {
		width: 100px;
		height: 50px;
	}
	.footer__wrapper {
		flex-direction: column;
	}
}
