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

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

/* header */
.header {
	background: #292929;
	border-bottom: 1px solid #ff9d00;
}
.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: 700;
	line-height: 140%;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
}
.header__list-item a:hover {
	border-bottom: 4px solid #ff9d00;
}
.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: #292929;
}
.footer__list {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

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

/* promo */
.promo {
	padding: 80px 0;
	background: url('/front/images/promo/web.png') center center / cover no-repeat;
	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 15px 0;
	max-width: 515px;
}

.promo__text {
	color: #fff;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	margin: 0 0 30px 0;
	max-width: 515px;
}

.promo__link {
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: #ff9d00;
	box-shadow: 0px -3px 0px 0px rgba(0, 0, 0, 0.25) inset;
	padding: 15px 45px;
	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 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 {
	position: relative;
	width: 310px;
	border-radius: 6px;
	background: #292929;
	counter-increment: game-counter; /* Increment counter */
}
.games__item::before {
	content: counter(game-counter); /* Display counter */
	position: absolute;
	top: 0;
	right: 0;
	width: 28px;
	height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
	background: #ff9d00;
	border-radius: 0 2px 0 0;
}

.games__item-top {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 12px;
}

.games__item-img {
	width: 62px;
	height: 62px;
	border-radius: 6px 0 0 0;
}
.games__item-img img {
	border-radius: 6px 0 0 0;
	width: 100%;
	height: 100%;
}

.games__item-text {
}

.games__item-title {
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
	margin: 8px 0 7px 0;
}

.games__item-rating {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}
.games__item-rating span {
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
}

.games__item-bottom {
	padding: 10px 16px;
}

.games__item-spins {
	border-radius: 4px;
	background: rgba(74, 203, 89, 0.15);
	padding: 8px 10px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #1ba24d;
	text-align: center;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}

.games__item-link {
	border-radius: 6px;
	background: var(--Main, #ff9d00);
	box-shadow: 0px -3px 0px 0px rgba(0, 0, 0, 0.25) inset;
	padding: 15px 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
}

.games__green-link {
	position: absolute;
	bottom: 40px;
	right: -200px;
	max-width: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 6px;
	background: #1ba24d;
	box-shadow: 0px -3px 0px 0px rgba(0, 0, 0, 0.25) inset;
	padding: 15px 45px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
	text-decoration: none;
}

/* content */
.content h2 {
	color: #fff;
	font-size: 32px;
	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: 32px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}
.content h3 {
	color: #fff;
	font-size: 22px;
	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-bottom: 1px solid #ff9d00;
}
.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: #8d95b2;
	text-transform: uppercase;
}
.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 auto !important;
	text-align: center;
	width: 60%;
}

.img-cov img {
	width: 100%;
}

@media (max-width: 768px) {
	.img-cov img {
		width: 100%;
	}
	.img-cov {
		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: #171717;
		flex-direction: column;
	}
	.promo {
		background: url('/front/images/promo/mob.png') center center / cover
			no-repeat;
	}
	.promo__title {
		font-size: 24px;
	}
	.games__item {
		width: 100%;
	}
	.games__green-link {
		top: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		max-height: 40px;
	}
}
.socials {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	margin-top: 10px;
}
.socials svg {
    fill: #FFF;
    margin-right: 15px;
}