* {
	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: #1e1d1e;
}

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

/* header */
.header {
	padding: 25px 0;
	background: #1e1d1e;
	border-bottom: 1px solid #feb775;
}
.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;
}

.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: #feb775;
}
.header__link {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #1a1a1a;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding: 12px 24px;
	background: #feb775;
	border-radius: 100px;
	text-decoration: none;
}
.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: #1e1d1e;
}
.footer__list {
	padding: 20px;
	background: #141414;
	border-radius: 30px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.footer__list-item a {
	color: #fff;
	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: #feb775;
}

/* promo */
.promo {
	padding: 80px 0;
	margin: 0 0 40px 0;
}
.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__link {
	margin: 0 auto;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	background: #feb775;
	padding: 25px 35px;
	color: #1a1a1a;
	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 80px 0;
	counter-reset: game-counter; /* Reset counter */
}
.games__wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 19px;
	flex-wrap: wrap;
}
.games__item {
	padding: 30px;
	background: #141414;
	border-radius: 30px;
}

.games__item-top {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	margin: 0 0 25px 0;
}
.games__item-top span {
	background: #feb775;
	width: 50px;
	height: 50px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #231f08;
	font-size: 24px;
	line-height: 36px;
	font-weight: 400;
}

.games__item-img {
	width: 125px;
	height: 70px;
}
.games__item-img img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: cover;
}

.games__item-rating {
	display: flex;
	gap: 10px;
	margin: 0 0 20px 0;
}
.games__item-rating span {
	color: #231f08;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
.games__item-ratings {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
}

.games__item-bonus {
	width: 100%;
	padding: 11px 50px;
	background: #5f5f5f;
	border-radius: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ccc;
	font-size: 18px;
	line-height: 27px;
	font-weight: 600;
	margin: 0 0 20px 0;
}

.games__item-title {
	color: #cacaca;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin: 0 0 20px 0;
}

.games__item-list {
	list-style: none;
	margin: 0 0 20px 0;
}
.games__item-list li {
	position: relative;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding: 0 0 0 25px;
}
.games__item-list li::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 16px;
	height: 16px;
	background: url('/front/images/games/check.svg') center center / cover
		no-repeat;
}

.games__item-link {
	width: 100%;
	color: #231f08;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 24px;
	border-radius: 100px;
	background: #feb775;
	text-decoration: none;
}

/* content */
.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, .faq__item_question {
	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 {
	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 0;
}
.content ul li,
.content ol li {
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin: 0 0 5px 0;
}
.content .promo__link {
	margin: 15px auto;
}

.img-cov {
	margin: 30px 0;
	text-align: center;
	width: 100%;
}

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

.block {
	padding: 40px;
	background: #141414;
	border-radius: 30px;
	margin: 0 0 75px 0;
}

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

@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: #1e1d1e;
		flex-direction: column;
	}
	.header__link {
		display: none;
	}
	.promo__title {
		font-size: 24px;
	}
	.games__item {
		width: 100%;
	}
	.games__green-link {
		top: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		max-height: 40px;
	}
	.block {
		margin: 0 0 30px 0;
	}
}
