:root {
	--page-bg: #ffffff;
	--gradient-block: linear-gradient(
		90deg,
		#1e2a78 0%,
		#2a3fa0 50%,
		#3b4ed1 100%
	);
	--btn-red: #209cd4;
	--btn-red-hover: #1abde5;
	--btn-green: #1abde5;
	--btn-green-hover: #209cd4;
	--text-white: #ffffff;
	--text-on-card: rgba(255, 255, 255, 0.92);
	--text-on-card-muted: rgba(255, 255, 255, 0.78);
	--text-body: #2d3748;
	--text-header: #1a202c;
	--divider-card: rgba(255, 255, 255, 0.2);
	--divider-page: #e2e8f0;
	--card-border: rgba(255, 255, 255, 0.25);
	--radius: 20px;
	--radius-btn: 14px;
	--shadow-card: 0 12px 40px rgba(30, 42, 120, 0.25);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family:
		'Poppins',
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--text-body);
	background: var(--page-bg);
	min-height: 100vh;
	line-height: 1.65;
	overflow-x: hidden;
}

.wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--divider-page);
	padding: 14px 20px;
}

.header-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

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

.logo img {
	height: 100%;
	width: auto;
	max-height: 40px;
	object-fit: contain;
	display: block;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border: none;
	border-radius: var(--radius-btn);
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.15s,
		box-shadow 0.2s;
	white-space: nowrap;
	color: var(--text-white);
}

@keyframes btn-pulse-red {
	0%,
	100% {
		box-shadow:
			0 4px 14px rgba(255, 75, 75, 0.4),
			0 0 18px rgba(255, 75, 75, 0.2);
	}

	50% {
		box-shadow:
			0 6px 28px rgba(255, 75, 75, 0.65),
			0 0 42px rgba(255, 75, 75, 0.45);
	}
}

@keyframes btn-pulse-red-strong {
	0%,
	100% {
		box-shadow:
			0 8px 24px rgba(255, 75, 75, 0.4),
			0 0 22px rgba(255, 75, 75, 0.25);
	}

	50% {
		box-shadow:
			0 10px 36px rgba(255, 75, 75, 0.7),
			0 0 52px rgba(255, 75, 75, 0.4);
	}
}

@keyframes btn-pulse-green {
	0%,
	100% {
		box-shadow:
			0 4px 14px rgba(58, 197, 92, 0.4),
			0 0 18px rgba(58, 197, 92, 0.2);
	}

	50% {
		box-shadow:
			0 6px 28px rgba(58, 197, 92, 0.6),
			0 0 40px rgba(58, 197, 92, 0.38);
	}
}

@keyframes btn-pulse-green-strong {
	0%,
	100% {
		box-shadow:
			0 8px 24px rgba(58, 197, 92, 0.4),
			0 0 22px rgba(58, 197, 92, 0.22);
	}

	50% {
		box-shadow:
			0 10px 36px rgba(58, 197, 92, 0.65),
			0 0 50px rgba(58, 197, 92, 0.38);
	}
}

.btn-login {
	background: var(--btn-red);
}

.btn-login:hover {
	background: var(--btn-red-hover);

	box-shadow: 0 6px 22px var(--btn-red-hover);
}

.btn-register {
	background: var(--btn-green);
}

.btn-register:hover {
	background: var(--btn-green-hover);
	box-shadow: 0 6px 22px var(--btn-green);
}

.btn-cta {
	height: 52px;
	padding: 0 32px;
	font-weight: 600;
	background: var(--btn-red);
	color: var(--text-white);
}

.btn-cta:hover {
	background: var(--btn-red-hover);
	box-shadow: 0 10px 32px var(--btn-red-hover);
}

.btn-cta-green {
	height: 52px;
	padding: 0 32px;
	font-weight: 600;
	background: var(--btn-green);
	color: var(--text-white);
	box-shadow: 0 8px 24px var(--btn-green);
}

.btn-cta-green:hover {
	background: var(--btn-green-hover);
	box-shadow: 0 10px 32px var(--btn-green);
}

