@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');
body {
	background: #091841;
}
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: 'Roboto', sans-serif;
}
.container {
	max-width: 1380px;
	padding: 0 15px;
	margin: 0 auto;
}
/* header */
.header {
	padding: 12.5px 0;
	background: #091841;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header__item {
}

.header__logo {
}

.header__menu {
}

.header__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	list-style: none;
}

.header__list-item a {
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	line-height: 16px;
	text-decoration: none;
	text-transform: uppercase;
}

.header__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	text-transform: uppercase;
}

.header__btn {
	padding: 10px 32px;
	background: white;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	border-radius: 100px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.header__btn.second {
	background: #eebe5f;
}
.header__btn.first:hover {
	background: #eebe5f;
}
.header__btn.second:hover {
	background: #fff;
}
/* footer */
.footer {
	padding: 85px 0 20px 0;
	background: #050d22;
}
.footer__wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 80px;
	margin: 0 0 150px 0;
}

.footer__item {
	flex: 1 1 33%;
}

.footer__title {
	color: #eebe5f;
	font-size: 22px;
	line-height: 24px;
	font-weight: 600;
	padding: 0 0 20px 0;
	border-bottom: 2px solid #eebe5f;
	margin: 0 0 20px 0;
}

.footer__list {
	list-style: none;
}

.footer__list-item {
	margin: 0 0 16px 0;
}

.footer__list-item a {
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
}

.footer__info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
}

.footer__img {
}

.footer__images {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

/* promo */
.promo {
	position: relative;
	padding: 15px 0;
}
.promo__bg {
	border-radius: 8px;
	background: url('/assets/images/promo/bg.svg') center center / cover no-repeat;
	height: 350px;
}

.promo__circules {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.promo__circule {
	width: 13px;
	height: 13px;
	background: none;
	border-radius: 100%;
	border: 1px solid #fff;
	cursor: pointer;
}
.promo__circule.active {
	border: 1px solid #eebe5f;
	background: #eebe5f;
}
/* info */
.info {
	padding: 15px 0;
}
.info__title {
	padding: 13px 15px;
	border-radius: 10px;
	background: #0e2871;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	color: #fff;
	white-space: nowrap;
	overflow-x: auto;
}
.info__title span {
	margin: 0 10px;
	padding: 2px 10px;
	border-radius: 100px;
	background: #eebe5f;
	color: #000;
	font-size: 17px;
	line-height: 19px;
	font-weight: 700;
}
/* slider */
.slider {
	padding: 15px 0;
}
.slider__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	overflow-x: auto;
}

.slider__item {
	height: 200px;
	border-radius: 10px;
	position: relative;
}
.slider__item:nth-child(1) {
	min-width: 700px;
	background: url('/assets/images/slider/first.png') center center / cover
		no-repeat;
}
.slider__item:nth-child(2) {
	min-width: 320px;
	background: url('/assets/images/slider/second.png') center center / cover
		no-repeat;
}
.slider__item:nth-child(3) {
	min-width: 320px;
	background: url('/assets/images/slider/third.png') center center / cover
		no-repeat;
}

.slider__item-btn {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 15px;
	background: #00000050;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
}
/* games */
.games {
	padding: 50px 0 30px 0;
}
.games__title {
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 20px 0;
	text-transform: uppercase;
}

.games__wrapper {
	padding: 12.5px 15px;
	border-radius: 10px;
	background: #0e2871;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow-x: auto;
}

.games__item {
	flex: 1 1 33%;
	padding: 0 30px;
	border-left: 2px solid #5b5659;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	text-decoration: none;
}

.games__item-img {
}

.games__item-text p {
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 10px 0;
	white-space: nowrap;
}
.games__item-text span {
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
.games__item-price {
	display: flex;
	flex-direction: column;
	align-items: end;
}
.games__item-price p {
	font-size: 22px;
	line-height: 24px;
	font-weight: 400;
	color: #eebe5f;
	margin: 0 0 10px 0;
	white-space: nowrap;
}
/* play */
.play {
	padding: 15px 0;
}
.play .container {
	padding: 15px;
	background: #050d22;
	border-radius: 10px;
}
.play__block {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 0 0 30px 0;
}

.play__block-title {
	border-radius: 10px;
	min-width: 200px;
	height: 250px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	padding: 70px 0;
	background: url('/assets/images/play/first/bg.png') center center / cover
		no-repeat;
}
.play__block-title.second {
	background: url('/assets/images/play/second/bg.png') center center / cover
		no-repeat;
}
.play__block-title h2 {
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
	color: #fff;
}
.play__block-title a {
	padding: 10px 25px;
	background: white;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	text-decoration: none;
}

.play__wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	overflow-x: auto;
}

.play__item {
	border-radius: 10px;
	min-width: 150px;
	max-width: 150px;
}
.play__item img {
	border-radius: 10px;
	width: 100%;
}
/* content */
.content h2, .content h1 {
	font-size: 22px;
	line-height: 24px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 15px 0;
}
.content h3 {
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 15px 0;
}

.content p {
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 10px 0;
}
.content ul,
.content ol {
	margin: 15px 0;
	padding: 0 0 0 15px;
}
.content li {
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 5px 0;
}

.content .table {
	margin: 30px 0;
	width: 100%;
	overflow-x: auto;
}
.content .table table {
	width: 100%;
	border-collapse: collapse;
}
.content .table td {
	border: 1px solid #fff;
	padding: 5px 15px;
	width: 50%;
	color: #fff;
}
.img-cov {
	width: 100%;
	margin: 15px 0;
}
.img-cov.s {
	width: 200px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
}
