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

body {
	font-family: Arial, sans-serif;
	background: #0e2f2b;
	color: #111;
	line-height: 1.6;
}
header {
	background: #222723;
	box-shadow: 0 0 8px rgba(0, 0, 0, .4);
	color: #fff;
}
.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 {

}



main {
	max-width: 1020px;
	margin: 40px auto;
}

.hero {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 2px 10px rgba(54, 24, 7, .5);
}
.hero__info {
	width: calc(100% - 240px);
	padding-top: 20px;
}
.hero h1 {
	order: -2;
	width: 100%;
	margin-bottom: 25px;
	line-height: 1.2;
	text-align: center;
}
.hero__info table {
	width: 100%;
	border-collapse: collapse;
}
.hero__info table td {
	padding: 10px;
	vertical-align: top;
	border-top: 1px solid rgba(0, 0, 0, .1);
}
.hero__table-heading {
	font-weight: bold;
}

.hero__box {
	width: 220px;
}
.hero__thumb {
	display: block;
	width: 160px;
	height: 200%;
	margin: 0 auto 10px;
	overflow: hidden;
	border-radius: 10px;
}
.hero__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 48px;
	padding: 8px 12px;
	border-radius: 8px;
	background: #e13530;
	border: none;
	outline: none;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
}
.hero__button:hover {
	background: #f8bf45;
	color: var(--dark);
}




.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;
}
.play__button-list .button--login {
	background: #0e2f2b;
	color: #fff;
}




.content {
	margin-top: 40px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 2px 10px rgba(54, 24, 7, .5);
}
.content p {
	margin-bottom: 15px;
	line-height: 1.6;
}
.content a {
	color: #222723;
	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 {
	margin-bottom: 30px;
	color: #222723;
	text-align: center;
}
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	color: #222723;
	margin: 20px 0 15px;
}

.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: #f8f9fa;
}

.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(180px, 1fr));
	gap: 16px;
}
.best-slots__item {
	background: #fff;
	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;
}
.best-slots__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0,0,0,.1);
}
.best-slots__img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;       /* сохраняет аккуратную сетку */
	object-fit: cover;
	display: block;
}
.best-slots__caption {
	padding: 12px 14px;
	display: grid;
	gap: 4px;
}
.best-slots__name {
	font-weight: 700;
	font-size: 0.975rem;
	line-height: 1.3;
}
.best-slots__meta {
	font-size: 0.85rem;
	color: #6b7280;            /* нейтральный серый */
}

/* Тонкая адаптация под очень узкие экраны */
@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 {
	margin-top: 20px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 2px 10px rgba(54, 24, 7, .5);
}
.faq h2 {
	margin-bottom: 25px;
}
.faq-item {
	padding-bottom: 16px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}
.faq h3 {
	color: var(--dark);
	margin-bottom: 8px;
}

footer {
	background: #222723;
	padding: 20px;
	margin-top: 40px;
	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-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;
	}

	.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: 450px) {

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


	.content h1 {
		font-size: 24px;
	}

}