.hero-primary-cta {
	margin-top: 20px;
	width: 100%;
	max-width: 100%;
}

.card {
	background: var(--gradient-block);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	padding: 28px 24px;
	box-shadow: var(--shadow-card);
	margin-bottom: 24px;
	color: var(--text-on-card);
}

.card h1,
.card h2,
.card h3 {
	color: var(--text-white);
	font-weight: 700;
	line-height: 1.3;
}

h1 {
	font-size: clamp(26px, 5vw, 34px);
	margin-bottom: 16px;
}

h2 {
	font-size: clamp(22px, 4vw, 28px);
	margin-bottom: 16px;
}

h3 {
	font-size: clamp(18px, 3vw, 22px);
	margin-bottom: 12px;
	margin-top: 8px;
}

.card p {
	margin-bottom: 14px;
	color: var(--text-on-card);
}

.card p:last-child {
	margin-bottom: 0;
}

.card ul {
	margin: 14px 0 14px 20px;
	color: var(--text-on-card);
}

.card ul li {
	margin-bottom: 8px;
}

.card ol {
	margin: 14px 0 14px 20px;
	color: var(--text-on-card);
}

.card ol li {
	margin-bottom: 8px;
}

.breadcrumbs {
	padding: 15px 20px;
	max-width: 1100px;
	margin: 0 auto;
	font-size: 13px;
	font-weight: 500;
	color: #64748b;
}

.breadcrumbs a {
	color: #475569;
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: #1e2a78;
}

.hero {
	padding: 28px 0 20px;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}

.hero-content {
	text-align: left;
}

.card-kicker {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	line-height: 1.4;
}

.hero-image-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 160px;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 16px;
	max-width: 320px;
	margin: 0 auto;
	overflow: hidden;
}
.hero-image-wrap .img-cov {
	margin: 0;
}

.hero-image-wrap img {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.slots-block-heading {
	margin: 28px 0 12px;
	font-size: clamp(17px, 3vw, 20px);
	font-weight: 700;
	color: var(--text-white);
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 16px;
	margin-top: 20px;
}

.slot-item {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 12px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid var(--divider-card);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}

.slot-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(255, 75, 75, 0.28);
}

.slot-item img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
}

.slot-item span {
	display: block;
	padding: 10px 8px;
	font-size: 11px;
	font-weight: 600;
	color: var(--text-white);
	text-align: center;
	line-height: 1.25;
}

@media (min-width: 600px) {
	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 18px;
	}

	.slot-item span {
		font-size: 12px;
	}
}

.payments-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px 24px;
	margin: 20px 0 24px;
	padding: 20px 16px;
	background: rgba(0, 0, 0, 0.12);
	border-radius: 14px;
	border: 1px solid var(--divider-card);
}

.payments-logos img {
	height: 32px;
	width: auto;
	max-width: 72px;
	object-fit: contain;
	filter: brightness(1.08);
}

.table-wrap {
	overflow-x: auto;
	margin: 20px 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	-webkit-overflow-scrolling: touch;
}

.table-wrap::-webkit-scrollbar {
	height: 8px;
}

.table-wrap::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

.table-wrap::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.35);
	border-radius: 4px;
}

table {
	width: 100%;
	min-width: 320px;
	border-collapse: collapse;
	font-size: 13px;
	background: rgba(0, 0, 0, 0.18);
}

table.table-wide {
	min-width: 720px;
}

th,
td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid var(--divider-card);
	color: var(--text-on-card);
}

th {
	background: rgba(0, 0, 0, 0.22);
	color: var(--text-white);
	font-weight: 600;
}

tr:last-child td {
	border-bottom: none;
}

