* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: 'Inter', sans-serif;
}

body {
	background: #00091a;
}

.container {
	max-width: 1440px;
	padding: 0 16px;
	margin: 0 auto;
}

.header {
	padding: 15px 0;
	background: #141d35;
	border-bottom: 1px solid #ffffff1a;
}

.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header__logo {
	width: auto;
	height: auto;
}

.header__menu {
	display: none;
	z-index: 100;
}
.header__menu.active::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #00000090;
}
.header__menu ul {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
	flex-direction: column;
	padding: 75px 16px;
	list-style: none;
}
.header__menu ul li a {
	color: white;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	text-decoration: none;
}

.header__menu {
	display: block;
	position: fixed;
	top: 0%;
	right: -100%;
	width: 30%;
	height: 100%;
	background: #00091a;
	border-left: 1px solid #141d35;
}
.header__menu.active {
	right: 0;
}

.footer {
	padding: 40px 0;
	background: #ffffff0d;
}

.footer__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin: 0 0 16px 0;
	flex-wrap: wrap;
	list-style: none;
}
.footer__list li a {
	color: white;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	text-decoration: none;
}
.footer p {
	color: #4b5563;
	font-weight: 400;
	font-size: 12px;
	line-height: 19px;
	text-align: center;
}

.burger {
	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 span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}

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

.promo {
	padding: 40px 0;
}

h1 {
	max-width: 1050px;
	color: #fff;
	font-weight: 700;
	font-size: 40px;
	line-height: 50px;
	margin: 0 0 20px 0;
}

.promo p {
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #9ca3af;
	margin: 0 0 20px 0;
}

.author {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	margin: 0 0 15px 0;
}
.author__img {
	width: 40px;
	height: 40px;
}
.author__img img {
	width: 100%;
	height: 100%;
	border-radius: 100px;
	object-fit: cover;
}

.author__text {
	color: #9ca3af;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
}

.date-update {
	margin: 0 0 20px 0;
	padding: 7px 15px 7px 30px;
	position: relative;
	border: 1px solid #3b82f64d;
	border-radius: 100px;
	background: #3b82f61a;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	font-size: 13px;
	line-height: 100%;
	text-transform: uppercase;
	color: #fff;
	width: fit-content;
}
.date-update::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 13px;
	width: 8px;
	height: 8px;
	background: #2258c5;
	border-radius: 100px;
}

.content p {
	color: #9ca3af;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	margin: 0 0 20px 0;
}
.content h2,
.content h3,
.content strong {
	display: block;
	margin: 0 0 20px 0;
	color: white;
	font-weight: 700;
}
.content h2 {
	font-size: 30px;
	line-height: 36px;
}
.content h3 {
	font-size: 26px;
	line-height: 32px;
}

.content ul,
.content ol {
	padding: 0 0 0 20px;
	margin: 0 0 20px 0;
	color: #9ca3af;
}

.table {
	width: 100%;
	overflow-x: auto;
	margin: 20px auto;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table td {
	padding: 10px 15px;
	border: 1px solid #9ca3af;
	color: #9ca3af;
}

.casinos {
	display: flex;
	flex-direction: column;
	justify-self: center;
	align-items: center;
	gap: 10px;
	width: 100%;
	margin: 0 0 30px 0;
}
.casino-card {
	padding: 50px 25px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	background: #162137;
	border: 1px solid #ffffff0d;
	border-radius: 16px;
}

.casino-card__img {
	width: 150px;
	height: 75px;
}
.casino-card__img img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.casino-card__name {
	flex: 0 0 15%;
}

.casino-card__name h3 {
	font-weight: 700;
	color: #fff;
	font-size: 20px;
	line-height: 20px;
	margin: 0 0 12px 0;
}

.casino-card__name-rating {
	width: 100px;
	height: 20px;
}
.casino-card__name-rating img {
	width: 100%;
	height: 100%;
}

.casino-card .casino-card__text {
	font-weight: 700;
	color: #fff;
	font-size: 24px;
	line-height: 34px;
	text-transform: capitalize;
	flex: 1;
}

.casino-card__btn {
	width: 165px;
	height: 50px;
	background: #2258c5;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: white;
	font-size: 16px;
	line-height: 26px;
	text-transform: uppercase;
	text-decoration: none;
}

.show-more {
	margin: 40px auto;
	width: 100%;
	height: 50px;
	border-radius: 16px;
	background: #0073ff;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	text-transform: capitalize;
	text-decoration: none;
}

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

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

.pageMenu li a {
	color: #9ca3af;
}
.pageMenu li a:hover {
	color: #2258c5;
}

@media (max-width: 768px) {
	.header__menu {
		width: 90%;
	}
	.casino-card {
		padding: 20px;
		flex-direction: column;
		gap: 16px;
	}
	.casino-card__name h3,
	.casino-card .casino-card__text {
		text-align: center;
	}
	.casino-card__btn {
		width: 100%;
	}
}
