:root {
	--bg: #171419;
	--text: #fffefd;
	--accent: #fd7900;
	--pros: #24c46b;
	--cons: #ff5a4f;
	--border: rgba(255, 254, 253, 0.18);
	--border-strong: rgba(255, 254, 253, 0.28);
	--surface: rgba(255, 254, 253, 0.045);
	--surface-strong: rgba(255, 254, 253, 0.08);
	--container: 1024px;
	--gutter: 24px;
	color-scheme: dark;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--bg);
	color: var(--text);
	font-family: "Noto Sans", Arial, sans-serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	font-optical-sizing: auto;
	font-variation-settings: "wdth" 100;
	line-height: 1.65;
}

.container {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin: 0 auto;
}

.site-header,
.site-footer {
	background: #000;
	border-color: var(--border);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	border-bottom: 1px solid var(--border);
}

.header-inner {
	position: relative;
	display: grid;
	min-height: 72px;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

.brand-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	text-decoration: none;
}

.brand-logo__mark {
	display: inline-grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 2px solid var(--accent);
	border-radius: 50%;
	color: var(--accent);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.brand-logo__text {
	font-size: 24px;
	font-weight: 850;
	line-height: 1;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.site-nav a {
	color: rgba(255, 254, 253, 0.78);
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
	transition: color 160ms ease;
}

.site-nav a:hover {
	color: var(--text);
}

.header-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.header-button {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--text);
	font-size: 14px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.header-button--primary {
	border-color: var(--accent);
	background: var(--accent);
	color: var(--bg);
}

.header-button--ghost {
	background: transparent;
}

.nav-toggle {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.burger-button {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border: 1px solid var(--border);
	border-radius: 8px;
	cursor: pointer;
}

.burger-button span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--text);
}

.site-footer {
	min-height: 72px;
	margin-top: 56px;
	border-top: 1px solid var(--border);
}

.site-footer .container {
	padding: 24px 0;
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}

.footer-nav__column {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.footer-nav__title {
	display: block;
	margin-bottom: 4px;
	color: rgba(255, 254, 253, 0.62);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.footer-nav a {
	color: rgba(255, 254, 253, 0.68);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	text-decoration: none;
}

.footer-nav a:hover {
	color: var(--accent);
}

.payment-methods {
	margin-bottom: 24px;
}

.payment-methods__title {
	display: block;
	color: rgba(255, 254, 253, 0.62);
	font-size: 14px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.payment-methods__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 14px 0 0;
	padding-left: 0;
	list-style: none;
}

.payment-methods__list li {
	display: inline-flex;
	height: 30px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid rgba(253, 121, 0, 0.34);
	border-radius: 7px;
	background: rgba(23, 20, 25, 0.42);
	color: rgba(255, 254, 253, 0.68);
	font-size: 13px;
	font-weight: 400;
	line-height: 30px;
}

.footer-disclaimer {
	display: block;
	color: rgba(255, 254, 253, 0.68);
	font-size: 13px;
	line-height: 1.6;
}

.site-main {
	padding: 116px 0 0;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--text);
	line-height: 1.22;
	letter-spacing: 0;
	text-wrap: balance;
}

h1 {
	max-width: 920px;
	font-size: 42px;
	font-weight: 800;
}

h2 {
	margin-top: 48px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
	font-size: 30px;
	font-weight: 760;
}

h3 {
	margin-top: 34px;
	font-size: 23px;
	font-weight: 720;
}

p,
ul,
table {
	margin: 20px 0 0;
}

p,
ul {
	color: rgba(255, 254, 253, 0.78);
}

strong {
	color: var(--text);
	font-weight: 760;
}

.cta-link {
	display: block;
	width: 100%;
	margin-top: 24px;
	padding: 13px 18px;
	border: 1px solid var(--accent);
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: opacity 160ms ease;
}

.cta-link:hover {
	color: #fff;
	opacity: 0.88;
}

.cta-link--primary {
	margin-top: 28px;
	padding: 16px 24px;
	background: var(--accent);
	color: #fff;
	font-size: 16px;
}

.cta-link--primary:hover {
	background: var(--accent);
	color: #fff;
}

ul {
	padding-left: 24px;
}

li + li {
	margin-top: 10px;
}

li::marker {
	color: var(--accent);
}

.casino-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border: 1px solid var(--border-strong);
	border-radius: 8px;
	background: var(--surface);
	line-height: 1.48;
}

.casino-table th,
.casino-table td {
	padding: 15px 18px;
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	vertical-align: top;
	text-align: left;
}

.casino-table th:last-child,
.casino-table td:last-child {
	border-right: 0;
}

.casino-table tr:last-child th,
.casino-table tr:last-child td {
	border-bottom: 0;
}

.casino-table th {
	background: var(--surface-strong);
	color: var(--text);
	font-weight: 760;
}

.casino-table td {
	color: rgba(255, 254, 253, 0.78);
}

.casino-table--features th {
	width: 32%;
}

.verdict-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 38px;
}

