* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: #0e2f2b;
	color: #fff;
	font-size: 17px;
	line-height: 1.6;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #222723;
	box-shadow: 0 0 8px rgba(0, 0, 0, .4);
	color: #fff;
	z-index: 40;
}
.header-container {
	max-width: 1070px;
	margin: 0 auto;
	padding: 8px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.header-container .logo {
	display: block;
	margin-left: -15px;
}


.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	list-style: none;
}
.header__nav ul a {

}
.header__nav ul a:hover {

}

.header__nav-btn {
	display: none;
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: #717171;
	margin: 7px 0 0;
	position: relative;
}
.header__nav-btn span::before,
.header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: #717171;
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -7px;
}
.header__nav-btn span::after {
	bottom: -7px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
}

.header__button-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
.button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 40px;
	padding: 4px 16px;
	border-radius: 20px;
	border: none;
	outline: none;
	background: #fff;
	color: #0e2f2b;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}
.button:hover {
	opacity: .9;
}
.button--reg {
	background: #f9c719;
}
.button--reg:hover {

}




.play__button-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding-top: 10px;
	margin-bottom: 25px;
}
.play__button-list .button {
	min-height: 48px;
	border-radius: 24px;
	padding: 4px 24px;
}




.content {
	padding: 100px 20px 20px;
}
.content-info {
	width: 100%;
	max-width: 960px;
	margin: 10px auto 30px;
	background: #006f36;
	padding: 20px;
	border-radius: 16px;
}
.content p {
	margin-bottom: 20px;
	line-height: 1.6;
}
.content a {
	color: #fff;
	text-decoration: underline;
}
.content a:hover {
	text-decoration: none;
}
.content ul, .content ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

.content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 15px auto 25px;
	border-radius: 4px;
}
.alighnright {
	float: right;
	margin: 0 0 20px 16px;
}

.content h1 {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 30px;
	line-height: 1.2;
	text-align: center;
}
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	margin: 10px 0 25px;
}

.content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.content table, .content th, .content td {
	border: 1px solid #ddd;
}

.content th, .content td {
	padding: 12px;
	text-align: left;
}

.content th {
	background-color: rgba(255, 255, 255, .08);
}

.content blockquote {
	border-left: 4px solid #222723;
	padding-left: 20px;
	margin: 20px 0;
	font-style: italic;
	color: #666;
}



.best-slots {
	margin: 24px 0;
}
.best-slots h2 {
	font-size: clamp(1.25rem, 1.2vw + 1rem, 1.75rem);
	line-height: 1.2;
	margin: 0 0 16px 0;
}
.best-slots__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
}
.best-slots__item {
	background: #0e2f2b;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
	transition: transform .2s ease, box-shadow .2s ease;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}
.best-slots__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0,0,0,.1);
}
.best-slots__img {
	width: 100%;
	height: auto;
	margin: 0 !important;
	aspect-ratio: 3 / 2.5;
	object-fit: cover;
	display: block;
}
.best-slots__caption {
	padding: 12px 14px;
	display: grid;
	gap: 4px;
}
.best-slots__name {
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.3;
}
.best-slots__meta {
	font-size: 0.85rem;
	color: #fff;
}

/* Тонкая адаптация под очень узкие экраны */
@media (max-width: 360px) {
	.best-slots__grid { gap: 12px; }
	.best-slots__caption { padding: 10px 12px; }
}

/* Точка расширения для десктопа */
@media (min-width: 992px) {
	.best-slots__grid { gap: 20px; }
}


.faq {
	padding-top: 25px;
}
.faq h2 {
	margin-bottom: 25px;
}
.faq p {
	padding-bottom: 12px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}
.faq h3 {
	color: var(--dark);
	margin-bottom: 8px;
}



footer {
	background: #222723;
	padding: 30px 20px 10px;
	color: #fff;
}

.footer-top {
	max-width: 1020px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.footer-menu ul {
	display: flex;
	list-style: none;
	gap: 25px;
}

.footer-menu a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}
.footer-menu a:hover {
	text-decoration: underline;
}


.footer-info {
	width: 100%;
	max-width: 1020px;
	margin: 20px auto;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid rgba(255, 255, 255, .4);
	border-bottom: 1px solid rgba(255, 255, 255, .4);
	font-size: 14px;
}


.footer-middle {
	max-width: 640px;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 20px;
}
.footer-payment ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	list-style: none;
}
.footer-payment img {
	display: block;
	width: 40px;
	height: 40px;
}


.footer-bottom {
	max-width: 1020px;
	margin: 0 auto;
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid var(--light);
}

.copyright {
	margin-bottom: 10px;
	color: #fff;
}

.warning {
	color: #fff;
	font-size: 14px;
	max-width: 600px;
	margin: 0 auto;
}



@media (max-width: 768px) {

	.header-container {
		padding: 15px;
	}

	.hero__info {
		width: 100%;
	}
	.hero__box {
		margin: 24px auto 0;
	}

	.desktop-menu {
		position: absolute;
		top: 0;
		right: 15px;
		width: 120px;
		background: #fff;
		box-shadow: 0 0 8px rgba(0, 0, 0, .4);
		padding: 10px;
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
	}
	.desktop-menu.active {
		top: 80%;
		opacity: 1;
		pointer-events: auto;
	}
	.desktop-menu ul {
		display: block;
	}

	.burger-menu {
		display: flex;
	}

	.content h1 {
		line-height: 1.2;
	}

	.alighnright {
		float: none;
		margin: 0 auto 20px;
	}

	.casino-item {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.play-btn {
		margin-left: 0;
	}


	.type-item {
		width: calc(50% - 20px);
	}


	.footer-top {
		flex-direction: column;
		gap: 20px;
	}

	.footer-menu ul {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.content table {
		display: block;
		overflow-x: auto;
	}
}



@media (max-width: 460px) {

	.header-container {
		padding-top: 5px;
	}
	.header-container .logo {
		margin: 0 auto 12px;
	}
	.header__button-list {
		justify-content: center;
		width: 100%;
	}


	.content {
		padding: 140px 10px 20px;
	}
	.content h1 {
		font-size: 27px;
	}


	.type-item {
		width: calc(100% - 20px);
		min-height: 80px;
	}

}