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

:root {
	--dark: #341807;
	--light: #fef97f;
}

body {
	font-family: Arial, sans-serif;
	background: #e78238;
	color: #111;
	line-height: 1.6;
}
header {
	background: #fff;
	box-shadow: 0 0 8px rgba(54, 24, 7, .5);
}
.header-container {
	max-width: 1060px;
	margin: 0 auto;
	padding: 8px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

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);
}
.hero h1 {
	width: 100%;
	margin-bottom: 40px;
	line-height: 1.2;
}
.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 {
	order: -1;
	width: 220px;
}
.hero__thumb {
	display: block;
	width: 150px;
	height: 140px;
	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: #e23530;
	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);
}

.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: #e23530;
	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: var(--dark);
	text-align: center;
}
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	color: #261a06;
	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 #cc0000;
	padding-left: 20px;
	margin: 20px 0;
	font-style: italic;
	color: #666;
}

.casinos-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 24px 0;
}

.casino-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 8px;
	transition: transform 0.3s;
}

.casino-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.casino-logo img {
	display: block;
	margin: 0;
}

.casino-info h3 {
	color: #0066cc;
	margin-bottom: 8px;
}

.bonus {
	color: #cc0000;
	font-weight: 600;
}

.play-btn {
	background-color: #cc0000;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s;
	margin-left: auto;
}

.play-btn:hover {
	background-color: #b30000;
}

.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: #123663;
	margin-bottom: 8px;
}

footer {
	background: #fff;
	padding: 20px;
	margin-top: 40px;
}

.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: #123663;
	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 rgba(0, 0, 0, .3);
}

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

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

	.hero__info table,
	.hero__info table tr {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
	}
	.hero__info table td {
		width: 50%;
	}

}