@charset "UTF-8";
/
@import url(https://fonts.googleapis.com/css?family=Poppins:300,regular,500,600,700,800,900&display=swap);
*:where(
		:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
	) {
	all: unset;
	display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a,
button {
	cursor: revert;

}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
	list-style: none;
}

/* For images to not be able to exceed their container */
img {
	max-inline-size: 100%;
	max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
	-webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
	white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
	-webkit-appearance: revert;
	-moz-appearance: revert;
	appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
	all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
	color: unset;
}
::placeholder {
	color: unset;
}

/* remove default dot (•) sign */
::marker {
	content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
	display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable='false'])) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	-webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable='true']) {
	-webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
	all: revert;
}

html,
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #fff;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background: #202020;
	position: relative;
	margin: 0;
}

p {
	line-height: 150%;
}

h1 {
	font-size: 38px;
	font-weight: 600;
	text-align: center;
	margin: 25px 0;
}

h2 {
	font-size: 32px;
	font-weight: 600;
	margin: 20px auto;
	text-align: center;
	border-bottom: 1.5px solid #1d5dac;
	max-width: -moz-fit-content;
	max-width: fit-content;
}

h3 {
	font-size: 26px;
	font-weight: 600;
	margin: 15px 0;
}

ol {
	list-style: decimal;
	padding: 15px 25px;
}

ul {
	list-style: disc;
	padding: 15px 25px;
}

li {
	line-height: 150%;
}

ol li::marker,
ul li::marker {
	color: #1d5dac;
	font-weight: 600;
}