tr:hover td {
	background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 639px) {
	.table-mobile-wrap {
		margin-left: 0;
		margin-right: 0;
		border-radius: 12px;
		overflow: visible;
		box-shadow: none;
		background: transparent;
	}

	.table-mobile-wrap table,
	.table-mobile-wrap table.table-wide {
		min-width: 0 !important;
		width: 100%;
		background: transparent;
		display: block;
	}

	.table-mobile-wrap thead {
		display: none;
	}

	.table-mobile-wrap tbody {
		display: block;
	}

	.table-mobile-wrap tbody tr {
		display: block;
		margin-bottom: 14px;
		border: 1px solid var(--divider-card);
		border-radius: 12px;
		background: rgba(0, 0, 0, 0.2);
		overflow: hidden;
		box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	}

	.table-mobile-wrap tbody tr:hover td {
		background: transparent;
	}

	.table-mobile-wrap tbody td {
		display: block;
		padding: 10px 14px;
		border-bottom: 1px solid var(--divider-card);
		font-size: 13px;
		text-align: left;
	}

	.table-mobile-wrap tbody td:last-child {
		border-bottom: none;
	}

	.table-mobile-wrap tbody td:first-child {
		font-weight: 700;
		color: var(--text-white);
		background: rgba(0, 0, 0, 0.25);
		padding: 12px 14px;
	}

	.table-mobile-wrap tbody td:not(:first-child)::before {
		content: attr(data-label);
		display: block;
		font-size: 11px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.04em;
		color: var(--text-on-card-muted);
		margin-bottom: 6px;
		line-height: 1.3;
	}
}

.faq-list {
	list-style: none;
	margin-left: 0;
}

.faq-item {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 1px solid var(--divider-card);
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 0;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-white);
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}

.faq-question:hover {
	color: #209cd4;
}

.faq-question::after {
	content: '';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
		no-repeat center;
	background-size: contain;
	transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
	transform: rotate(180deg);
}

.faq-answer {
	display: none;
	padding: 0 0 18px 0;
	color: var(--text-on-card-muted);
	font-size: 14px;
	line-height: 1.65;
}

.faq-item.open .faq-answer {
	display: block;
}

.cta-block {
	text-align: center;
	padding: 36px 24px 28px;
	margin: 32px 0;
}

.cta-block .btn-cta,
.cta-block .btn-cta-green {
	margin-top: 14px;
	display: inline-flex;
}

.cta-block .btn-cta-green {
	margin-left: 0;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.pageMenu li a {
	color: white;
	text-decoration: none;
}
.pageMenu li a:hover {
	color: #209cd4;
}

@media (min-width: 520px) {
	.cta-block .btn-cta-green {
		margin-left: 12px;
	}
}

.footer {
	padding: 24px 20px;
	text-align: center;
	font-size: 13px;
	color: #64748b;
	border-top: 1px solid var(--divider-page);
	background: var(--page-bg);
}

.footer a {
	color: #64748b;
	text-decoration: none;
}

.footer a:hover {
	color: #1e2a78;
}

.header__list {
	list-style: none;
}
.header__list li a {
	color: #64748b;
	text-decoration: none;
}
.header__list li a:hover {
	color: #1e2a78;
}

@media (min-width: 768px) {
	.hero-inner {
		grid-template-columns: 1fr minmax(240px, 300px);
		gap: 28px;
		align-items: start;
	}

	.hero-image-wrap {
		margin: 0;
		max-width: 100%;
		min-height: 200px;
	}

	table {
		font-size: 14px;
	}

	th,
	td {
		padding: 14px 18px;
	}
}

@media (max-width: 480px) {
	.header {
		padding: 12px 16px;
	}

	.header-actions .btn {
		padding: 10px 14px;
		font-size: 13px;
	}

	.logo {
		height: 34px;
	}

	.card {
		padding: 20px 18px;
	}

	.btn-cta,
	.btn-cta-green {
		height: 48px;
		padding: 0 20px;
		width: 100%;
		max-width: 320px;
	}

	.cta-block .btn-cta-green {
		margin-left: 0;
		margin-top: 10px;
	}
	.logo img {
		max-height: 20px;
	}
}

@media (max-width: 768px) {
	.header-inner {
		flex-wrap: wrap;
	}
	.header-actions {
		width: 100%;
	}
	.header-actions .btn {
		width: 100%;
	}
}