.verdict-title::before {
	display: inline-grid;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	place-items: center;
	border: 1px solid var(--accent);
	border-radius: 50%;
	color: var(--accent);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.verdict-title--pros::before {
	content: "+";
	border-color: var(--pros);
	color: var(--pros);
}

.verdict-title--cons::before {
	content: "-";
	border-color: var(--cons);
	color: var(--cons);
}

.verdict-list {
	margin-top: 14px;
	padding: 18px 20px;
	border: 1px solid var(--border);
	border-left: 4px solid;
	border-radius: 8px;
	background: var(--surface);
	list-style: none;
}

.verdict-list--pros {
	border-color: rgba(36, 196, 107, 0.32);
	border-left-color: var(--pros);
	background: rgba(36, 196, 107, 0.08);
}

.verdict-list--cons {
	border-color: rgba(255, 90, 79, 0.32);
	border-left-color: var(--cons);
	background: rgba(255, 90, 79, 0.08);
}

.verdict-list li {
	position: relative;
	padding-left: 30px;
	color: rgba(255, 254, 253, 0.82);
}

.verdict-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--accent);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.45;
}

.verdict-list--pros li::before {
	content: "+";
	color: var(--pros);
}

.verdict-list--cons li::before {
	content: "-";
	color: var(--cons);
}

.faq-list {
	margin-top: 20px;
	padding-left: 0;
	list-style: none;
}

.faq-item {
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--surface);
}

.faq-item + .faq-item {
	margin-top: 10px;
}

.faq-question {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 20px;
	border: 0;
	background: transparent;
	color: var(--text);
	font: inherit;
	font-size: 17px;
	font-weight: 760;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.faq-question::after {
	content: "+";
	display: inline-grid;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	place-items: center;
	border: 1px solid var(--accent);
	border-radius: 50%;
	color: var(--accent);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.faq-item.is-open .faq-question::after {
	content: "-";
}

.faq-answer {
	padding: 0 20px 20px;
	color: rgba(255, 254, 253, 0.78);
}

.faq-answer[hidden] {
	display: none;
}

@media (max-width: 900px) {
	:root {
		--gutter: 20px;
	}

	body {
		font-size: 16px;
	}

	.header-inner {
		gap: 16px;
	}

	.site-nav {
		gap: 14px;
	}

	.site-nav a {
		font-size: 13px;
	}

	.header-button {
		padding: 0 12px;
	}

	h1 {
		font-size: 34px;
	}

	h2 {
		margin-top: 40px;
		font-size: 27px;
	}

	h3 {
		font-size: 21px;
	}
}

@media (max-width: 760px) {
	.header-inner {
		min-height: 64px;
		grid-template-columns: auto 1fr;
		gap: 14px;
	}

	.brand-logo__mark {
		width: 34px;
		height: 34px;
		font-size: 18px;
	}

	.brand-logo__text {
		font-size: 21px;
	}

	.header-actions {
		justify-self: end;
	}

	.burger-button {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 0;
		left: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		border: 1px solid var(--border);
		border-top: 0;
		border-radius: 0 0 8px 8px;
		background: var(--bg);
	}

	.site-nav a {
		padding: 13px 10px;
		border-bottom: 1px solid var(--border);
		font-size: 15px;
	}

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

	.nav-toggle:checked ~ .site-nav {
		display: flex;
	}

	.casino-table--payments {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.casino-table--payments thead,
	.casino-table--payments tbody {
		display: block;
		min-width: 760px;
	}

	.casino-table--payments tr {
		display: table;
		width: 100%;
		table-layout: fixed;
	}
}

@media (max-width: 640px) {
	:root {
		--gutter: 14px;
	}

	.header-inner {
		min-height: 58px;
	}

	.site-main {
		padding-top: 78px;
	}

	h1 {
		font-size: 28px;
	}

	h2 {
		margin-top: 34px;
		font-size: 24px;
	}

	h3 {
		margin-top: 28px;
		font-size: 20px;
	}

	p,
	ul,
	table {
		margin-top: 16px;
	}

	ul {
		padding-left: 20px;
	}

	.casino-table--features,
	.casino-table--features tbody,
	.casino-table--features tr,
	.casino-table--features th,
	.casino-table--features td,
	.casino-table--support,
	.casino-table--support thead,
	.casino-table--support tbody,
	.casino-table--support tr,
	.casino-table--support th,
	.casino-table--support td {
		display: block;
		width: 100%;
	}

	.casino-table--features tr,
	.casino-table--support tr {
		border-bottom: 1px solid var(--border);
	}

	.casino-table--features tr:last-child,
	.casino-table--support tr:last-child {
		border-bottom: 0;
	}

	.casino-table--features th,
	.casino-table--features td,
	.casino-table--support th,
	.casino-table--support td {
		border-right: 0;
		border-bottom: 0;
		padding: 13px 14px;
	}

	.casino-table--features td,
	.casino-table--support td {
		padding-top: 0;
	}

	.verdict-list {
		padding: 16px 14px;
	}

	.site-footer {
		min-height: 48px;
		margin-top: 36px;
	}

	.footer-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 18px;
	}
}

@media (max-width: 420px) {
	body {
		font-size: 15px;
	}

	.brand-logo {
		gap: 8px;
	}

	.brand-logo__mark {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}

	.brand-logo__text {
		font-size: 18px;
	}

	.header-actions {
		gap: 6px;
	}

	.header-button {
		min-height: 34px;
		padding: 0 8px;
		font-size: 12px;
	}

	.burger-button {
		width: 34px;
		height: 34px;
	}

	.footer-nav {
		grid-template-columns: 1fr;
	}

	h1 {
		font-size: 25px;
	}

	h2 {
		font-size: 22px;
	}
}