table {
	border-collapse: collapse;
	width: 100%;
	overflow-x: auto;
	margin: 20px 0;
	overflow: auto;
}
table tr td,
table tr th {
	border: 1px solid #fff;
	padding: 15px;
}
table tr th {
	background: #1d5dac;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
table tr td:hover {
	background-color: rgba(130, 130, 130, 0.1058823529);
}

.header {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: #000000;
	padding: 20px 0;
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.header .container .logo {
	flex: 0 0 200px;
}
.header .container .auth {
	display: flex;
	gap: 15px;
}
.header .container .auth .btn-1 {
	background-color: #9500ff;
	color: #fff;
}
.header .container .auth .btn-1:hover {
	opacity: 0.8;
}
.header .container .auth .btn-2 {
	background-color: #1d5dac;
}
.header .container .auth .btn-2:hover {
	opacity: 0.8;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 150px;
	padding: 10px 15px;
	border-radius: 4px;
	transition: all 0.3s;
	color: #fff;
	text-decoration: none;
}

.main {
	height: 100%;
	flex: 1 1 auto;
	padding: 0 0 50px;
}
.main .main-btn {
	background-color: gold;
	color: #333;
	width: 250px;
	font-weight: 600;
	margin: 10px auto;
}
.main .main-btn:hover {
	background-color: rgb(170, 145, 3);
	color: #fff;
}
.main .banner {
	padding: 50px 0;
	position: relative;
	background-color: #181a1e;
/*     background: #000; */
    background: rgba(0, 0, 0, 0.2);
	background-position: 100%;
	background-size: contain;
	height: 400px;
	display: flex;
	z-index: 0;
}
.main .banner::before {
	content: '';
	background: url('/assets/coins.png') center/cover no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	opacity: 0.3;
}
.main .banner__icon {
	min-width: 210px;
	min-height: 200px;
	max-width: 210px;
	max-height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffd000;
	border-radius: 93px;
	padding: 50px;
	box-shadow: 0 0 20px #1d2158;
}
.main .banner__icon img {
	width: 200px;
}
.main .banner .container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	margin: 0 50px;
}
.main .banner .item {
	flex: 0 0 60%;
}
.main .banner .item img {
	animation: transform 5s infinite;
	max-width: 400px;
}
.main .banner__text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 20px;
}
.main .banner__text h1 {
	margin: 0;
	text-align: left;
}
.main .banner__img {
	text-align: center;
}
.main .banner__btn a {
	position: relative;
	transition: all 0.3s ease-in-out;
	background-color: #1d5dac;
	max-width: 300px;
	white-space: nowrap;
	font-size: 20px;
	overflow: hidden;
	width: auto;
	color: #fff;
	padding: 15px;
	box-shadow: 0 8px 16px 0 rgba(97, 229, 146, 0.24);
	animation: glowing 1300ms infinite;
}
.main .banner__btn a:hover {
	opacity: 0.8;
}
.main .banner__btn a::after {
	content: '';
	position: absolute;
	width: 142px;
	height: 100%;
	top: 0;
	left: -142px;
	background: -webkit-linear-gradient(
		-40deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0) 25%,
		#ffffff 25.2%,
		#fff 46%,
		rgba(255, 255, 255, 0) 46.2%,
		rgba(255, 255, 255, 0) 49%,
		#ffffff 49.2%,
		#fff 53.5%,
		rgba(255, 255, 255, 0) 53.7%,
		rgba(255, 255, 255, 0) 100%
	);
	-webkit-background-size: 100% 100%;
	animation: animation-15c8vog 3s infinite ease-in-out forwards;
	filter: drop-shadow(0px 0px 5px #fff);
}
.main .games-wrap {
	padding: 75px 16px;
	box-shadow: 0 0 5px #816aa6;
}
.main .games-wrap h2 {
	margin: 0 auto 70px;
}
.main .games-wrap .cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	justify-content: center;
	gap: 20px;
}
.main .games-wrap .cards .card {
	background: rgba(255, 100, 100, 0.2);
	border-radius: 16px;
	padding: 24px;
	height: 200px;
	position: relative;
	overflow: hidden;
}
.main .games-wrap .cards .card::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 340px;
	height: 272px;
	z-index: -1;
}
.main .games-wrap .cards .card:nth-child(1)::before {
	background: url('../img/light.png') center/cover no-repeat;
}
.main .games-wrap .cards .card:nth-child(2)::before {
	background: url('../img/prize.png') center/cover no-repeat;
}
.main .games-wrap .cards .card:nth-child(3)::before {
	background: url('../img/phone.png') center/cover no-repeat;
}
.main .games-wrap .cards .card__title {
	font-size: 26px;
	font-weight: 700;
	max-width: 80%;
}
.main .games-wrap .cards .card__subtitle {
	font-size: 20px;
	font-weight: 600;
	max-width: 80%;
}
.main .content {
	padding: 50px 0;
}
.main .content p {
	margin: 15px 0;
}
.main .content img {
	display: flex;
	margin: 0 auto;
	width: auto;
	height: auto;
}
.main .payments {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.main .payments .payment {
	cursor: pointer;
	transition: filter 0.4s ease-in-out;
}
.main .payments .payment svg path {
	transition: fill 0.4s ease-in-out;
}
.main .payments .payment:nth-child(1):hover {
	filter: drop-shadow(0px 0px 16px #1f46ff);
}
.main .payments .payment:nth-child(1):hover svg path {
	fill: #1f46ff;
}
.main .payments .payment:nth-child(2):hover {
	filter: drop-shadow(0px 0px 16px #ff8000);
}
.main .payments .payment:nth-child(2):hover svg path {
	fill: #ff8000;
}
.main .payments .payment:nth-child(3):hover {
	filter: drop-shadow(0px 0px 16px #ffc200);
}
.main .payments .payment:nth-child(3):hover svg path {
	fill: #ffc200;
}
.main .payments .payment:nth-child(4):hover {
	filter: drop-shadow(0px 0px 16px #f7931a);
}
.main .payments .payment:nth-child(4):hover svg path {
	fill: #f7931a;
}
.main .payments .payment:nth-child(5):hover {
	filter: drop-shadow(0px 0px 16px #c718e3);
}
.main .payments .payment:nth-child(5):hover svg path {
	fill: #c718e3;
}
.main .payments .payment:nth-child(6):hover {
	filter: drop-shadow(0px 0px 16px #28d49f);
}
.main .payments .payment:nth-child(6):hover svg path {
	fill: #28d49f;
}

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

.footer {
	padding: 30px 16px;
	background-color: #000000;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 14px;
}
.footer .container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer__list {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 8px;
	padding: 20px 0;
	width: 100%;
}
.footer__list-title {
	font-weight: 600;
	color: #d2eeed;
}
.footer__list ul {
	padding: 10px 0 0 15px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer__list ul li {
	color: #80858f;
	font-size: 14px;
}
.footer__list ul li a {
	transition: all 0.2s ease-in-out;
	display: block;
}
.footer__list ul li a:hover {
	transform: scale(1.12) translate(0.75rem);
}
.footer__list ul li::marker {
	color: #80858f;
}
.footer__icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.footer__icons img {
	height: 30px;
}
.footer ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap:15px;

}
.footer ul a {
		text-decoration: none;
	color: #fff;
}
.footer ul a:hover {
	color:#1d5dac;
}

@media (max-width: 768px) {
	h1 {
		margin: 20px 0;
		font-size: 30px;
	}
	h2 {
		font-size: 24px;
		margin: 15px 0;
	}
	h3 {
		font-size: 20px;
		margin: 10px 0;
	}
	.container {
		max-width: 100%;
	}
	.btn {
		padding: 10px 15px;
		width: 100%;
	}
	.header .container {
		justify-content: center;
		gap: 15px;
		flex-direction: column;
		gap: 20px;
	}
	.header .container .logo {
		flex: auto;
	}
	.header .container .logo img {
		width: 180px;
	}
	.main {
		padding: 0 0 30px;
	}
	.main .banner {
		height: auto;
		padding: 30px 0;
		background-size: cover;
		padding: 0;
	}
	.main .banner .container {
		gap: 30px;
		flex-direction: column;
		align-items: center;
		text-align: center;
		z-index: 3;
		padding: 20px;
		margin: 0 auto;
	}
	.main .banner h1 {
		text-align: center;
	}
	.main .banner__btn a {
		margin: 0 auto;
	}
	.main .banner__icon img {
		width: 100px;
	}
	.main .banner__img {
		max-width: 250px;
	}
	.main .banner .item {
		flex: 1 1 auto;
	}
	.main .banner .item img {
		max-width: 100%;
	}
	.main .games-wrap {
		padding: 45px 0;
	}
	.main .games-wrap h2 {
		margin: 0 auto 30px;
	}
	.main .games-wrap .game-item {
		width: 300px;
		height: 300px;
		margin: 0 auto;
	}
	.main .games-wrap .game-item:not(:last-child) {
		margin-bottom: 50px;
	}
	.main .games-wrap .game-item_play {
		margin-bottom: 128px;
	}
	.main .content {
		padding: 30px 0;
	}
	.main .content img {
		max-width: 100%;
	}
	.main .payments {
		padding: 0 16px;
		gap: 10px;
		justify-content: space-around;
	}
	.main .payments svg {
		height: 30px;
	}
	.footer__list {
		flex-direction: column;
	}
}
@keyframes glowing {
	0% {
		box-shadow: 0 0 5px #4d4d4d;
	}
	50% {
		box-shadow: 0 0 20px #1d5dac;
	}
	100% {
		box-shadow: 0 0 5px #4d4d4d;
	}
}
.faq-section {
	width: 100%; /* Занять всю ширину экрана */
	padding: 20px;
	background-color: #1d2158;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-top: 30px; /* Отступ сверху между разделами */
}

.faq-section h2 {
	text-align: center;
	font-size: 28px;
	color: white;
	margin-bottom: 30px;
}

.faq-item {
	margin-bottom: 25px;
	padding: 15px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background-color: #0f112f;
	transition: box-shadow 0.3s;
}

.faq-item:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-item h4 {
	font-size: 20px;
	color: #1d5dac;
	margin-bottom: 10px;
}

.faq-item p {
	font-size: 16px;
	color: white;
	line-height: 1.5;
}

.reviews-section {
	width: 100%; /* Занять всю ширину экрана */
	padding: 20px;
	background-color: #1d2158;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.reviews-section h2 {
	text-align: center;
	font-size: 28px;
	color: white;
	margin-bottom: 30px;
}

.review {
	margin-bottom: 25px;
	padding: 15px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background-color: #0f112f;
	transition: box-shadow 0.3s;
}

.review:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.review-header {
	font-size: 20px;
	color: #1d5dac;
	margin-bottom: 10px;
}

.review p {
	font-size: 16px;
	color: white;
	line-height: 1.5;
}
.table {
	width: 100%;
	overflow-x: auto;
	margin: 25px 0;
}
.table table td:first-child {
	background: #1d5dac;
}
.img-cov {
	width: 100%;
	height: 100%;
	margin: 25px 0;
}
.img-cov img {
	width: 100%;
	height: 100%;
}

li a {
    text-decoration: none;
    color:inherit;
}
li a:hover {
    color:#1d5dac;
}