:root {
	--color-bg: #f7f7f7;
	--color-text: #1a1a1a;
	--color-muted: #6b7280;
	--color-border: #cccccc;
	--color-primary: #123f6c;
	--color-primary-hover: #1e40af;
	--color-accent: #fbbf24;
	--color-card-bg: #ffffff;
	--color-vegas-1: #5b1a8b;
	--color-vegas-2: #8e2de2;
	--container-w: 1100px;
}

* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Inter', sans-serif;
	background: var(--color-bg);
	color: var(--color-text);
	font-size: 16px;
}

.container {
	max-width: var(--container-w);
	margin: 0 auto;
	padding: 0 24px;
}

.site-header {
	border-bottom: 1px solid var(--color-border);
	background: #fff;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--color-text);
}
.brand-mark {
	font-size: 28px;
}
.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.brand-line-1 {
	font-size: 11px;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.brand-line-2 {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary);
}
.nav {
	display: flex;
	gap: 28px;
}
.nav a {
	color: var(--color-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}
.nav a:hover {
	color: var(--color-primary);
}

.article {
	padding: 40px 24px 60px;
	color: #222222;
}
.article h1 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 20px;
}
.article h2 {
	font-size: 34px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 0 10px 0;
}
.article h3 {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	margin: 0 0 10px 0;
}
.article p {
	font-size: 16px;
	line-height: 22px;
	margin: 0 0 10px 0;
}
.article ul {
	margin: 0 0 16px;
	padding-left: 22px;
}
.article li {
	margin-bottom: 8px;
}

.table {
	width: 100%;
	overflow-x: auto;
	margin: 15px auto;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table td {
	padding: 10px 15px;
	border: 1px solid #cccccc;
}
.table table tr:nth-child(odd) {
	background: #fff;
}
.table table tr:nth-child(even) {
	background: #f7f7f7;
}

.meta {
	display: flex;
	gap: 28px;
	align-items: center;
	margin: 8px 0 24px;
	padding: 12px 0;
}
.meta-block {
	display: flex;
	align-items: center;
	gap: 15px;
}
.meta-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
.meta-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 100px;
}
.meta-label {
	font-weight: 700;
	font-size: 17px;
	line-height: 25px;
	letter-spacing: 0%;
	color: #000;
}
.meta-value {
	font-weight: 400;
	font-size: 17px;
	line-height: 25px;
	color: #000;
}

.casinos {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 16px 0 30px 0;
}

.casino-card {
	display: grid;
	grid-template-columns: 40px 200px 1fr 100px 300px;
	align-items: center;
	gap: 24px;
	padding: 16px 24px;
	background: #ffffff;
	border: 1px solid #dcdfe4;
	border-radius: 16px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
}

.casino-rank {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: #e5bd53;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 50%;
}

.casino-logo-link {
	width: 200px;
	height: 100px;
	display: block;
	transition: transform 0.2s ease;
}
.casino-logo-link:hover {
	transform: scale(1.02);
}
.casino-logo-link img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
	max-height: 100%;
}

.casino-bonus {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}
.casino-bonus a {
	color: var(--color-text);
	text-decoration: none;
}
.casino-bonus a:hover {
	color: var(--color-primary);
}

.casino-rating {
	display: flex;
	align-items: baseline;
	justify-content: center;
	border-radius: 100px;
	background: #f1f2f4;
	padding: 0 20px;
}
.rating-num {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text);
}
.rating-max {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-muted);
	margin-left: 1px;
}

.casino-action {
	width: 100%;
}

.btn-play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	height: 48px;
	background: #023183;
	color: #ffffff;
	text-decoration: underline;
	font-size: 15px;
	font-weight: 600;
	border-radius: 100px;
	transition:
		background-color 0.15s ease,
		cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-play:hover {
	background: var(--color-primary-hover);
}

.review {
	margin-top: 28px;
}
.review-screenshot {
	width: 100%;
	height: 320px;
	background: linear-gradient(135deg, #1e1b4b, #5b1a8b 60%, #be185d);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.05em;
	margin: 14px 0 18px;
}

.site-footer {
	background: var(--color-primary);
	color: #fff;
	margin-top: 60px;
}
.footer-inner {
	padding: 30px 24px;
	text-align: center;
}
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 22px;
}
.footer-links a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
}
.footer-links a:hover {
	text-decoration: underline;
}
.copyright {
	font-size: 16px;
	margin: 0;
}

.burger-menu {
	display: none;
}

.img-cov {
	width: 100%;
	height: 100%;
	margin: 15px auto !important;
	max-width: 900px;
}

.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.img-cov.a {
	max-width: 150px;
}

.pageMenu li a {
	color: #023183;
}
.pageMenu li a:hover {
	color: #376ecd;
}
@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}

	.header-inner {
		gap: 12px;
		padding: 14px 16px;
	}
	.nav {
		gap: 18px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.article {
		padding: 24px 16px 40px;
	}
	.article h1 {
		font-size: 24px;
	}
	.article h2 {
		font-size: 20px;
		margin-top: 28px;
	}
	.article h3 {
		font-size: 17px;
	}

	.meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.casino-card {
		position: relative;
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: center;
		padding: 25px;
		border-radius: 36px;
	}

	.casino-logo-link {
		width: 100%;
		height: auto;
	}
	.casino-logo-link img {
		border-radius: 25px;
	}
	.casino-rating {
		width: fit-content;
		margin: 0 auto;
	}
	.casino-rank {
		position: absolute;
		top: 35px;
		left: 35px;
	}
	.btn-play {
		width: 100%;
	}

	.review-screenshot {
		height: 200px;
		font-size: 14px;
	}

	.footer-links {
		flex-direction: column;
		gap: 10px;
	}

	.footer-inner {
		padding: 30px 16px;
	}

	.burger-menu {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 24px;
		height: 18px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		z-index: 110;
	}
	.burger-menu span {
		display: block;
		width: 100%;
		height: 2px;
		background-color: #f1c40f;
		border-radius: 2px;
		transition:
			transform 0.3s ease,
			opacity 0.3s ease;
	}

	.burger-menu.is-active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.burger-menu.is-active span:nth-child(2) {
		opacity: 0;
	}
	.burger-menu.is-active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.nav {
		position: absolute;
		top: 85px;
		left: 0;
		width: 100%;
		background: #ffffff;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		border-top: 1px solid #e4e4e7;

		flex-direction: column;
		gap: 0;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition:
			opacity 0.3s ease,
			transform 0.3s ease,
			visibility 0.3s;
	}

	.nav.is-active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav a {
		display: block;
		padding: 16px 24px;
		border-bottom: 1px solid #f4f4f5;
		font-size: 16px;
		width: 100%;
		box-sizing: border-box;
	}

	.nav a:last-child {
		border-bottom: none;
	}
}
