* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	user-select: none;
}

html,
body {
	touch-action: manipulation;
}

body {
	background: #101118;
}

a {
	text-decoration: none;
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #101118;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	.loader-wrapper {
		position: relative;
	}

	.loading-progress {
		border-radius: 4px;
		background: #4d4f59;
		width: 277px;
		height: 3px;
		display: block;
		position: relative;
		content: "";
		overflow: hidden;
		margin-top: 27px;
	}

	.loader-value {
		position: absolute;
		left: 0;
		top: 0;
		height: 3px;
		border-radius: 4px;
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
		animation: loader-anim infinite 2s;
	}
}

.loader-icon {
	width: auto;
	height: auto;
	display: inline-block;
}

@media (max-width: 768px) {
	.loader-icon {
		width: 160px;
		height: 78px;
	}
	
	.original-games-wrapper {
	  grid-template-columns: repeat(3, 1fr) !important;
	}
}

@keyframes loader-anim {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

.container {
	max-width: 1391px;
	margin: 0 auto;
}

.mobile-menu {
	display: none;
}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
	border-bottom: 1px solid #2a3146;
}

.wallet-menu {
	.modal-close-btn {
		display: none;
	}

	.group-header {
		margin-top: 0;
	}
}

.nav {
	display: flex;
	align-items: center;
	gap: 23px;

	.nav-link {
		display: flex;
		align-items: center;
		gap: 4px;
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
		text-decoration: none;
		transition: all 0.3s ease-in-out;

		&:hover {
			color: #ffffff;
		}
	}
}

.wallet-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 15px;
	background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	padding: 12px 18px;
	border: none;
	cursor: pointer;

	span {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 145.2%;
	}
}

.auth-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 15px;
	background: #007aff;
	padding: 12px 18px;
	border: none;
	cursor: pointer;

	span {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 145.2%;
	}
}

.header-icon {
	width: 28px;
	height: 28px;
}

.profile-header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.profile-balance {
	display: flex;
	align-items: center;
	gap: 4px;
	border-radius: 15px;
	background: rgb(21, 23, 33);
	padding: 12px 21px 12px 19px;

	p {
		color: #fff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
	}
}

.profile-btn {
	img {
		border-radius: 15px;
		height: 52px;
		width: 52px;
	}
}

.header-left {
	display: flex;
	align-items: center;
	gap: 32px;
}

.main-slider {
	height: 347px;
	margin-top: 24px;
}

.main-slide {
	height: 347px;
	background-size: cover;
	border-radius: 21px;
	overflow: hidden;
	padding: 60px 50px 68px 50px;
	background-size: cover !important;

	h3 {
		color: #ffffff;
		font-family: Google Sans;
		font-size: 30px;
		font-weight: 700;
		line-height: 143.2%;
		letter-spacing: -1%;
	}

	p {
		color: #ffffffbf;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 143.2%;
		margin-top: 12px;
		margin-bottom: 40px;
	}

	a {
		border-radius: 13px;
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
		padding: 14px 26px 14px 18px;
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 700;
		line-height: 131.2%;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}
}

.game-filter-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 32px;
	gap: 50px;
}

.game-filter-btns {
	display: flex;
	align-items: center;
	gap: 16px;

	button {
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		border-radius: 14px;
		border: none;
		background: #151721;
		padding: 12px 21px 12px 19px;
		text-wrap: nowrap;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 4px;

		&:hover {
			background: linear-gradient(180deg, #ffce0052, #ffa61052 100%);
			color: #fff;
		}

		&.active {
			color: #fff;
			background: linear-gradient(180deg, #ffce00, #ffa610 100%);
		}
	}
}

.search {
	position: relative;
	width: 100%;

	img {
		position: absolute;
		top: 50%;
		left: 22px;
		transform: translateY(-50%);
	}

	input {
		width: 100%;
		height: 52px;
		padding-left: 58px;
		border-radius: 15px;
		background: rgb(25, 27, 38);
		border: none;
		color: #fff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
		letter-spacing: 0%;
		outline: none;
		text-align: left;

		&:hover {
			background: #212330;
		}

		&::placeholder {
			color: #4d4f59;
		}
	}
}

.group-title {
	display: flex;
	align-items: center;
	gap: 12px;

	.group-icon {
		height: 52px;
		width: 52px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 14px;
	}

	h3 {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 20px;
		font-weight: 500;
		line-height: 25px;
	}
}

.tournament-table-title {
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 20px;
	font-weight: 500;
	line-height: 25px;
}

.original-games {
	margin-top: 42px;

	.group-icon {
		background: linear-gradient(180deg, #fd7a8c, #e95875 100%);
	}

	.game-name {
		span {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 52px;
			height: 52px;
			border-radius: 14px;
			background: #eaedff36;
		}

		p {
			color: #f9fbff;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 23px;
			margin-top: 12px;
		}
	}
}

.group-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.page-wrapper .group-header {
	margin-top: 0;
}

.referal-page .group-header {
	margin-top: 25px;
}

.profile-page .group-header {
	margin-top: 25px;
}

.show-all {
	color: #4d4f59;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;
	border-radius: 14px;
	padding: 15px 20px 14px 20px;
	border: none;
	outline: none;
	cursor: pointer;
	background: #151721;
	transition: all 0.3s ease-in-out;

	&:hover {
		border-radius: 14px;
		background: #191b25;
	}
}

.group-nav {
	display: flex;
	align-items: center;
	gap: 12px;
}

.arrow-btn {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	outline: none;
	cursor: pointer;
	border-radius: 11px;
	background: #191b26;
	color: #4d4f59;

	&:hover {
		background: #1d1f2a;
	}
}

.popular-slots {
	margin-top: 44px;

	.group-header {
		margin-bottom: 8px;
	}

	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.popular-slots-wrapper {
	.swiper-wrapper {
		padding-top: 20px;
	}
}

.slots-grid a img {
	width: 100%;
	height: auto;
	aspect-ratio: 185 / 244;
	object-fit: cover;
	border-radius: 20px;
}

@media (max-width: 768px) {
	.slots-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.slots-grid a {
		aspect-ratio: 185 / 244;
		display: block;
		overflow: hidden;
		border-radius: 20px;
	}

	.slots-grid a img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		aspect-ratio: auto;
	}
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 16px;
}

@media (max-width: 768px) {
	.slots-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.slot-card {
	img {
		aspect-ratio: 185 / 244;
		width: 100%;
		object-fit: cover;
		display: block;
	}

	transition: all 0.3s ease-in-out;

	&:hover {
		transform: translateY(-10px) !important;
	}
}

.all-slots {
	margin-top: 44px;

	.group-header {
		margin-bottom: 0px;
	}

	.group-icon {
		background: linear-gradient(180deg, #f96f4d, #cf4128 100%);
	}
}

.all-slots-wrapper {
	height: 556px;

	.swiper-wrapper {
		padding-top: 20px;
	}
}

.swiper-slide.slot-card {
	height: calc((90% - 16px) / 2) !important;
}

.providers {
	margin-top: 44px;

	.group-header {
		margin-bottom: 8px;
	}

	.group-icon {
		background: #151721;
	}
}

.providers-wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
}

.provider-card {
	width: 100%;
	height: 128px;
	border-radius: 21px;
	background: rgb(21, 23, 33);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 16px;

	a {
		width: 52px;
		height: 52px;
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;

		&:nth-child(1) {
			background: linear-gradient(180deg, #518cdf, #2749a6 100%);
		}

		&:nth-child(2) {
			background: linear-gradient(180deg, #5daff2, #3481c0 100%);
		}
	}
}

.sidebar-socials {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 16px;

	a {
		width: 52px;
		height: 52px;
		border-radius: 44px;
		display: flex;
		align-items: center;
		justify-content: center;

		/* &:nth-child(1) {
			background: linear-gradient(180deg, #518cdf, #2749a6 100%);
		} */

		&:nth-child(1) {
			background: linear-gradient(180deg, #5daff2, #3481c0 100%);
		}
	}
}

.game-right-side {
	.group-header {
		display: none;
	}
}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 45px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgb(42, 49, 70);
}

.footer-top-left {
	display: flex;
	align-items: center;
	gap: 18px;
}

.age-alert {
	display: flex;
	align-items: center;
	gap: 8px;

	p {
		color: rgba(181, 74, 62, 0.7);
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 118.2%;
	}
}

.footer-bottom {
	padding: 20px 0 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;

	a,
	p {
		color: #4d4f5966;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		text-decoration: none;
	}
}

.group-nav {
	.arrow-btn {
		display: flex;
	}
}

.footer-bottom-right {
	display: flex;
	align-items: center;
	gap: 24px;
}

.swiper-pagination-bullet {
	background: #ffffff8a !important;
}

.swiper-pagination-bullet-active {
	background: #f9fbff !important;
	width: 34px !important;
	border-radius: 9px !important;
}

.sidebar {
	position: fixed;
	left: 0;
	height: 100vh;
	width: 108px;
	background: #0d0e16;
	top: 0;
	padding: 165px 25px 28px 25px;
	display: flex;
	flex-direction: column;
}

.sidebar-logo {
	padding-bottom: 26px;
	border-bottom: 1px solid #2a3146;
	display: inline-block;
	width: 100%;
}

.sidebar-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 24px;
	flex-grow: 1;
}

.sidebar-nav-item {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 4px;
	color: #4d4f59;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 23px;
	letter-spacing: 0%;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease-in-out;

	&:hover {
		span {
			background: #0ec05173;
		}
	}

	&.active {
		color: #fff;

		span {
			background: linear-gradient(180deg, #ffce00, #ffa610 100%);
		}
	}

	span {
		transition: all 0.3s ease-in-out;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 52px;
		height: 52px;
		background: #28333d;
		border-radius: 44px;
	}
}

.online-count {
	display: flex;
	align-items: center;
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 23px;
	margin-top: 24px;
	gap: 8px;

	.online-icon {
		filter: blur(1px);
		background: #165d2c;
		width: 15px;
		height: 15px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;

		.online-icon-inner {
			background: #1ebe3c;
			width: 7px;
			height: 7px;
			display: block;
			border-radius: 50%;
			content: "";
		}
	}
}

.slots-page {
	margin-top: 44px;

	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.slot-card {
	border-radius: 20px;
	overflow: hidden;

	&:hover {
		.hover-slots {
			display: flex;
		}
	}

	.hover-slots {
		position: absolute;
		padding: 16px;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		backdrop-filter: blur(23px);
		background: #13141ea8;
		z-index: 2;
		display: none;
		flex-direction: column;

		.hover-slots-title {
			text-align: center;

			h3 {
				color: #f9fbff;
				font-family: Google Sans;
				font-size: 18px;
				font-weight: 500;
				line-height: 127%;
				margin-bottom: 4px;
			}

			p {
				color: #767880;
				font-family: Google Sans;
				font-size: 16px;
				font-weight: 500;
				line-height: 127%;
			}
		}

		.hover-slots-btn {
			flex-grow: 1;
			display: flex;
			justify-content: center;
			align-items: end;
			margin-bottom: 35px;

			button {
				img {
					width: 28px;
				}

				margin: 0 auto;
				color: #f9fbff;
				font-family: Google Sans;
				font-size: 18px;
				font-weight: 500;
				line-height: 127%;
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 4px;
				height: 52px;
				width: 118px;
				border-radius: 12px;
				border-radius: 20px;
				background: linear-gradient(180deg, #ffce00, #ffa610 100%);
				border: none;
				outline: none;
				cursor: pointer;

				&:hover {
					background: linear-gradient(180deg, #f1a91c, #dc8f0c 100%);
				}

				&:active {
					background: linear-gradient(180deg, #f1a91c, #dc8f0c 100%);
				}
			}
		}
	}
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	column-gap: 16px;
	row-gap: 24px;
	margin-top: 24px;

	a {
		position: relative;
		overflow: hidden;
		border-radius: 20px;

		img {
			width: 100%;
		}

		&:hover {
			.hover-slots {
				display: flex;
			}
		}

		.hover-slots {
			position: absolute;
			padding: 16px;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			backdrop-filter: blur(23px);
			background: #13141ea8;
			z-index: 2;
			display: none;
			flex-direction: column;

			.hover-slots-title {
				text-align: center;

				h3 {
					color: #f9fbff;
					font-family: Google Sans;
					font-size: 18px;
					font-weight: 500;
					line-height: 127%;
					margin-bottom: 4px;
				}

				p {
					color: #767880;
					font-family: Google Sans;
					font-size: 16px;
					font-weight: 500;
					line-height: 127%;
				}
			}

			.hover-slots-btn {
				flex-grow: 1;
				display: flex;
				justify-content: center;
				align-items: end;
				margin-bottom: 35px;

				button {
					img {
						width: 28px;
					}

					margin: 0 auto;
					color: #f9fbff;
					font-family: Google Sans;
					font-size: 18px;
					font-weight: 500;
					line-height: 127%;
					display: flex;
					align-items: center;
					justify-content: center;
					gap: 4px;
					height: 52px;
					width: 118px;
					border-radius: 12px;
					border-radius: 20px;
					background: linear-gradient(180deg, #ffce00, #ffa610 100%);
					border: none;
					outline: none;
					cursor: pointer;

					&:hover {
						background: linear-gradient(180deg, #7daaff, #5c75f1 100%);
					}

					&:active {
						background: linear-gradient(180deg, #7ba9ff, #7287f3 100%);
					}
				}
			}
		}
	}
}

.slots-grid-toolbar {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 16px;

	.providers-select-wrapper {
		position: relative;
		min-width: 386px;
	}
}

.provider-select-header {
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 12px;
	background: #191b26;
	padding: 10px 20px 10px 22px;
	cursor: pointer;

	input {
		cursor: pointer;
	}

	.value-wrapper {
		display: flex;
		align-items: center;
		gap: 7px;

		.select-value {
			color: #4d4f59;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 127%;
		}
	}
}

.open-slot-page {
	margin-top: 44px;

	.group-icon {
		background: linear-gradient(180deg, #fe6753, #da3a28 100%);
	}

	.options-block {
		display: flex;
		align-items: center;
		gap: 12px;

		button {
			width: 52px;
			height: 52px;
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 15px;
			background: #151721;
			cursor: pointer;
			border: none;
			outline: none;
			transition: all 0.3s ease-in-out;

			&:hover {
				background: #1d1f2a;
			}

			&:active {
				color: #fff;
				background: rgb(32, 34, 45);
			}
		}
	}
}

.mines-page {
	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}

	.game-left-side {
		border-radius: 31px;
		background: #151721;
		max-width: 533px;
		width: 100%;
		padding: 28px 28px 125px 28px;
	}
}

.game-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 24px;
}

.open-slot-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.game-placeholder {
	width: 100%;
	height: 693px;
	display: block;
	content: "";
	border-radius: 22px;
	background: #151721;
	margin-top: 24px;
}

.counter {
	height: 100%;
	width: 94px;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 163px 11.5px 18px 11.5px;
	border-radius: 15px;

	div {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;

		span {
			width: 50px;
			height: 50px;
			display: flex;
			align-items: center;
			justify-content: center;
			background: #303345;
			border-radius: 11px;

			img {
				width: 29px;
				height: 29px;
			}
		}

		p {
			color: #ffffff;
			font-family: Google Sans;
			font-size: 16px;
			font-weight: 500;
			line-height: 127%;
		}
	}

	&.candy-counter {
		background: linear-gradient(180deg,
			rgb(38, 40, 54) 46.01%,
			rgb(44, 51, 75) 80.381%,
			rgb(65, 86, 146) 130.325%,
			rgb(94, 134, 242) 217.952%);

		.counter-value {
			background: linear-gradient(180deg,
				rgba(106, 158, 255, 0.5),
				rgba(79, 104, 227, 0.5) 100%);
		}
	}

	&.mines-counter {
		background: linear-gradient(180deg,
			rgb(38, 40, 54) 49.875%,
			rgb(233, 43, 68) 217.952%);

		.counter-value {
			background: rgba(232, 42, 68, 0.41);
		}
	}

	.counter-value {
		margin-top: 116px;
		width: 54px;
		height: 28px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 2px;
		border-radius: 6px;
		color: #ffffff;
		font-family: Google Sans;
		font-size: 16px;
		font-weight: 500;
		line-height: 127%;
	}
}

.game-field-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fields-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 72px);
	grid-template-rows: repeat(5, 72px);
	gap: 10px;

	.mines-field {
		display: flex;
		align-items: center;
		justify-content: center;
		content: "";
		width: 100%;
		height: 100%;
		border-radius: 17px;
		background: #262836;

		img {
			display: none;
		}

		&.bomb {
			background: linear-gradient(180deg, #ff6264, #cd2549 119.444%);

			.bomb-field {
				display: block;
				width: 40px;
				height: 40px;
			}
		}

		&.candy {
			background: linear-gradient(180deg, #ffce00, #ffa610 100%);

			.candy-field {
				display: block;
				width: 36px;
				height: 36px;
			}
		}
	}
}

.game-input {
	position: relative;
	width: 100%;

	img {
		position: absolute;
		right: 31px;
		top: 15px;
	}

	input {
		height: 56px;
		width: 100%;
		border-radius: 13px;
		background: #1d1f2c;
		outline: none;
		border: none;
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		padding-left: 28px;
		padding-right: 70px;

		&::placeholder {
			color: #4d4f59;
		}
	}
}

.game-right-side {
	width: 100%;
	border-radius: 30px;
	background: #151721;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 28px 14px 32px 14px;
}

.last-game-list {
	.group-icon {
		border-radius: 14px;
		background: linear-gradient(180deg, #2dca61, #1eb33a 100%);
	}
}

.last-game-table-header {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-radius: 14px;
	background: #151721;
	padding: 19px 48px 18px 48px;

	p {
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;

		&:nth-child(3) {
			justify-self: center;
		}

		&:nth-child(4) {
			justify-self: center;
		}

		&:nth-child(5) {
			justify-self: end;
		}
	}
}

.last-game-table-body {
	display: flex;
	flex-direction: column;
	margin-top: 12px;
	gap: 12px;
}

.last-game-table-item {
	border-radius: 14px;
	background: #151721;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	padding: 13px 48px 13px 48px;

	.history-game-name {
		display: flex;
		align-items: center;
		gap: 8px;

		p {
			color: #ffffff;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 120%;
		}

		span {
			width: 34px;
			height: 34px;
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 8px;
			background: #101118;

			img {
				width: 20px;
			}
		}
	}

	.history-profile-name {
		display: flex;
		align-items: center;
		gap: 8px;

		p {
			color: #ffffff;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 23px;
		}

		img {
			width: 34px;
			height: 34px;
			object-fit: contain;
			border-radius: 7.44px;
		}
	}

	.withdraw-history {
		display: none;
	}

	.history-bet {
		justify-self: center;
	}

	.history-bet,
	.history-result {
		display: flex;
		align-items: center;
		gap: 8px;

		p {
			color: #ffffff;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 23px;
		}

		img {
			width: 28px;
		}
	}

	.history-result {
		justify-self: end;
	}

	.history-coeff {
		color: #ffffff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		display: flex;
		align-items: center;
		justify-self: center;
	}
}

.game-input-wrapper {
	p {
		color: #44485b;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		margin-bottom: 8px;
		margin-top: 24px;
	}
}

.game-input-select {
	width: 100%;
	height: 56px;
	border-radius: 13px;
	background: #1d1f2c;
	display: flex;
	align-items: center;

	input {
		width: 100%;
		height: 56px;
		border-radius: 13px;
		background: #1d1f2c;
		border: none;
		outline: none;
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		padding-left: 28px;
	}
}

.game-input-select-btns {
	display: flex;
	align-items: center;
	gap: 4px;
	padding-right: 32px;

	button {
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		width: 44px;
		height: 40px;
		border-radius: 10px;
		background: transparent;
		border: none;
		outline: none;
		cursor: pointer;
		transition: all 0.3s ease-in-out;

		&:hover {
			background: #191b25;
		}

		&.active {
			background: #262937;
			color: #fff;
		}
	}
}

.game-input-btns {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;

	button {
		width: 100%;
		height: 52px;
		border-radius: 12px;
		background: #191b26;
		border: none;
		outline: none;
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		cursor: pointer;
		transition: all 0.3s ease-in-out;

		&:active {
			background: #292b38;
			color: #fff;
		}

		&:hover {
			background: #232532;
		}
	}
}

.game-btns {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;

	.auto-btn {
		background: linear-gradient(180deg, #d3122a, #a4071e 100%);

		&:hover {
			background: linear-gradient(180deg, #e12337, #b20f26 100%);
		}

		&:active {
			background: linear-gradient(180deg, #eb3141, #be2432 100%);
		}
	}

	.collect-btn {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);

		&:hover {
			background: linear-gradient(180deg, #f1a91c, #dc8f0c 100%);
		}

		&:active {
			background: linear-gradient(180deg, #31eb72, #24be64 100%);
		}
	}

	.start-btn {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);

		&:hover {
			background: linear-gradient(180deg, #7daaff, #5c75f1 100%);
		}

		&:active {
			background: linear-gradient(180deg, #7ba9ff, #7287f3 100%);
		}
	}

	button {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		width: 100%;
		border-radius: 13px;
		height: 56px;
		border: none;
		outline: none;
		cursor: pointer;
	}
}

.coef-slider {
	width: 280px;
}

.coef-item {
	border-radius: 12px;
	background: #191b26;
	height: 52px;
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 107.2%;
	padding: 17px 0 16px 0;
	border: none;
	outline: none;
}

.coef-list {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
}

.coef-btn {
	width: 52px;
	height: 52px;
	border-radius: 11px;
	background: #191b26;
	border: none;
	outline: none;
	color: #4d4f59;
	cursor: pointer;
	transition: all 0.3s ease-in-out;

	&:hover {
		background: #1d1f2a;
	}

	&:active {
		background: #20222d;
		color: #ffffff;
	}
}

.dice-game {
	border-radius: 31px;
	background: #151721;
	padding: 28px 28px 52px 28px;
	position: relative;
	margin-top: 24px;

	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}

	.game-header {
		position: absolute;
		left: 28px;
		top: 28px;
	}
}

.dice-wrapper {
	max-width: 704px;
	margin: 0 auto;
}

.dice-roll {
	display: flex;
	align-items: center;
	justify-content: space-between;

	&.loose {
		span {
			box-sizing: border-box;
			border: 2px solid #1c1f2c;
			border-radius: 20px;
			background: linear-gradient(180deg, #151721, #eb4959 100%);
		}
	}

	&.win {
		span {
			box-sizing: border-box;
			border: 2px solid #1c1f2c;
			border-radius: 20px;
			background: linear-gradient(180deg, #151721, #0fc351 100%);
		}
	}

	span {
		display: inline-block;
		padding: 24px 31px 19px 31px;
		color: #ffffff;
		font-family: Google Sans;
		font-size: 80px;
		font-weight: 700;
		line-height: 131.2%;
		box-sizing: border-box;
		border: 2px solid rgb(28, 31, 44);
		border-radius: 20px;
		background: linear-gradient(180deg, rgb(21, 23, 33), rgb(27, 30, 43) 100%);
	}
}

.dice-game-inputs {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin-top: 24px;

	.game-input-wrapper {
		width: 100%;
	}
}

.maybe-win {
	width: 100%;
	border-radius: 8px;
	background: linear-gradient(180deg, #ffce0033, #ffa61033 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9.5px 27px;
	margin-top: 48px;

	.maybe-win-value {
		display: flex;
		align-items: center;
		gap: 8px;

		span {
			background: linear-gradient(180deg, #ffce00, #ffa610);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			font-family: Google Sans;
			font-size: 16px;
			font-weight: 700;
			line-height: 127%;
			letter-spacing: 0%;
			text-align: left;
		}
	}

	p {
		color: #ffffff99;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
		letter-spacing: 0%;
	}
}

.dice-btns {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 16px;

	button {
		border-radius: 13px;
		width: 100%;
		height: 56px;
		border: none;
		outline: none;
		color: #ffffff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		cursor: pointer;
	}

	.less-btn {
		background: linear-gradient(180deg, #ff6264, #cd2549 119.444%);
	}

	.more-btn {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.agreement-page {
	.group-header {
		margin-top: 44px;
		padding-bottom: 16px;
	}

	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.agreement-title {
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;
	margin: 24px 0;
}

.agreement-text {
	color: #767880;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 170%;
}

.tournment-info {
	max-width: 457px;
	width: 100%;
	border-radius: 20px;
	background: #151721;
	padding: 18px 18px 16px 18px;

	h3 {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
	}

	p {
		color: #767880;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 131%;
		margin-top: 12px;
		margin-bottom: 26px;
	}

	button {
		border-radius: 13px;
		background: #1d1f2c;
		width: 100%;
		height: 52px;
		border: none;
		outline: none;
		cursor: pointer;
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;

		&:active {
			background: #1d1f2c;
		}

		&:hover {
			background: #232532;
		}
	}
}

.tournament-table-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 20px;
	background: #151721;
	padding: 26px 72.21px 25px 36.11px;
	margin-top: 20px;

	div {
		display: flex;
		align-items: center;

		&:nth-child(1) {
			gap: 61.17px;
		}

		gap: 148.17px;

		p {
			color: #33353e;
			font-family: Google Sans;
			font-size: 20px;
			font-weight: 500;
			line-height: 25px;
			letter-spacing: 0%;
			text-align: left;
		}
	}
}

.tournament-table-body {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wallet-history-wrapper {
	display: none;
}

.wallet-modal {
	&.history {
		width: 559px;

		.wallet-menu {
			width: 100%;
		}

		.payment-systems {
			display: none;
		}
	}
}

.tournament-table-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 48px 16px 36px;
	border-radius: 20px;
	background: #151721;

	.left {
		display: flex;
		gap: 72px;

		span {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 52px;
			height: 52px;
			border-radius: 12px;
			background: #1d1f2c;
			color: #767880;
			font-family: Google Sans;
			font-size: 20px;
			font-weight: 500;
			line-height: 25px;
		}

		div {
			display: flex;
			align-items: center;
			gap: 16px;
			color: #f9fbff;
			font-family: Google Sans;
			font-size: 20px;
			font-weight: 500;
			line-height: 25px;

			img {
				width: 44px;
				height: 44px;
				object-fit: contain;
				border-radius: 15px;
			}
		}
	}

	.right {
		display: flex;
		align-items: center;
		gap: 79px;

		.score {
			background: linear-gradient(180deg, #ffce00, #ffa610);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 700;
			line-height: 127%;
			display: flex;
			align-items: center;
			gap: 4px;
		}

		.reward {
			background: linear-gradient(180deg, #ff6264, #cd2549);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			font-family: Google Sans;
			font-size: 20px;
			font-weight: 500;
			line-height: 25px;
			display: flex;
			align-items: center;
			gap: 4px;
		}
	}
}

.tournament-conditions {
	display: flex;
	gap: 12px;
}

.timer-count {
	p {
		color: #fab0be;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
	}
}

.timer-compare {
	display: flex;
	align-items: center;
}

.timer {
	.separator {
		color: rgb(250, 176, 190);
		font-family: Google Sans;
		font-size: 36.81px;
		font-weight: 700;
		line-height: 131.2%;
		margin: 0 15px;
		margin-bottom: 38px;
	}
}

.time-type {
	color: #fab0be;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;
	text-align: center;
	margin-top: 12px;
}

.faq-page {
	margin-top: 44px;
	margin-bottom: 36px;

	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.faq-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	border-radius: 14px;
	background: #151721;

	.group-icon {
		background: #1d1f2c;
		width: 48px;
		height: 48px;
	}

	.group-title {
		h3 {
			font-size: 18px;
		}
	}

	span {
		color: #4d4f59;
	}
}

.faq-item-body {
	p {
		color: #767880;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 170%;
		margin-top: 20px;
	}
}

.faq-wrapper {
	margin-top: 36px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.modal-layout {
	background: #0a0a0ecc;
	backdrop-filter: blur(14px);
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	display: none;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
	min-height: 100vh;
	padding: 20px 0;
}

.wallet-modal {
	border-radius: 20px;
	background: #101118;
	display: flex;
	width: 818px;
	overflow: hidden;
	margin: auto; 
	min-height: calc(100vh - 300px);

	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.wallet-history-modal {
	display: none;
	width: 559px;
	border-radius: 20px;
	overflow: hidden;
	border-radius: 14px;
	background: #151721;

	.wallet-menu {
		width: 100%;
	}

	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.wallet-history-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border-bottom: 1px solid #1d1f2c;
	margin-top: 40px;
	margin-bottom: 34px;

	button {
		font-family: Google Sans;
		color: #4d4f59;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		width: fit-content;
		background: transparent;
		outline: none;
		border: none;
		position: relative;
		cursor: pointer;
		padding-bottom: 14px;

		&.active {
			color: #ffffff;

			&::after {
				content: "";
				display: block;
				width: 100%;
				height: 4px;
				border-radius: 18px;
				background: linear-gradient(180deg, #ffce00, #ffa610 100%);
				position: absolute;
				bottom: -1px;
			}
		}
	}
}

.deposite-history {
	display: none;

	.table-header {
		padding: 16px 53px 18px 24px;
		border-radius: 13px;
		background: #191b26;
		display: grid;
		grid-template-columns: repeat(3, 1fr);

		p {
			color: #33353e;
			font-family: Google Sans;
			font-size: 16px;
			font-weight: 500;
			line-height: 20px;

			&:nth-child(2) {
				margin-left: 10px;
			}

			&:nth-child(3) {
				justify-self: end;
			}
		}
	}

	.table-body {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-top: 12px;

		.table-item {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			padding: 18px 24px 16px 24px;
			border-radius: 13px;
			background: #1d1f2c;

			p {
				border-radius: 13px;
				background: #1d1f2c;
				color: #f9fbff;
				font-family: Google Sans;
				font-size: 16px;
				font-weight: 500;
				line-height: 20px;

				&:nth-child(3) {
					justify-self: end;
				}
			}
		}
	}
}

.agreement-page {
	.group-title {
		&.sub {
			margin-top: 44px;
			margin-bottom: 32px;
		}
	}
}

.withdraw-history {
	.table-header {
		padding: 16px 53px 18px 24px;
		border-radius: 13px;
		background: #191b26;
		display: grid;
		grid-template-columns: repeat(4, 1fr);

		p {
			color: #33353e;
			font-family: Google Sans;
			font-size: 16px;
			font-weight: 500;
			line-height: 20px;

			&:nth-child(4) {
				justify-self: end;
			}
		}
	}

	.table-body {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-top: 12px;

		.table-item {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			padding: 18px 24px 16px 24px;
			border-radius: 13px;
			background: #1d1f2c;
			gap: 10px;

			p {
				border-radius: 13px;
				background: #1d1f2c;
				color: #f9fbff;
				font-family: Google Sans;
				font-size: 16px;
				font-weight: 500;
				line-height: 20px;

				&:nth-child(2) {
					margin-left: -15px;
				}

				&:nth-child(4) {
					justify-self: end;
					width: 87px;

					&.completed {
						background: linear-gradient(180deg, #ffce00, #ffa610);
						-webkit-background-clip: text;
						-webkit-text-fill-color: transparent;
						background-clip: text;
					}

					&.waiting {
						color: #767880;
					}

					&.canceled {
						background: linear-gradient(180deg, #ff6264, #cd2549);
						-webkit-background-clip: text;
						-webkit-text-fill-color: transparent;
						background-clip: text;
					}
				}
			}
		}
	}
}

.wallet-modal {
	display: none;
}

.wallet-menu {
	width: 50%;
	border-radius: 0px 30px 30px 0px;
	background: #151721;
}

.wallet-menu {
	padding: 35px 40px 36px 40px;
}

.provider-select-body {
	position: absolute;
	top: 60px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	z-index: 2;
	border-radius: 15px;
	background: #191b26;
	padding: 36px 24px 33px 24px;
}

.faq-item-header svg.active {
	transform: rotate(90deg);
	transition: transform 0.3s;
}

.provider-option {
	color: #4d4f59;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;
	cursor: pointer;
	transition: all 0.3s ease-in-out;

	&:hover {
		color: #fff;
	}
}

.wallet-type-select {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 19px;

	button {
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
		border-radius: 13px;
		background: #1d1f2c;
		height: 56px;
		outline: none;
		border: none;
		cursor: pointer;

		&:hover {
			border-radius: 13px;
			background: #232532;
		}

		&.active {
			border-radius: 13px;
			background: linear-gradient(180deg, #ffce00, #ffa610 100%);
			color: #fff;
		}

		&.wallet-history-btn {
			grid-column: span 2;
		}
	}
}

.wallet-wariant-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;

	h3 {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 20px;
		font-weight: 500;
		line-height: 25px;
	}
}

.modal-close-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 13px;
	background: #1d1f2c;
	color: #4d4f59;
	cursor: pointer;
	transition: all 0.3s ease-in-out;

	&:hover {
		background: #1d1f2a;
	}

	&:active {
		background: #20222d;
		color: #fff;
	}
}

.menu-close-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 13px;
	background: #1d1f2c;
	color: #4d4f59;
	cursor: pointer;
	transition: all 0.3s ease-in-out;

	img {
		width: 20px;
	}

	&:hover {
		background: #1d1f2a;
	}

	&:active {
		background: #20222d;
		color: #fff;
	}
}

.history-close {
	display: flex !important;
}

.payment-system-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border-radius: 12px;
	background: #191b26;
	opacity: 0.84;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 8px 12px 8px 16px;

	&.active {
		background: #242634;
		opacity: 0.84;

		.payment-system-icon {
			background: #35384c;
		}
	}

	&:hover {
		border-radius: 12px;
		background: #1f212c;
		opacity: 0.84;

		.payment-system-icon {
			border-radius: 9px;
			background: #2a2c39;
		}
	}
}

.deposite-block,
.withdraw-block {
	padding: 36px 40px 36px 40px;
	width: 50%;
	display: flex;
	flex-direction: column;
}

.payment-systems {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}

.payment-system-procent {
	color: #4d4f59;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 23px;
}

.payment-system-title {
	display: flex;
	align-items: center;
	gap: 8px;

	p {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
	}

	.payment-system-icon {
		border-radius: 9px;
		background: #1d1f2c;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

.wallet-confirm {
	width: 100%;
	height: 56px;
	border-radius: 13px;
	background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 23px;
	border: none;
	outline: none;
	cursor: pointer;
	margin-top: 28px;

	&:hover {
		background: linear-gradient(180deg, #f1a91c, #dc8f0c 100%);
	}

	&:active {
		background: linear-gradient(180deg, #31eb72, #24be64 100%);
	}
}

.wallet-result {
	color: #4d4f59;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;

	span {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 15px;
	}
}

.deposite-body {
	flex-grow: 1;
}

.table-history {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.wallet-history-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bonus-page {
	padding-top: 24px;

	.group-icon {
		background: linear-gradient(163.3deg, #fb7689 11.512%, #ea5a76 95.375%);
	}
}

.bonus-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	padding: 7px 12px;

	span {
		border-radius: 6px;
		background: #5f20ba;
		color: #c39cff;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
	}

	p {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 16px;
		font-weight: 500;
		line-height: 127%;
	}
}

.bonus-little-cards {
	display: flex;
	align-items: center;
	gap: 16px;
}

.bonus-little-card {
	padding: 20px 28px 34px 28px;
	width: 100%;
	border-radius: 18px;

	.bonus-text {
		margin-top: 12px;
	}
}

.bonus-text {
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 20px;
	font-weight: 500;
	line-height: 148%;
	letter-spacing: 0%;
	text-align: left;
}

.welcome-bonus {
	background: linear-gradient(183.26deg, #9a5aee 9.799%, #6e43da 96.002%);

	.bonus-title {
		background: #7a3fdc;
	}
}

.promotion-bonus {
	background: linear-gradient(184deg, #ffce00 16.821%, #ffa610 85.407%);

	.bonus-title {
		background: #10a44c;

		span {
			background: #0e9040;
		}
	}
}

.rang-bonus {
	background: linear-gradient(181.94deg, #ff6062 2.432%, #cd2549 98.483%);

	.bonus-title {
		background: #e83a55;

		span {
			background: #c92840;
		}
	}
}

.bonus-btn {
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;
	padding: 16px 54px 17px 54px;
	border-radius: 13px;
	border: none;
	outline: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	margin-top: 28px;

	&.btn-tg {
		background: #3fa0ef;

		&:hover {
			background: #53affa;
		}

		&:active {
			background: #68bafc;
		}
	}
}

.bonus-big-cards {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 16px;

	.bonus-text {
		margin-top: 16px;
	}
}

.bonus-big-card {
	background-size: cover;
	width: 100%;
	padding: 20px 28px 24px 28px;
	border-radius: 18px;

	.bonus-title {
		.bonus-btn {
			margin-top: 28px;
		}
	}
}

.tg-card {
	background: url("/assets/images/tg-bg.png") no-repeat;

	.bonus-title {
		background: #0b8ad1;

		span {
			background: #076fa9;
		}
	}

	&.btn-tg {
		background: #3fa0ef;

		&:hover {
			background: #53affa;
		}

		&:active {
			background: #68bafc;
		}
	}
}

.vk-card {
	background: url("/assets/images/vk-bg.png") no-repeat;

	.bonus-title {
		background: #1062c9;

		span {
			background: #004aa7;
		}
	}

	.btn-vk {
		background: #3e72d6;

		&:hover {
			background: #4d81e4;
		}

		&:active {
			background: #5d8eea;
		}
	}
}

.bonus-fields-cards {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 40px;
}

.bonus-fields-card {
	border-radius: 18px;
	background: #191b26;
	padding: 20px 28px 20px 28px;
	width: 100%;

	.btn-primary {
		margin-top: 20px;
	}

	.maybe-win {
		margin-top: 30px;
		height: 42px;
	}

	.game-input-wrapper {
		margin-top: 20px;
	}

	&.bonus-activation {
		.btn-primary {
			margin-top: 12px;
		}
	}
}

.social-connect-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 13px;
	background: #1d1f2c;
	padding: 8px 8px 8px 16px;

	.btn-primary {
		width: 129px;
		height: 48px;
	}

	.social-connect-icon {
		width: 32px;
		height: 32px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		background: linear-gradient(180deg, #5daff2, #3481c0 100%);

		img {
			width: 20px;
			height: 20px;
		}
	}
}

.social-name {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #4d4f59;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;
}

.profile-page {
	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.profile-block {
	display: flex;
	gap: 22px;
	padding: 28px 30px;
	border-radius: 25px;
	background: #151721;

	.profile-block-title {
		margin-bottom: 12px;
	}

	p {
		color: #33353e;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
	}

	.profile-img {
		width: 176px;
		height: 176px;
		border-radius: 15px;
	}
}

.btn-primary {
	background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;
	width: 100%;
	height: 56px;
	border-radius: 12px;
	border: none;
	outline: none;
	cursor: pointer;

	&:hover {
		background: linear-gradient(180deg, #f1a91c, #dc8f0c 100%);
	}

	&:active {
		background: linear-gradient(180deg, #f1a91c, #dc8f0c 100%);
	}
}

.profile-exit {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #943428;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	margin-top: 68px;

	&:hover {
		color: #b74233;
	}

	&:active {
		color: #c84b3b;
	}
}

.profile-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.avatar-change {
	grid-column: span 2;
	border-radius: 25px;
	background: #151721;
	padding: 28px 41px 32px 48px;
}

.profile-block-title {
	color: #f9fbff;
	font-family: Google Sans;
	font-size: 18px;
	font-weight: 500;
	line-height: 127%;

	span {
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 700;
		line-height: 23px;
	}
}

.border-container {
	position: relative;
	display: inline-block;

	&.active {
		&::before {
			content: "";
			position: absolute;
			top: 1px;
			left: 1px;
			right: 1px;
			bottom: 1px;
			border: 3px solid #ffa610ff;
			border-radius: 15px;
		}
	}

	&:active {
		&::before {
			content: "";
			position: absolute;
			top: 1px;
			left: 1px;
			right: 1px;
			bottom: 1px;
			border: 3px solid #ffa610ff;
			border-radius: 15px;
		}
	}
}

.avatars-list {
	display: flex;
	align-items: center;
	margin-top: 31px;
	gap: 8px;

	.border-container {
		position: relative;
		display: inline-block;

		&.active {
			&::before {
				content: "";
				position: absolute;
				top: 0px;
				left: 0px;
				right: 0px;
				bottom: 1px;
				border: 3px solid #ffa610ff;
				border-radius: 15px;
				z-index: 2;
			}

			button {
				opacity: 1;
			}
		}

		&:active {
			&::before {
				content: "";
				position: absolute;
				top: 0px;
				left: 0px;
				right: 0px;
				bottom: 1px;
				border: 3px solid #ffa610ff;
				border-radius: 15px;
				z-index: 2;
			}

			button {
				opacity: 1;
			}
		}
	}

	button {
		position: relative;
		width: 118px;
		height: 118px;
		background: transparent;
		border-radius: 15px;
		border: none;
		outline: none;
		cursor: pointer;
		opacity: 0.12;

		&:hover {
			opacity: 0.42;
		}

		img {
			width: 100%;
			height: 100%;
		}
	}
}

.social-connect,
.promo-create,
.statistic {
	padding: 28px 32px 28px 32px;
	border-radius: 25px;
	background: #151721;

	.profile-block-title {
		margin-bottom: 20px;
	}
}

.referal-page {
	.group-icon {
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
	}
}

.promo-create {
	.game-input-wrapper {
		margin-bottom: 8px;
	}

	.btn-primary {
		margin-top: 16px;
	}
}

.statistic-field-wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 8px;
}

.statistic-field {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 16px 14px 16px;
	border-radius: 12px;
	background: #1d1f2c;

	p {
		&:nth-child(1) {
			color: #4d4f59;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 127%;
		}

		&:nth-child(2) {
			color: #f9fbff;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 127%;
		}
	}
}

.level-system {
	grid-column: span 3;
	border-radius: 25px;
	background: #151721;
	padding: 28px 28px 28px 32px;
}

.level-card {
	border-radius: 17px;
	background: #191b26;
	padding: 12px;
	min-width: 352px;

	&:nth-child(1) {
		.bonus-title {
			background: #e83a55;

			span {
				background: #b02136;
			}
		}
	}

	&:nth-child(2) {
		.bonus-title {
			background: #7a3fdc;

			span {
				background: #5f20ba;
			}
		}
	}

	&:nth-child(3) {
		.bonus-title {
			background: #10a44c;

			span {
				background: #10843c;
			}
		}
	}

	&:nth-child(4) {
		.bonus-title {
			background: #358dd6;

			span {
				background: #1569af;
			}
		}
	}

	&:nth-child(5) {
		.bonus-title {
			background: #ff9b4a;

			span {
				background: #e37318;
			}
		}
	}
}

.level-list {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 22px;
	padding-bottom: 5px;
	position: relative;
	overflow: hidden;

	&::after {
		content: '';
		position: static;
		width: 0;
		height: 0;
		background: transparent;
		filter: none;
	}

	&::-webkit-scrollbar {
		width: 3px;
		height: 3px;
		background: #101118;
	}

	&::-webkit-scrollbar-thumb {
		background: #191b26;
	}
}

.exp-info {
	color: #4d4f59;
	font-family: Google Sans;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
}

.level-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px;
}

.level-value-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;

	.level-value-label {
		color: #ffffff;
		font-family: Google Sans;
		font-size: 20px;
		font-weight: 700;
		line-height: 25px;
	}

	.level-value {
		color: #ffffff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
		display: flex;
		align-items: center;
		gap: 3.14px;
	}
}

.level-pluses {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;

	div {
		border-radius: 8px;
		width: 100%;
		padding: 7px 20px;

		&:nth-child(1) {
			background: #e83a5533;

			p {
				background: linear-gradient(180deg, #ff6264, #cd2549);
				-webkit-background-clip: text;
				-webkit-text-fill-color: transparent;
				background-clip: text;
				font-family: Google Sans;
				font-size: 18px;
				font-weight: 500;
				line-height: 127%;
				text-align: center;
			}
		}

		&:nth-child(2) {
			background: #3a74e833;

			p {
				background: linear-gradient(180deg, #ffce00, #ffa610);
				-webkit-background-clip: text;
				-webkit-text-fill-color: transparent;
				background-clip: text;
				font-family: Google Sans;
				font-size: 18px;
				font-weight: 500;
				line-height: 127%;
				text-align: center;
			}
		}
	}
}

.level-bonus-wide {
	margin-top: 12px;
	background: #27ae6033;
	border-radius: 8px;
	padding: 7px 20px;
	width: 100%;

	p {
		background: linear-gradient(180deg, #5fff85, #2ba567);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
		text-align: center;
	}
}


.referal-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin-bottom: 20px;
}

.referal-side {
	min-width: 344px;
}

.referal-link {
	border-radius: 15px;
	background: #151721;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 8px 12px 8px 20px;
	width: 344px;

	input {
		border-radius: 15px;
		background: #151721;
		width: 100%;
		height: 64px;
		border: none;
		outline: none;
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
	}

	button {
		min-width: 48px;
		height: 48px;
		border: none;
		outline: none;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 15px;
		background: linear-gradient(180deg, #ffce00, #ffa610 100%);
		cursor: pointer;

		&:hover {
			background: linear-gradient(180deg, #7daaff, #5c75f1 100%);
		}

		&:active {
			background: linear-gradient(180deg, #7ba9ff, #7287f3 100%);
		}
	}
}

.chart-container {
	padding: 55px 75px 27px 44px;
	background: #151721;
	border-radius: 25px;
	flex: 1;

	#myChart {
		width: 100% !important;
	}
}

.statistic-wrapper {
	padding: 24px;
	border-radius: 22px;
	background: #151721;
	margin-top: 12px;
}

.statistic-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.statistic-item {
	padding: 16px 28px;
	border-radius: 12px;
	background: #1d1f2c;

	p {
		&:nth-child(1) {
			color: #4d4f59;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 127%;
		}

		&:nth-child(2) {
			color: #f9fbff;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 127%;
			margin-top: 8px;
		}
	}
}

.referal-table-header,
.referal-table-item {
	display: grid;
	grid-template-columns: repeat(5, 1fr);

	p {
		&:nth-child(5) {
			justify-self: end;
		}
	}
}

.referal-table-item {
	p {
		&:nth-child(4) {
			margin-left: 30px;
		}
	}
}

.referal-table-header {
	p {
		&:nth-child(2) {
			margin-left: 30px;
		}

		&:nth-child(3) {
			margin-left: 10px;
		}

		&:nth-child(4) {
			margin-left: 15px;
		}

		&:nth-child(5) {
			justify-self: end;
		}
	}
}

.referal-table-wrapper {
	padding: 36px 44px;
	border-radius: 25px;
	background: #151721;
}

.referal-table-header {
	border-radius: 15px;
	background: #191b26;
	padding: 22px 40px 19px 40px;
	margin-bottom: 12px;

	p {
		color: #33353e;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
	}
}

.referal-table-item {
	border-radius: 15px;
	background: #1d1f2c;
	padding: 21px 40px 20px 40px;

	p {
		/* Прототип/18 */
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 23px;
	}
}

.referal-table-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.referal-arrow-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

.referal-table-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.referal-table-text {
	h3 {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
	}

	p {
		color: #4d4f59;
		font-family: Google Sans;
		font-size: 18px;
		font-weight: 500;
		line-height: 127%;
	}
}

.tournament-page {
	.group-header {
		margin-top: 24px;
	}

	.group-icon {
		background: linear-gradient(180deg, #ff6164, #cd2549 119.444%);
	}
}

.tournament-time {
	border-radius: 20px;
	background: linear-gradient(180.55deg, #fe5e62 7.851%, #cd2549 98.731%);
	padding: 24px 28px 28px 28px;

	h3 {
		color: #f9fbff;
		font-family: Google Sans;
		font-size: 34px;
		font-weight: 700;
		line-height: 127%;
		margin: 16px 0;
	}

	.prize-side {
		.prize-label {
			color: #f18da0;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 127%;
			margin-bottom: 16px;
		}

		.prize-value {
			display: inline-block;
			color: #f9fbff;
			font-family: Google Sans;
			font-size: 20px;
			font-weight: 700;
			line-height: 25px;
			letter-spacing: -2%;
			border-radius: 12px;
			background: #ec3f5a;
			padding: 14px 39.5px 13px 39.5px;
		}
	}

	.bonus-title {
		background: #e93955;

		span {
			background: #ca2840;
		}
	}
}

.border-wrapper {
	&.second-place {
		background: #79787e;
		background: linear-gradient(190deg,
			rgba(121, 120, 126, 1) 0%,
			rgba(25, 27, 38, 1) 86%);
		height: 180px;
	}

	&.first-place {
		background: rgb(255, 162, 21);
		background: linear-gradient(180deg,
			rgba(255, 162, 21, 1) 0%,
			rgba(25, 27, 38, 1) 92%);
		height: 200px;
	}

	&.third-place {
		background: #79787e;
		background: rgb(22, 23, 33);
		background: linear-gradient(0deg,
			rgba(22, 23, 33, 1) 14%,
			rgba(199, 102, 60, 1) 100%);
		height: 168px;
	}

	padding: 4px;
	border-radius: 23px;
	width: 100%;
}

.tournament-place {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background: #191b26;
	display: flex;
	flex-direction: column;

	.avatar-place {
		flex-grow: 1;

		img {
			width: 96px;
			height: 96px;
			border-radius: 50%;
			object-fit: contain;
			margin-top: -48px;
		}

		p {
			color: #f9fbff;
			font-family: Google Sans;
			font-size: 20px;
			font-weight: 500;
			line-height: 25px;
			margin-top: 16px;
		}
	}
}

.result-place-value {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 24px;

	div {
		display: flex;
		gap: 4px;
		align-items: center;
		border-radius: 8px;
		padding: 7px 12px;

		&:nth-child(1) {
			border-radius: 8px;
			background: #0f0e0e33;

			p {
				background: linear-gradient(180deg, #ff6264, #cd2549);
				-webkit-background-clip: text;
				-webkit-text-fill-color: transparent;
				background-clip: text;
				font-family: Google Sans;
				font-size: 16px;
				font-weight: 700;
				line-height: 127%;
				letter-spacing: 0%;
				text-align: left;
			}
		}

		&:nth-child(2) {
			background: #3a74e833;

			p {
				background: linear-gradient(180deg, #ffce00, #ffa610);
				-webkit-background-clip: text;
				-webkit-text-fill-color: transparent;
				background-clip: text;
				font-family: Google Sans;
				font-size: 16px;
				font-weight: 700;
				line-height: 127%;
			}
		}
	}
}

.avatar-place {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.mobile-menu-opened {
	display: none;
}

.timer-border {
	background: rgb(255, 255, 255);
	background: linear-gradient(180deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(222, 57, 82, 1) 84%);
	border-radius: 16.2px;
	padding: 3px;

	span {
		border-radius: 16.2px;
		background: rgb(255, 115, 122);
		background: linear-gradient(0deg,
			rgba(255, 115, 122, 1) 0%,
			rgba(220, 53, 81, 1) 90%);
	}
}

.tournament-places {
	display: flex;
	align-items: end;
	gap: 12px;
	margin-top: 87px;
	margin-bottom: 52px;
}

.tournament-time {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.timer-count {
	display: flex;
	gap: 6px;

	span {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 63px;
		height: 96px;
		border-radius: 16.2px;
		background: rgb(255, 115, 122);
		background: linear-gradient(0deg,
			rgba(255, 115, 122, 1) 0%,
			rgba(220, 53, 81, 1) 90%);
		color: #ffffff;
		font-family: Google Sans;
		font-size: 36.81px;
		font-weight: 700;
		line-height: 131.2%;
		position: relative;
	}
}

@media (max-width: 1620px) {
	.container {
		max-width: 100%;
		padding: 0 120px;
	}

	.slots-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.avatars-list {
		overflow-x: auto;

		&::-webkit-scrollbar {
			width: 3px;
			height: 3px;
			background: #101118;
		}

		&::-webkit-scrollbar-thumb {
			background: #191b26;
		}
	}

	.all-slots-wrapper {
		height: 586px;
	}
}

@media (max-width: 1280px) {
	.container {
		max-width: 980px;
		padding: 0;
	}

	.profile-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	.bonus-little-cards {
		align-items: normal;
	}

	.original-games-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	.game-filter-wrapper {
		flex-direction: column;
	}

	.nav {
		display: none;
	}

	.sidebar {
		display: none;
	}
}

@media (max-width: 1280px) {
	.container {
		max-width: 980px;
		padding: 0;
	}

	.bonus-little-cards {
		align-items: normal;
	}

	.original-games-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	.game-filter-wrapper {
		flex-direction: column;
	}

	.nav {
		display: none;
	}

	.sidebar {
		display: none;
	}

	.game-filter-btns {
		overflow-x: auto;
		gap: 8px;
		width: 100%;
	}

	body {
		padding-bottom: 78.72px;
	}

	.mobile-menu {
		display: flex;
		align-items: end;
		gap: 21px;
		justify-content: space-between;
		width: 100%;
		background: rgb(13, 14, 22);
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 5;
		padding: 3px 24px 12px 24px;

		span {
			border-radius: 50%;
			height: 44px;
			width: 44px;
			display: flex;
			align-items: center;
			justify-content: center;
			background: linear-gradient(180deg, #ffce00, #ffa610 100%);
		}

		a {
			img {
				width: 20px;
			}

			display: flex;
			align-items: center;
			flex-direction: column;
			gap: 4px;
		}

		p {
			color: #33353e;
			font-family: Google Sans;
			font-size: 12px;
			font-weight: 500;
			line-height: 131%;
		}
	}

	.mobile-menu-opened {
		display: none;
		position: fixed;
		bottom: 78.72px;
		border-radius: 24px 24px 0px 0px;
		padding: 28px 28px 20px 28px;
		width: 100%;
		background: #0d0e16;
		z-index: 10;
		transform: translateY(100%);
		transition: transform 0.3s ease;

		&.open {
			display: block;
			transform: translateY(0);
		}

		.group-header {
			margin-top: 0;
		}

		.group-icon {
			background: linear-gradient(180deg, #fe6753, #da3a28 100%);
		}

		.link-list {
			display: flex;
			flex-direction: column;
			gap: 8px;

			a {
				color: #4d4f59;
				font-family: Google Sans;
				font-size: 12px;
				font-weight: 700;
				line-height: 15px;
				text-decoration: none;
				display: flex;
				align-items: center;
				gap: 8px;
				width: 100%;
				padding: 12px 16px;
				border-radius: 10px;
				background: #191b26;
				opacity: 0.8;

				svg {
					color: #f9fbff;
					width: 20px;
					height: 20px;
				}

				&.active {
					color: #f9fbff;
					font-family: Google Sans;
					font-size: 12px;
					font-weight: 700;
					line-height: 15px;
				}
			}
		}
	}
}

@media (max-width: 1020px) {
	.slots-grid {
		grid-template-columns: repeat(4, 1fr);

		a {
			img {
				width: 100%;
			}
		}
	}

	.referal-wrapper {
		width: 100%;
		flex-direction: column;
	}

	.referal-side {
		width: 100%;
	}

	.referal-table-header,
	.referal-table-item {
		padding: 15px 20px 14px 20px;
		grid-template-columns: repeat(3, 1fr);

		& p {
			font-size: 12px;

			&:nth-child(2),
			&:nth-child(5) {
				display: none;
			}
		}
	}

	.chart-container {
		padding: 20px;
		width: 100%;
		/* Задает ширину контейнера */
		height: 100%;
		/* Задает высоту контейнера */
	}

	#myChart {
		width: 100% !important;
		/* Убедитесь, что canvas занимает всю ширину */
		height: 290px !important;
		/* Автоматическая высота для поддержания пропорций */
	}

	.referal-link {
		width: 100%;
	}
}

@media (max-width: 980px) {
	.container {
		max-width: 100%;
		padding: 0 20px;
	}

	.all-slots-wrapper {
		height: 488px;
	}

	.group-nav {
		.arrow-btn {
			display: none;
		}
	}

	.agreement-title {
		font-size: 12px;
		margin: 12px 0;
	}

	.profile-wrapper {
		grid-template-columns: 1fr;
	}

	.avatar-change {
		grid-column: span 1;
	}

	.level-system {
		grid-column: span 1;
		padding: 20px;
	}

	.agreement-text {
		font-size: 12px;
	}

	.slots-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.slots-grid-toolbar {
		flex-direction: column;
		width: 100%;

		.providers-select-wrapper {
			min-width: 100%;
		}
	}

	.second-place {
		order: 2;
	}

	.first-place {
		order: 1;
	}

	.third-place {
		order: 3;
	}

	.bonus-little-cards {
		align-items: normal;
		flex-wrap: wrap;
	}

	.bonus-big-cards {
		flex-wrap: wrap;
	}

	.bonus-title {
		padding: 5px 8px;

		span {
			width: 18px;
			height: 18px;
		}

		svg {
			height: 10.29px;
		}

		p {
			font-size: 12px;
		}
	}

	.bonus-btn {
		width: 100%;
		margin-top: 18px;
		padding: 12px 54px 13px 54px;
		font-size: 12px;
	}

	.group-title {
		h3 {
			font-size: 16px;
		}

		.group-icon {
			width: 40px;
			height: 40px;

			img {
				width: 22px;
			}
		}
	}

	.bonus-text {
		font-size: 14px;
	}

	.original-games-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	.game-filter-wrapper {
		flex-direction: column;
		display: flex;
		align-items: start;
		justify-content: space-between;
		margin-top: 16px;
		gap: 12px;
	}

	.deposite-history {
		.table-header {
			padding: 16px 53px 18px 24px;
			border-radius: 13px;
			background: #191b26;
			display: grid;
			grid-template-columns: repeat(3, 1fr);

			p {
				color: #33353e;
				font-family: Google Sans;
				font-size: 16px;
				font-weight: 500;
				line-height: 20px;

				&:nth-child(2) {
					margin-left: 10px;
				}

				&:nth-child(3) {
					justify-self: end;
				}
			}
		}

		.table-body {
			display: flex;
			flex-direction: column;
			gap: 12px;
			margin-top: 12px;

			.table-item {
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				padding: 18px 24px 16px 24px;
				border-radius: 13px;
				background: #1d1f2c;

				p {
					border-radius: 13px;
					background: #1d1f2c;
					color: #f9fbff;
					font-family: Google Sans;
					font-size: 16px;
					font-weight: 500;
					line-height: 20px;

					&:nth-child(3) {
						justify-self: end;
					}
				}
			}
		}
	}

	.nav {
		display: none;
	}

	.sidebar {
		display: none;
	}

	.modal-layout {
		padding: 0 16px;
		height: 100%;
	}

	.wallet-result {
		margin-top: 44px;
		font-size: 12px;

		span {
			font-size: 12px;
		}
	}

	.modal-close-btn {
		width: 40px;
		height: 40px;

		img {
			width: 20px;
		}
	}

	.wallet-modal {
		flex-direction: column;
		width: 100%;
	}

	.payment-systems {
		flex-direction: row;
		overflow-x: auto;
	}

	.wallet-wariant-title {
		display: none;
	}

	.wallet-type-select {
		button {
			height: 44px;
			font-size: 12px;
		}
	}

	.wallet-menu {
		padding: 20px 14px 0px 14px;
		width: 100%;
		background: transparent;
	}

	.deposite-block,
	.withdraw-block {
		padding: 0 14px 24px 14px;
		width: 100%;
	}

	.bonus-fields-cards {
		flex-wrap: wrap;
	}

	.age-alert {
		order: 3;

		img {
			width: 32px;
			height: 32px;
		}

		p {
			font-size: 12px;
		}
	}

	.footer-socials {
		order: 2;
		gap: 8px;

		a {
			width: 32px;
			height: 32px;
			border-radius: 7.11px;

			img {
				width: 16px;
			}
		}
	}

	.hover-slots {
		display: none !important;
	}

	.footer-logo {
		order: 1;

		img {
			width: 106px;
			height: 30px;
		}
	}

	.game-input {
		input {
			height: 40px;
			font-size: 12px;
		}
	}

	.btn-primary {
		height: 40px;
		font-size: 12px;
	}

	.bonus-fields-card {
		.game-input-wrapper {
			margin-top: 8px;
		}
	}

	.game-input-wrapper {
		p {
			font-size: 12px;
		}
	}

	.maybe-win {
		margin-top: 16px;
		height: 32px;
		padding: 5px 12px;

		p {
			font-size: 12px;
		}

		& .maybe-win-value {
			span {
				font-size: 12px;
			}

			img {
				width: 18px;
			}
		}
	}

	.bonus-fields-card {
		.maybe-win {
			height: 32px;
			margin-top: 8px;
		}

		.btn-primary {
			margin-top: 8px;
		}
	}

	.tournment-info {
		max-width: 100%;
		width: 100%;
		border-radius: 20px;
		background: #151721;
		padding: 18px 18px 16px 18px;

		h3 {
			color: #f9fbff;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 127%;
		}

		p {
			color: #767880;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 131%;
			margin-top: 12px;
			margin-bottom: 26px;
		}

		button {
			border-radius: 13px;
			background: #1d1f2c;
			width: 100%;
			height: 52px;
			border: none;
			outline: none;
			cursor: pointer;
			color: #f9fbff;
			font-family: Google Sans;
			font-size: 18px;
			font-weight: 500;
			line-height: 23px;

			&:active {
				background: #1d1f2c;
			}

			&:hover {
				background: #232532;
			}
		}
	}

	.footer-bottom {
		flex-direction: column-reverse;
		align-items: start;
		gap: 20px;
	}

	.game-field-wrapper {
		flex-wrap: wrap;
		justify-content: center;
		max-width: 300px;
	}

	.coef-btn {
		min-width: 40px;
		width: 40px;
		height: 40px;
	}

	.coef-list {
		width: 300px;
	}

	.coef-item {
		font-size: 12px;
		padding: 13.5px 0 14.5px 0;
	}

	.avatar-change {
		padding: 20px;
	}

	.mines-counter,
	.candy-counter {
		padding: 10px 12px;
	}

	.game-wrapper {
		flex-direction: column-reverse;
	}

	.group-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin-bottom: 24px;

		.arrow-btn {
			display: flex;
			width: 40px;
			height: 40px;
		}
	}

	.game-input-select-btns {
		padding-right: 24px;

		button {
			width: 36px;
			height: 30px;
			font-size: 12px;
		}
	}

	.loader {
		img {
			width: 161px;
		}

		.loading-progress {
			width: 161px;
			height: 2px;
			margin-top: 16px;
		}
	}

	.game-right-side {
		border-radius: 12px;

		.group-header {
			display: flex;
		}
	}

	.tournament-table-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-radius: 20px;
		background: #151721;
		padding: 26px 72.21px 25px 36.11px;
		margin-top: 20px;

		.person-table-label {
			display: none;
		}

		div {
			display: flex;
			align-items: center;
			gap: 66.17px;

			p {
				font-size: 12px;
			}
		}
	}

	.tournament-table-item {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 48px 16px 36px;
		border-radius: 20px;
		background: #151721;

		.left {
			display: flex;
			gap: 8px;

			span {
				width: 28px;
				height: 28px;
				border-radius: 5px;
				font-size: 12px;
			}

			div {
				font-size: 12px;

				img {
					display: none;
				}
			}
		}

		.right {
			display: flex;
			align-items: center;
			gap: 25.3px;

			.score {
				font-size: 12px;

				img {
					width: 18px;
				}
			}

			.reward {
				font-size: 12px;

				img {
					width: 18px;
				}
			}
		}
	}

	.fields-wrapper {
		order: 1;
		grid-template-columns: repeat(5, 56px);
		grid-template-rows: repeat(5, 56px);
		gap: 5px;
	}

	.mines-counter {
		order: 3;
	}

	.candy-counter {
		order: 2;
	}

	.counter {
		flex-direction: row;
		justify-content: space-between;
		width: 48%;
		background: #262836 !important;

		div {
			span {
				width: 28px;
				height: 28px;

				img {
					width: 16px;
					height: 16px;
				}
			}

			p {
				display: none;
			}
		}

		.counter-value {
			margin-top: 0;
		}
	}

	.game-input-select {
		input {
			font-size: 12px;
			padding-left: 24px;
		}
	}

	.game-input-btns {
		gap: 8px;
	}

	.mines-page {
		.game-left-side {
			display: flex;
			flex-direction: column;
			padding: 16px 14px 16px 14px;
			border-radius: 12px;

			.group-title {
				display: none;
			}

			.game-btns {
				order: 1;
				margin-bottom: 12px;

				button {
					height: 40px;
					font-size: 12px;
				}
			}

			.game-input-wrapper {
				order: 2;

				&.last {
					order: 3;
				}
			}
		}

		.game-input-select {
			height: 44px;

			input {
				height: 44px;
			}
		}
	}

	.tournament-table-header {
		padding: 14px 72.21px 15px 36.11px;
	}

	.wallet-confirm {
		height: 44px;
		font-size: 12px;
	}

	.footer-bottom-right {
		flex-direction: column;
		align-items: start;
		gap: 8px;
	}

	.wallet-btn {
		padding: 8px;
		border-radius: 8px;

		span {
			display: none;
		}
	}

	.auth-btn {
		padding: 8px;
		border-radius: 8px;

		span {
			display: none;
		}
	}

	.wallet-history-menu {
		margin-top: 28px;

		button {
			font-size: 12px;
			padding-bottom: 12px;
		}
	}

	.deposite-history {
		& .table-body {
			& .table-item {
				p {
					font-size: 12px;
				}
			}
		}
	}

	.deposite-history {
		& .table-header {
			padding: 14px 40px 14px 28px;

			p {
				font-size: 12px;
			}
		}
	}

	.profile-balance {
		padding: 7px 11px;
		border-radius: 8px;

		p {
			font-size: 12px;
		}

		img {
			width: 22px;
		}
	}

	.logo {
		img {
			width: 106px;
			height: 30px;
		}
	}

	.dice-roll {
		gap: 7.5px;
		justify-content: center;

		span {
			display: inline-block;
			font-size: 37.16px;
			padding: 17.78px 21.57px 14.22px 22.46px;
		}
	}

	.dice-game {
		border-radius: 12px;

		.game-header {
			position: static;
			margin-bottom: 16px;
		}
	}

	.dice-game-inputs {
		flex-wrap: wrap;
	}

	.faq-item-header {
		.group-title {
			h3 {
				font-size: 12px;
			}

			.group-icon {
				width: 36px;
				height: 36px;
			}
		}
	}

	.faq-item-body {
		p {
			font-size: 12px;
		}
	}

	.open-slot-page {
		& .options-block {
			button {
				width: 40px;
				height: 40px;

				img {
					width: 20px;
					height: 20px;
				}
			}
		}
	}

	.level-list {
		flex-direction: column;
	}

	.level-card {
		min-width: 100%;
	}

	.avatars-list {
		overflow-x: auto;
		gap: 4px;

		button {
			width: 100%;
			height: 56px;

			&.active {
				&::before {}
			}
		}
	}

	.agreement-page {
		.group-title {
			&.sub {
				margin-top: 24px;
				margin-bottom: 16px;
			}
		}
	}

	.fields-wrapper {
		display: grid;
		grid-template-columns: repeat(5, 56px);
		grid-template-rows: repeat(5, 56px);
		gap: 10px;

		.mines-field {
			img {
				display: none;
			}

			&.bomb {
				.bomb-field {
					width: 34px;
					height: 34px;
				}
			}

			&.candy {
				.candy-field {
					width: 29px;
					height: 29px;
				}
			}
		}
	}

	.profile-block {
		.profile-img {
			width: 132px;
			height: 132px;
		}
	}

	.avatars-list {
		& .border-container {
			&.active {
				&::before {
					border-radius: 6px;
				}
			}
		}
	}

	.game-input-btns {
		button {
			font-size: 12px;
			height: 40px;
		}
	}

	.avatars-list {
		display: flex;
		overflow-x: auto;
		white-space: nowrap;
		max-width: 100%;
	}

	.border-container {
		flex: 0 0 auto;
		margin: 0 5px;
	}

	.avatars-list img {
		max-width: 100%;
		height: auto;
	}

	.level-pluses {
		div {
			padding: 5px 13px 5px 12px;

			p {
				font-size: 12px;
			}
		}
	}

	.level-list {
		&::after {
			display: none;
		}
	}

	.level-value-wrapper {
		.level-value-label {
			font-size: 16px;
		}

		.level-value {
			font-size: 12px;

			img {
				width: 16px;
			}
		}
	}

	.exp-info {
		font-size: 12px;
	}

	.provider-card {
		margin-top: 12px;

		img {
			width: 60%;
		}
	}

	.level-pluses {
		& div {
			&:nth-child(1) {
				p {
					font-size: 12px;
				}
			}

			&:nth-child(2) {
				p {
					font-size: 12px;
				}
			}
		}
	}

	.providers-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.level-card-header {
		margin-bottom: 20px;
	}

	.level-pluses {
		margin-top: 12px;
	}

	.profile-block-title {
		font-size: 12px;

		span {
			font-size: 12px;
		}
	}

	.statistic-field {
		padding: 15px 14px 14px 14px;

		& p {
			&:nth-child(1) {
				font-size: 12px;
			}

			&:nth-child(2) {
				font-size: 12px;
			}
		}
	}

	.referal-table-wrapper {
		padding: 20px;
	}

	.referal-table-text {
		h3 {
			font-size: 12px;
		}

		p {
			font-size: 12px;
		}
	}

	.statistic-item {
		& p {
			&:nth-child(1) {
				font-size: 12px;
			}

			&:nth-child(2) {
				font-size: 12px;
			}
		}
	}

	.payment-system-title {
		p {
			font-size: 12px;
		}
	}

	.payment-system-item {
		gap: 8px;
	}

	.payment-system-procent {
		font-size: 12px;
	}

	.payment-system-icon {
		width: 28px;
		height: 28px;

		img {
			width: 16.79px;
		}
	}

	.referal-link {
		input {
			height: 52px;
			font-size: 12px;
		}

		button {
			min-width: 36px;
			height: 36px;
			border-radius: 8px;

			img {
				width: 20px;
			}
		}
	}

	.referal-page {
		.group-icon {
			background: linear-gradient(180deg, #ffce00, #ffa610 100%);
		}
	}

	.referal-arrow-wrapper {
		.arrow-btn {
			width: 40px;
			height: 40px;
		}
	}

	.social-name {
		font-size: 12px;
	}

	.social-connect-item {
		.btn-primary {
			height: 32px;
			width: 103px;
			padding: 8px 10px 9px 10px;
		}
	}

	.profile-exit {
		font-size: 12px;
		margin-top: 50px;
	}

	.profile-block {
		p {
			font-size: 12px;
		}
	}

	.dice-btns {
		margin-top: 20px;

		button {
			height: 44px;
		}
	}

	.main-slider {
		height: 231px;
	}

	.group-nav {
		.arrow-btn {
			display: none;
		}
	}

	.dice-game {
		.group-header {
			margin-top: 0;
		}
	}

	.mines-page {
		.group-header {
			margin-top: 0;
		}

		.game-left-side {
			.group-header {
				display: none;
			}
		}
	}

	.wallet-menu {
		.modal-close-btn {
			display: flex;
		}
	}

	.last-game-table-header {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		border-radius: 14px;
		background: #151721;
		padding: 19px 48px 18px 48px;

		p {
			font-size: 12px;

			&:nth-child(2) {
				display: none;
			}

			&:nth-child(3) {
				display: none;
			}
		}
	}

	.last-game-table-body {
		display: flex;
		flex-direction: column;
		margin-top: 12px;
		gap: 12px;
	}

	.last-game-table-item {
		grid-template-columns: repeat(3, 1fr);
		padding: 13px 48px 13px 48px;

		.history-game-name {
			p {
				font-size: 12px;
			}

			span {
				img {
					width: 20px;
				}
			}
		}

		.history-profile-name {
			display: none;
		}

		.history-bet {
			display: none;
		}

		.history-bet,
		.history-result {
			p {
				font-size: 12px;
			}

			img {
				width: 28px;
			}
		}

		.history-result {
			justify-self: end;
		}

		.history-coeff {
			font-size: 12px;
		}
	}

	.main-slide {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover !important;
		padding: 40px 20px 43px 20px;

		h3 {
			font-size: 16px;
		}

		p {
			font-size: 12px;
		}

		a {
			font-size: 12px;

			img {
				width: 20px;
			}
		}
	}

	.dice-game-inputs {
		gap: 16px;
		margin-top: 16px;
	}

	.game-input {
		img {
			width: 20px;
			top: 10px;
		}
	}

	.wallet-history-modal {
		width: 100%;
		padding-bottom: 24px;
	}

	.original-games {
		.game-name {
			span {
				width: 32px;
				height: 32px;

				img {
					width: 20px;
				}
			}

			p {
				font-size: 12px;
			}
		}
	}


	.dice-game-img {
		height: 100%;
	}

	.mines-game-img {
		height: 100%;
	}

	.tournament-places {
		display: flex;
		flex-direction: column;
		align-items: end;
		gap: 72px;
		margin-top: 87px;
		margin-bottom: 52px;
	}

	.tournament-conditions {
		flex-direction: column;
	}

	.tournament-time {
		padding: 20px;
		background: linear-gradient(192.95deg, #fe5e62 9.716%, #cd2549 92.269%);
		border-radius: 12px;
		flex-direction: column;
		align-items: baseline;

		& .prize-side {
			width: 100%;

			.prize-value {
				width: 100%;
				text-align: center;
				margin-bottom: 22px;
			}
		}
	}

	.game-filter-btns {
		display: flex;
		align-items: center;
		gap: 8px;

		button {
			font-size: 12px;
			border-radius: 14px;
			background: #151721;
			padding: 8px 21px 8px 19px;
			display: flex;
			align-items: center;
			gap: 4px;

			svg {
				width: 20px;
				height: 20px;
			}
		}
	}

	.timer-border {
		padding: 2px;
		border-radius: 12px;
	}

	.timer {
		.separator {
			font-size: 22.09px;
			margin: 0 9px;
			margin-bottom: 38px;
		}
	}

	.search {
		position: relative;
		width: 100%;

		img {
			position: absolute;
			width: 20px;
			top: 50%;
			left: 22px;
			transform: translateY(-50%);
		}

		input {
			height: 36px;
			border-radius: 10px;
			font-size: 12px;
			padding-left: 47px;
		}
	}

	.swiper-pagination {
		display: none !important;
	}

	.timer-count {
		gap: 3px;

		span {
			font-size: 22px;
			min-width: 38px;
			height: 58px;
			border-radius: 10px;
		}
	}

	.withdraw-history {
		.table-header {
			padding: 16px 53px 18px 24px;
			border-radius: 13px;
			background: #191b26;
			display: grid;
			grid-template-columns: repeat(4, 1fr);

			p {
				color: #33353e;
				font-family: Google Sans;
				font-size: 11px;
				font-weight: 500;
				line-height: 20px;

				&:nth-child(4) {
					justify-self: end;
				}
			}
		}

		.withdraw-history {
			.table-header {
				padding: 14px 40px 14px 24px;

				p {
					font-size: 12px;
				}
			}
		}

		.table-body {
			display: flex;
			flex-direction: column;
			gap: 12px;
			margin-top: 12px;

			.table-item {
				display: grid;
				grid-template-columns: repeat(4, 1fr);
				padding: 14px 20px 14px 20px;
				border-radius: 13px;
				background: #1d1f2c;
				gap: 10px;

				p {
					border-radius: 13px;
					background: #1d1f2c;
					color: #f9fbff;
					font-family: Google Sans;
					font-size: 11px;
					font-weight: 500;
					line-height: 20px;

					&:nth-child(2) {
						margin-left: -15px;
					}

					&:nth-child(4) {
						justify-self: end;
						width: auto;
					}
				}
			}
		}
	}
}

@media (max-width: 600px) {
	.dice-roll {
		span {
			padding: 9.78px 13.57px 6.22px 14.46px;
		}
	}

	.all-slots-wrapper,
	.popular-slots-wrapper {
		height: 386px;
	}

	.slots-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.slot-card {
		aspect-ratio: 185 / 244;
		display: block;
		overflow: hidden;
		border-radius: 16px;
	}

	.slot-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
}

@media (min-width: 992px) {
	.desktop-padding {
		padding: 5px;
	}
}

@media (max-width: 992px) {
	.footer-icons .hidemobile {
		display: none !important;
	}
}

.mines-field .bomb-field,
.mines-field .candy-field {
	opacity: 0;
	transition: .2s;
}

.mines-field.bomb.revealed .bomb-field,
.mines-field.candy.revealed .candy-field {
	opacity: 1;
}

.mines-field.revealed {
	pointer-events: none;
}

.mines-field {
	position: relative;
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.mines-field:hover:not(.revealed) {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

@keyframes candyPop {
	0% {
		transform: scale(.9)
	}

	50% {
		transform: scale(1.15)
	}

	100% {
		transform: scale(1)
	}
}

.mines-field.revealed.candy {
	animation: candyPop .35s ease-out forwards;
}

@keyframes bombShake {

	10%,
	90% {
		transform: translateX(-1px)
	}

	20%,
	80% {
		transform: translateX(2px)
	}

	30%,
	50%,
	70% {
		transform: translateX(-4px)
	}

	40%,
	60% {
		transform: translateX(4px)
	}
}

.mines-field.revealed.bomb {
	animation: bombShake .5s ease-in-out forwards;
	filter: grayscale(.6);
}

/* --- buttons --- */
.start-btn,
.collect-btn,
.auto-btn {
	transition: background-color .3s ease, transform .2s ease, box-shadow .2s ease;
}

.start-btn:hover,
.collect-btn:hover,
.auto-btn:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.collect-btn .collect-sum {
	font-weight: 600;
}

button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
	transition: 0.3s ease;
}

.dice-btns button:disabled {
	background-color: #3a3d4b;
	color: #9ea3b0;
}

.game-input-btns button:disabled {
	background-color: #2f313d;
	color: #7e8494;
}

.last-game-table-item.appearing {
	opacity: 0;
	transform: translateY(-5px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.last-game-table-item {
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer {
	background: #0c0e13 !important;
	padding: 40px 0 20px !important;
	font-family: 'Inter', sans-serif !important;
}

.footer-container {
	max-width: 1220px !important;
	margin: 0 auto !important;
	padding: 0 24px !important;
}

.footer-columns.premium-icons {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 40px !important;
	margin-bottom: 24px !important;
}

.footer-column.brand {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	gap: 10px !important;
}

.footer-logo {
	height: 34px !important;
}

.footer-note {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin-top: 6px !important;
}

.footer-responsibility {
	font-size: 13px !important;
	color: #c36c6c !important;
	font-weight: 500 !important;
}

.footer-age {
	background: #c94141 !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	padding: 3px 7px !important;
	border-radius: 4px !important;
	line-height: 1 !important;
}

.footer-icons {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	align-items: center !important;
	justify-content: flex-end !important;
}

.tooltip-icon {
	width: 42px !important;
	height: 42px !important;
	background: #1a1d25 !important;
	border-radius: 10px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.2s ease-in-out !important;
	position: relative !important;
}

.tooltip-icon:hover {
	background: #2e323f !important;
}

.tooltip-icon img {
	width: 20px !important;
	height: 20px !important;
	filter: brightness(0.9) !important;
}

.tooltip-icon:hover img {
	filter: brightness(1.2) !important;
}

.footer-bottom {
	text-align: center !important;
	padding-top: 18px !important;
	border-top: 1px solid #181a20 !important;
}

.footer-copy {
	font-size: 12px !important;
	color: #5c5f6e !important;
	margin: 0 !important;
	line-height: 1.4 !important;
}

.avatars-list {
	display: flex;
	overflow-x: auto;
	gap: 8px;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
}

.avatars-list .border-container {
	flex: 0 0 auto;
}

.avatars-list button {
	background: transparent;
	border: none;
	border-radius: 15px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: auto;
	height: auto;
	opacity: 0.12;
}

.avatars-list button img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 50%;
	display: block;
	flex-shrink: 0;
}

.avatars-list button:hover {
	opacity: 0.42;
}

html,
body {
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

body > div[data-barba="wrapper"] {
	display: flex !important;
	flex-direction: column !important;
	min-height: 100vh !important;
}

.page-wrapper {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
}

.footer {
	margin-top: auto !important;
}

.page-wrapper {
	padding-bottom: 40px !important;
}

@media (min-width: 769px) {
	.avatars-list {
		display: flex !important;
		gap: 14px !important;
		overflow-x: auto !important;
		padding: 10px 8px 10px 8px !important;
		scrollbar-width: thin !important;
		scrollbar-color: #ffa610 transparent !important;
		cursor: grab !important;
	}

	.avatars-list:active {
		cursor: grabbing !important;
	}

	.avatars-list::-webkit-scrollbar {
		height: 6px !important;
	}

	.avatars-list::-webkit-scrollbar-thumb {
		background-color: #ffa610 !important;
		border-radius: 10px !important;
	}

	.avatars-list button {
		width: 110px !important;
		height: 110px !important;
		opacity: 1 !important;
		flex-shrink: 0 !important;
		border-radius: 15px !important;
		transition: transform 0.2s ease !important;
	}

	.avatars-list button:hover {
		transform: scale(1.05) !important;
	}

	.avatars-list button img {
		width: 100% !important;
		height: 100% !important;
		border-radius: 15px !important;
		object-fit: cover !important;
	}
}

.profile-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.profile-top {
	display: flex;
	gap: 16px;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: stretch;
}

.profile-block,
.avatar-change {
	flex: 1 1 50%;
	min-width: 0;
}

.profile-row {
	display: flex;
	gap: 16px;
	width: 100%;
	align-items: stretch;
	justify-content: space-between;
}

.social-connect {
	flex: 0 0 33%;
	display: flex;
	flex-direction: column;
}

.statistic {
	flex: 0 0 67%;
	display: flex;
	flex-direction: column;
}

.statistic-field-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	width: 100%;
}

.statistic-field {
	flex: 1 1 calc(25% - 16px);
	min-width: 200px;
	background: #1d1f2c;
	padding: 12px 24px;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 768px) {
	.profile-row {
		flex-direction: column;
	}

	.social-connect,
	.statistic {
		flex: 1 1 100%;
	}

	.statistic-field {
		flex: 1 1 100%;
	}
}

@media (max-width: 768px) {
	.profile-top {
		flex-direction: column;
	}

	.profile-block,
	.avatar-change {
		flex: 1 1 100%;
	}
}

.avatars-list button:focus {
	outline: none !important;
	box-shadow: none !important;
}

.avatars-list button {
	opacity: 1 !important;
}

.avatars-list .border-container:not(.active) button {
	opacity: 0.3 !important;
}

.avatars-list button:focus,
.avatars-list button:active {
	outline: none !important;
	box-shadow: none !important;
}

.avatars-list button img:focus,
.avatars-list button img:active {
	outline: none !important;
	box-shadow: none !important;
}

.avatars-list .border-container:focus,
.avatars-list .border-container:active {
	outline: none !important;
	box-shadow: none !important;
}


.avatars-list button,
.avatars-list button:focus,
.avatars-list button:active,
.avatars-list .border-container:focus,
.avatars-list .border-container:active,
.avatars-list button img:focus,
.avatars-list button img:active {
	outline: none !important;
	box-shadow: none !important;
	border: none !important;
	-webkit-tap-highlight-color: transparent !important;
	-webkit-focus-ring-color: transparent !important;
}

.avatars-list .border-container.active::before {
	content: none !important;
	border: none !important;
}

.level-list {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.level-card {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.payment-system-item {
	transition: all 0.3s ease !important;
}

.payment-system-item.active {
	background: radial-gradient(circle at 30% 30%, rgb(210 196 60 / 8%), rgb(204 191 104 / 2%)) !important;
	border: 1px solid rgb(255 226 0 / 80%) !important;
	box-shadow: 0 0 12px rgb(255 183 0 / 25%), inset 0 0 4px rgb(214 178 39 / 10%) !important;
	border-radius: 10px !important;
	backdrop-filter: blur(2px) !important;
	transform: translateY(-1px) !important;
}

.payment-system-item.active .payment-system-title p,
.payment-system-item.active .payment-system-procent {
	color: #d8fbe3 !important;
	font-weight: 600 !important;
}

.payment-system-item.active .payment-system-icon {
	background: rgb(228 216 11 / 12%) !important;
	padding: 4px !important;
	border-radius: 6px !important;
	transition: background 0.3s ease !important;
}

.game-input-btns button {
	transition: all 0.3s ease !important;
}

.game-input-btns button.active {
	background: rgba(80, 156, 246, 0.1) !important;
	border: 1px solid #509cf6 !important;
	box-shadow: 0 0 8px rgba(80, 156, 246, 0.3) inset !important;
	color: #eaf3ff !important;
	font-weight: 600 !important;
	border-radius: 8px !important;
	transform: translateY(-1px) !important;
}


.hidden {
	display: none !important;
}

.visible {
	display: flex !important;
}

.wallet-modal.history .payment-systems {
	display: none !important;
}


@media (max-width: 480px) {

	.payment-systems-deposit.visible,
	.payment-systems-withdraw.visible {
		display: flex !important;
		flex-direction: row !important;
		overflow-x: auto !important;
		overflow-y: visible !important;
		scroll-snap-type: x mandatory !important;
		gap: 12px !important;
		padding: 4px 12px 8px 12px !important;
		box-sizing: border-box !important;
	}

	.payment-systems-deposit.visible .payment-system-item,
	.payment-systems-withdraw.visible .payment-system-item {
		flex: 0 0 auto !important;
		width: 200px !important;
		height: 60px !important;
		scroll-snap-align: start !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		padding: 8px 12px !important;
		border-radius: 12px !important;
		box-sizing: border-box !important;
		overflow: visible !important;
	}

	.payment-system-title {
		display: flex !important;
		align-items: center !important;
		gap: 10px !important;
		overflow: hidden !important;
	}

	.payment-system-title p {
		font-size: 16px !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		margin: 0 !important;
	}

	.payment-system-procent {
		font-size: 15px !important;
		flex-shrink: 0 !important;
		margin-left: auto !important;
	}
}

.cancel-withdraw-btn {
	background: linear-gradient(180deg, #ff6264, #cd2549 119.444%);
	border: none;
	border-radius: 8px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	font-family: 'Google Sans', sans-serif;
	cursor: pointer;
	transition: background 0.3s ease;
	white-space: nowrap;
}

.cancel-withdraw-btn:hover {
	background: linear-gradient(180deg, #ff787a, #da3a55);
}

.cancel-withdraw-btn:active {
	background: linear-gradient(180deg, #e5484a, #b32a3f);
}

.confirm-modal {
	position: fixed;
	z-index: 10002;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.95);
	background: #1f2126;
	padding: 24px 28px;
	border-radius: 16px;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
	width: 100%;
	max-width: 360px;
	display: none;
	flex-direction: column;
	align-items: center;
	font-family: 'Google Sans', sans-serif;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

@keyframes appearConfirm {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

.confirm-title {
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	margin-bottom: 8px;
}

.confirm-text {
	font-size: 14px;
	color: #b0b3b8;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1.45;
}

.confirm-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.confirm-buttons button {
	padding: 10px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Google Sans', sans-serif;
	cursor: pointer;
	border: none;
	transition: all 0.3s ease;
}

.cancel-yes {
	background: linear-gradient(180deg, #4de069, #2faa3b);
	color: #fff;
}

.cancel-yes:hover {
	background: linear-gradient(180deg, #61f17b, #36c246);
}

.cancel-no {
	background: #2f3136;
	color: #ddd;
}

.cancel-no:hover {
	background: #3b3d43;
}

.confirm-modal .modal-close-btn {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0.7;
	transition: 0.2s;
}

.confirm-modal .modal-close-btn:hover {
	opacity: 1;
}

.confirm-backdrop {
	position: fixed;
	inset: 0;
	z-index: 10001;
	backdrop-filter: blur(4px);
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.confirm-backdrop.active {
	opacity: 1;
	visibility: visible;
}

.confirm-modal {
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%) scale(0.96);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.confirm-modal.active {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.referal-table-header,
.referal-table-item {
	display: grid;
	grid-template-columns: 1fr 3fr 2fr;
}

.fade-in {
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.referal-table-item {
	opacity: 0;
	transform: translateY(10px);
	animation: fadeIn 0.4s ease forwards;
}

.delay-0 {
	animation-delay: 0s;
}

.delay-1 {
	animation-delay: 0.05s;
}

.delay-2 {
	animation-delay: 0.1s;
}

.delay-3 {
	animation-delay: 0.15s;
}

.delay-4 {
	animation-delay: 0.2s;
}

.delay-5 {
	animation-delay: 0.25s;
}

.delay-6 {
	animation-delay: 0.3s;
}

.delay-7 {
	animation-delay: 0.35s;
}

.delay-8 {
	animation-delay: 0.4s;
}

.delay-9 {
	animation-delay: 0.45s;
}

.wallet-modal .table-item--fade-in {
	opacity: 0;
	transform: translateY(10px);
	animation: walletFadeIn 0.4s ease forwards;
}

.wallet-modal .table-item--fade-out {
	opacity: 1;
	transform: translateY(0);
	animation: walletFadeOut 0.2s ease forwards;
}

@keyframes walletFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes walletFadeOut {
	to {
		opacity: 0;
		transform: translateY(10px);
	}
}

.wallet-modal .delay-0 {
	animation-delay: 0ms;
}

.wallet-modal .delay-1 {
	animation-delay: 50ms;
}

.wallet-modal .delay-2 {
	animation-delay: 100ms;
}

.wallet-modal .delay-3 {
	animation-delay: 150ms;
}

.wallet-modal .delay-4 {
	animation-delay: 200ms;
}

.wallet-modal .delay-5 {
	animation-delay: 250ms;
}

.wallet-modal .delay-6 {
	animation-delay: 300ms;
}

.wallet-modal .delay-7 {
	animation-delay: 350ms;
}

.wallet-modal .delay-8 {
	animation-delay: 400ms;
}

.wallet-modal .delay-9 {
	animation-delay: 450ms;
}

body.modal-open {
	overflow: hidden;
}

.slot-card.page-lobby {
	opacity: 0 !important;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.slot-card.page-lobby.show {
	opacity: 1 !important;
	transform: translateY(0);
}

.wallet-bonus-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.wallet-confirm {
	margin-bottom: 45px;
}
.wallet-bonus-item {
	cursor: pointer;
	img {
		width: 75px;
		height: 100px;
		border-radius: 7px;
		object-fit: contain;
		filter: grayscale(1);
	}
	span {
		padding: 8px 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: #1d1f2c;
		border-radius: 6px;
		margin-top: 7px;
		margin-bottom: 4px;
		font-weight: 700;
		font-family: Google Sans;
		font-size: 12px;
		color: #4d4f59;
		max-width: 55px;
		width: 100%;
	}
	p {
		font-weight: 500;
		font-size: 12px;
		margin: 0;
		line-height: normal;
		color: #4d4f59;
		margin-top: 2px;
		&.bonus-bet {
			color: #767880;
			margin-top: 4px;
		}
	}
	&:hover {
		img {
			border-radius: 7px;
			object-fit: contain;
			filter: grayscale(0);
		}
		p {
			&.bonus-bet {
				color: #fff;
			}
		}
		span {
			background: linear-gradient(180deg, #5daff2 0%, #3481c0 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			position: relative;
			&::after {
				content: "";
				display: block;
				background: linear-gradient(180deg, #5daff233 0%, #3481c033 100%);
				width: 100%;
				height: 100%;
				z-index: 1;
				position: absolute;
				top: 0;
				left: 0;
				border-radius: 4px;
			}
		}
	}
	&.active {
		img {
			border-radius: 7px;
			object-fit: contain;
			filter: grayscale(0);
		}
		p {
			&.bonus-bet {
				color: #fff;
			}
		}
		span {
			background: linear-gradient(180deg, #5daff2 0%, #3481c0 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			position: relative;
			&::after {
				content: "";
				display: block;
				background: linear-gradient(180deg, #5daff233 0%, #3481c033 100%);
				width: 100%;
				height: 100%;
				z-index: 1;
				position: absolute;
				top: 0;
				left: 0;
				border-radius: 4px;
			}
		}
	}
}
@media (max-width: 420px) {
	.wallet-bonus-item {
		cursor: pointer;
		img {
			width: 69px;
			height: 90px;
			border-radius: 7px;
		}
		span {
			width: 100%;
			display: flex;
			max-width: 100%;
		}
		&.active {
			img {
				width: 69px;
				height: 90px;
				border-radius: 7px;
				object-fit: contain;
				filter: grayscale(0);
			}
		}
	}
}
.wallet-bonus-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.wallet-confirm {
	margin-bottom: 45px;
}
.wallet-bonus-item {
	cursor: pointer;
	img {
		width: 75px;
		height: 100px;
		border-radius: 7px;
		object-fit: contain;
		filter: grayscale(1);
	}
	span {
		padding: 8px 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: #1d1f2c;
		border-radius: 6px;
		margin-top: 7px;
		margin-bottom: 4px;
		font-weight: 700;
		font-family: Google Sans;
		font-size: 12px;
		color: #4d4f59;
		max-width: 55px;
		width: 100%;
	}
	p {
		font-weight: 500;
		font-size: 12px;
		margin: 0;
		line-height: normal;
		color: #4d4f59;
		margin-top: 2px;
		&.bonus-bet {
			color: #767880;
			margin-top: 4px;
		}
	}
	&:hover {
		img {
			border-radius: 7px;
			object-fit: contain;
			filter: grayscale(0);
		}
		p {
			&.bonus-bet {
				color: #fff;
			}
		}
		span {
			background: linear-gradient(180deg, #5daff2 0%, #3481c0 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			position: relative;
			&::after {
				content: "";
				display: block;
				background: linear-gradient(180deg, #5daff233 0%, #3481c033 100%);
				width: 100%;
				height: 100%;
				z-index: 1;
				position: absolute;
				top: 0;
				left: 0;
				border-radius: 4px;
			}
		}
	}
	&.active {
		img {
			border-radius: 7px;
			object-fit: contain;
			filter: grayscale(0);
		}
		p {
			&.bonus-bet {
				color: #fff;
			}
		}
		span {
			background: linear-gradient(180deg, #5daff2 0%, #3481c0 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			position: relative;
			&::after {
				content: "";
				display: block;
				background: linear-gradient(180deg, #5daff233 0%, #3481c033 100%);
				width: 100%;
				height: 100%;
				z-index: 1;
				position: absolute;
				top: 0;
				left: 0;
				border-radius: 4px;
			}
		}
	}
}
@media (max-width: 420px) {
	.wallet-bonus-item {
		cursor: pointer;
		img {
			width: 69px;
			height: 90px;
			border-radius: 7px;
		}
		span {
			width: 100%;
			display: flex;
			max-width: 100%;
		}
		&.active {
			img {
				width: 69px;
				height: 90px;
				border-radius: 7px;
				object-fit: contain;
				filter: grayscale(0);
			}
		}
	}
}
.ref-promo-banner {
	display: flex;
	align-items: center;
	gap: 20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 20px 25px;
	margin-bottom: 30px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	font-family: 'Google Sans', sans-serif;
}

.ref-promo-icon img {
	width: 48px;
	height: 48px;
}

.ref-promo-text h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
}

.ref-promo-text p {
	margin: 4px 0 0;
	font-size: 15px;
	color: #bcbcbc;
}

.ref-promo-text .percent {
	color: #ff4e4e;
	font-weight: 700;
}

.ref-promo-text .bonus {
	color: #50fa7b;
	font-weight: 600;
}

.dice-range-wrapper {
		width: 100%;
		border-radius: 13px;
		background: #101118e6;
		padding: 0 28px;
		margin-bottom: 74px;
	}
	.dice-range-midlight {
		width: 100%;
	}
	.irs--flat .irs-bar {
		background: linear-gradient(
			180deg,
			rgb(255 230 0),
			rgb(255 171 14) 100%
		) !important;
		height: 10px !important;
	}

	.irs--flat .irs-line {
		background: #151721 !important;
		height: 10px !important;
	}
	.irs--flat .irs-min,
	.irs--flat .irs-max {
		display: none;
	}
	.irs-grid-pol {
		display: none;
	}
	.irs-grid-text {
		color: #f1f6ff33 !important;
		font-size: 18px !important;
		font-weight: 500 !important;
		line-height: 23px !important;
		top: 35px !important;
	}
	.irs-grid {
		width: 96.2609% !important;
	}
	.irs--flat .irs-from,
	.irs--flat .irs-to,
	.irs--flat .irs-single {
		display: none;
	}
	.irs--flat .irs-handle {
		top: 15px !important;
		width: 30px !important;
		height: 30px !important;
		border-radius: 50% !important;
		background: linear-gradient(
			180deg,
			rgb(255 230 0),
			rgb(255 171 14) 100%
		) !important;
		color: transparent !important;
		cursor: grab;
		&::after {
			content: "";
			display: block;
			width: 10px;
			height: 10px;
			background: #fff;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			border-radius: 50%;
		}
	}
	.irs--flat .irs-handle > i:first-child {
		display: none !important;
	}

	.dice-indicator {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translate(-50%, -50%); 
		span {
			position: absolute;
			z-index: 2;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			color: #f9fbff;
			font-family: Montserrat;
			font-size: 20px;
			font-weight: 800;
			line-height: 24px;
		}
	}

	.dice-roll-line {
		position: relative;
		margin-bottom: 77px;
	}
	.dice-params-flexbox {
		display: flex;
		flex-direction: column;
	}
	@media (max-width: 1020px) {
		.dice-roll-line {
			margin-top: 55px;
			width: 100%;
			img {
				width: 100%;
			}
		}
		.dice-indicator {
			img {
				width: 64px;
				height: 74px;
			}
			span {
				font-size: 12px;
			}
		}
		.game-btns {
			order: 2;
			button {
				font-size: 12px;
				height: 44px;
			}
		}
		.maybe-win {
			order: 1;
		}
		.dice-game-inputs {
			order: 3;
		}
		.dice-range-midlight {
			width: 100%;
		}
		.irs--flat .irs-bar {
			height: 6px !important;
		}

		.irs--flat .irs-line {
			height: 6px !important;
		}

		.irs-grid-text {
			font-size: 12px !important;
			top: 35px !important;
		}

		.irs-grid {
			width: 100% !important;
		}

		.irs--flat .irs-from,
		.irs--flat .irs-to,
		.irs--flat .irs-single {
			display: none;
		}

		.irs--flat .irs-handle {
			width: 20px !important;
			height: 20px !important;
			top: 18px !important;
			&::after {
				width: 8px;
				height: 8px;
			}
		}
		.dice-range-wrapper {
			margin-bottom: 53px;
		}
	}

	.start-btn:disabled {
		opacity: 0.6;
		cursor: not-allowed;
	}

.dice-wrapper {
		position: relative;
	}

	.bubbles-wrapper, .dice-params-flexbox {
		position: relative;
		z-index: 2;
	}


	.bubble-active, .bubble-secret, .bubble-prev {
		box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.5), 0 0 25px rgba(63, 129, 255, 0.2);
		position: relative;
	}

	.bubble-active::after, .bubble-secret::after, .bubble-prev::after {
		content: '';
		position: absolute;
		top: 5%;
		left: 10%;
		width: 80%;
		height: 40%;
		border-radius: 50%;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
		transform: rotate(-15deg);
	}


	.start-btn.bubbles-start {
		background: linear-gradient(45deg, #ffce00, #ffa610);
		border: none;
		box-shadow: 0 4px 15px rgb(255 238 0 / 40%);
		transition: transform 0.2s ease, box-shadow 0.2s ease;
	}

	.start-btn.bubbles-start:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(95, 65, 233, 0.6);
	}

	.bubbles-wrapper {
		position: relative;
		height: 151px;
		display: flex;
		align-items: center;
		overflow: hidden;
	}

	.bubbles-main {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		background: url("/assets/images/bubbles-placer.svg");
		background-size: cover;
		width: 244px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 9px;
	}

	.simple-bubbles-list {
		display: flex;
		align-items: center;
		gap: 22px;
		transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
	}

	.simple-bubble {
		min-width: 14px;
		height: 14px;
		border-radius: 50%;
		background: #1d1f2c;
	}

	.bubble-active, .bubble-secret, .bubble-prev {
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		overflow: hidden; 
	}

	.bubble-active {
		width: 104.95px;
		height: 104.95px;
		background: linear-gradient(180deg, #ffa61061, #2552cf61 100%);
	}

	.bubble-secret, .bubble-prev {
		width: 47.7px;
		height: 47.7px;
		background: linear-gradient(180deg, #4877f599, #244cd299 100%);
	}

	.bubble-active img, .bubble-prev img {
		position: absolute; 
		transition: opacity 0.3s ease; 
		will-change: transform, opacity;
	}

	.bubble-secret img {
		transition: visibility 0s;
	}

	.bubble-active img { width: 63.38px; height: 63.38px; }
	.bubble-prev img { width: 26.71px; height: 26.71px; }
	.bubble-secret img { width: 14px; }

	.bubble-anim-clone {
		position: absolute;
		transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1),
			opacity 0.6s ease;
	}

	.move-to-prev {
		transform: translateX(-88px) scale(0.45);
		opacity: 1;
	}

	.move-offscreen {
		transform: translateX(-100px) scale(0.8);
		opacity: 0;
	}

	.move-from-secret {
		transform: translateX(88px) scale(1.5);
		opacity: 0;
	}
	.move-from-secret.in-center {
		transform: translateX(0) scale(1);
		opacity: 1;
	}


	@media (max-width: 820px) {
		.bubbles-wrapper { height: 75.18px; }
		.bubbles-main { width: 122.81px; padding: 0 4px; }
		.bubble-active { width: 52.82px; height: 52.82px; }
		.bubble-active img { width: 31.69px; height: 31.69px; }
		.bubble-secret, .bubble-prev { width: 24.01px; height: 24.01px; }
		.bubble-prev img { width: 13.45px; height: 13.45px; }
		.bubble-secret img { width: 7px; }

		.move-to-prev { transform: translateX(-44px) scale(0.45); }
		.move-offscreen { transform: translateX(-50px) scale(0.8); }
		.move-from-secret { transform: translateX(44px) scale(1.5); }
	}

	.bubble-toast {
		position: absolute;
		left: 50%;
		transform: translateX(-50%) translateY(0);
		bottom: 56px; 
		padding: 12px 18px; 
		border-radius: 12px; 
		font-family: 'Montserrat', sans-serif;
		font-weight: 500;
		font-size: 14px;
		line-height: 1.3;
		color: #f0f0f0; 
		white-space: nowrap;
		z-index: 10; 
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);

		background: rgba(40, 44, 64, 0.6);

		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);

		border: 1px solid rgba(255, 255, 255, 0.1);

		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	}

	.bubble-toast.show {
		opacity: 1;
		transform: translateX(-50%) translateY(-10px);
	}

	.bubble-toast.win {
		border-color: rgba(86, 209, 125, 0.5);
	}
	.bubble-toast.lose {
		border-color: rgba(255, 107, 107, 0.5);
	}

	.bubble-toast .coef {
		font-weight: 700;
		margin-right: 6px;
		color: #fff;
	}
	.bubble-toast .delta.win {
		color: #56d17d;
		text-shadow: 0 0 6px rgba(86, 209, 125, 0.5); 
	}
	.bubble-toast .delta.lose {
		color: #ff6b6b;
		text-shadow: 0 0 6px rgba(255, 107, 107, 0.5); 
	}

.original-game-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 19px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  aspect-ratio: 0.9 / 1;
  &:hover {
    transform: translateY(-15px);
  }
}


.original-games-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}

/* Слайды */
.main-slide-1 {
  background-image: url("../../assets/images/banners/banner-1.png");
  background-position: center;
  background-size: cover;
}
.main-slide-2 {
  background-image: url("../../assets/images/banners/banner-2.png");
  background-position: center;
  background-size: cover;
}
.main-slide-3 {
  background-image: url("../../assets/images/banners/banner-3.png");
  background-position: center;
  background-size: cover;
}
.main-slide-4 {
  background-image: url("../../assets/images/banners/banner-4.png");
  background-position: center;
  background-size: cover;
}
.main-slide-5 {
  background-image: url("../../assets/images/banners/banner-5.png");
  background-position: center;
  background-size: cover;
}
/* .main-slide-9 {
  background-image: url("../../assets/images/banners/banner-9.png");
  background-position: center;
  background-size: cover;
} */
/* Слайды */

/* Новый блок рефералов */
.referral-level-block {
  display: grid;
  grid-template-columns: 344px 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 30px;
  border-radius: 16px;
}

.level-progress-section {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #151721;
  border-radius: 17px;
  padding-top: 20px;
  padding-bottom: 18px;
}

.level-progress-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}

.progress-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.progress-ring-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.3s ease;
}

.level-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(106, 158, 255, 0.08) 0%,
    rgba(79, 104, 227, 0.08) 100%
  );

  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.level-text {
  color: white;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #4d4f59;
  margin: 0;
  margin-top: 18px;
}

.referral-info-section {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #151721;
  border-radius: 16px;
  padding: 24px 24px 24px 28px;
}

.referral-description {
  width: 50%;
}

.referral-description p {
  color: white;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: #767880;
}

.referral-link-container {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #1d1f2c;
  width: 50%;
  border-radius: 18px;
  padding-right: 20px;
  padding-left: 32px;
  overflow: hidden;
}

.referral-link-input {
  height: 64px;
  flex: 1;
  background: #1d1f2c;
  border: none;
  color: white;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  outline: none;
  font-weight: 700;
  transition: border-color 0.3s ease;
}

.referral-link-input:focus {
  border-color: #5c6fff;
}

.copy-link-btn {
  border: none;
  border-radius: 15px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  width: 48px;
  height: 48px;
}

.referral-stats-section {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.next-level-progress,
.current-bonus {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #151721;
  border-radius: 14px;
  padding: 16px 28px;
}

.progress-text {
  color: white;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.current-progress {
  color: white;
}

.target-progress {
  background: linear-gradient(180deg, #ffce00 0%, #ffa610 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress-label,
.bonus-label {
  color: #4d4f59;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.bonus-percentage {
  color: white;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.ref-confirm-block {
  padding: 40px 46px 47px 27px;
  background: #151721;
  border-radius: 23px;
  margin-bottom: 52px;
}

.ref-confirm-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.ref-confirm-input {
  display: flex;
  align-items: center;
  padding-block: 8px;
  padding-right: 16px;
  padding-left: 16px;
  background: #1d1f2c;
  border-radius: 13px;
  width: 100%;
  input {
    background: transparent;
    border: none;
    color: white;
    font-family: "Google Sans", sans-serif;
    font-size: 18px;
    outline: none;
    font-weight: 500;
    width: 100%;
    transition: border-color 0.3s ease;
  }
  button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-left: 21px;
    padding-right: 18px;
    width: auto;
    img {
      width: 20px;
      height: 20px;
    }
  }
}

.ref-confirm-title {
  color: #f9fbff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Google Sans", sans-serif;
}

.ref-confirm-subtitle {
  color: #767880;
  font-size: 18px;
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 32px;
}

.btn-secondary {
  background: #1d1f2c;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 14px;
  height: 52px;
  color: #767880;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  &:has(img) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  &:hover {
    background: #232532;
    color: #f9fbff;
  }
  &:active {
    background: #292b38;
    color: #f9fbff;
  }
}
.sign-in-btn {
  width: 120px;
}
.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 52px;
}
.header-auth-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.register-modal {
  max-width: 858px;
  width: 100%;
  .has-account {
    margin-top: 102px;
  }
}
.auth-banner {
  width: 50%;
  object-fit: cover;
}
.auth-modal-wrapper {
  display: flex;
  height: fit-content;
  background: #101118;
  gap: 40px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  .group-icon {
    background: linear-gradient(180deg, #ffce00 0%, #ffa610 100%);
  }
}
.auth-side {
  width: 50%;
  padding-right: 40px;
  padding-top: 35px;
  padding-bottom: 36px;
}

.auth-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-input {
  display: flex;
  border-radius: 12px;
  align-items: center;
  background: #191b26;
  padding-inline: 16px;
  width: 100%;
  height: 52px;
  div {
    display: flex;
    align-items: center;
    gap: 10px;
    input {
      background: transparent;
      border: none;
      color: white;
      font-family: "Google Sans", sans-serif;
      font-size: 18px;
      outline: none;
      font-weight: 500;
      width: 100%;
      transition: border-color 0.3s ease;
      &::placeholder {
        color: #4d4f59;
      }
    }
  }
}

.auth-confirm-btn {
  margin-top: 16px;
}

.social-auth-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.social-auth-btn {
  width: 100%;
}

.social-auth-block {
  margin-top: 28px;
}

.social-auth-label {
  color: #4d4f59;
  font-family: "Google Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}
.has-account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  p {
    color: #f9fbff;
    font-family: "Google Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
  }
  a {
    background: linear-gradient(180deg, #ffce00 0%, #ffa610 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Google Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
  }
}
.login-modal {
  .btn-primary {
    margin-top: 12px;
  }
  .has-account {
    margin-top: 129px;
  }
}
.forgot-pass {
  color: #767880;
  font-family: "Google Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}
.forgot-pass {
  color: #767880;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(180deg, #ffce00 0%, #ffa610 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 24px;
  display: block;
}

.little-bonus-btn {
  position: absolute;
  bottom: 32px;
  right: 28px;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  z-index: 1;
  border: 2.3px solid #ffffff8b;
  img {
    transition: all 0.3s ease-in-out;
  }
  cursor: pointer;
  &:hover {
    img {
      transform: translateX(100%);
    }
  }
}
.welcome-bonus {
  .little-bonus-btn {
    background: linear-gradient(204.69deg, #9a5aee 9.83%, #6e43da 95.97%);
  }
}
.promotion-bonus {
  .little-bonus-btn {
    background: linear-gradient(207.09deg, #ffce00 16.92%, #ffa610 85.32%);
  }
}
.rang-bonus {
  .little-bonus-btn {
    background: linear-gradient(193.04deg, #ff6062 2.43%, #cd2549 98.48%);
  }
}
.bonus-simple-text {
  color: #4d4f59;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
}
.bonus-progress-track {
  margin-top: 28px;
  width: 100%;
  height: 10px;
  background: #2b2e42;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.bonus-progress-bar {
  display: block;
  content: "";
  height: 100%;
  width: 50%;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffce00 0%, #ffa610 100%);
}
.bonus-progress-value-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  div {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  p {
    font-size: 18px;
    font-weight: 500;
    color: #f9fbff;
    font-family: "Google Sans", sans-serif;
  }
}
.bonus-fields-card {
  padding: 24px;
  & .maybe-win {
    margin-top: 36px;
  }
}
.bonus-fields-card {
  &.bonus-activation {
    & .btn-primary {
      margin-top: 16px;
    }
  }
}
.bonus-fields-card {
  min-width: 336px;
}
.bonus-fields-cards {
  overflow-y: auto;
}
.bonus-fields-card {
  &.bonus-activation {
    & .btn-primary {
      margin-top: 20px;
    }
  }
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
  &::-webkit-scrollbar {
    display: none;
  }
}
.header-personal-bonuses {
  margin-top: 36px !important;
  .group-icon {
    background: linear-gradient(122.97deg, #fb7689 30.33%, #ea5a76 87.81%);
  }
}
@media (max-width: 1600px) {
  .ref-confirm-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    border: 2.3px solid;

    border-image-source: linear-gradient(
      197.04deg,
      #ffffff -11.18%,
      #804ce2 119.17%
    );
  }
}

@media (max-width: 1440px) {
  .referral-description {
    width: 100%;
  }
  .referral-link-container {
    width: 100%;
  }
  .referral-info-section {
    flex-direction: column;
  }
  .copy-link-btn {
    width: 32px;
    height: 32px;
    border-radius: 9.78px;
  }
  .referral-link-input {
    height: 44px;
    font-size: 12px;
  }
}
@media (max-width: 1240px) {
  .ref-confirm-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1240px) {
  .ref-confirm-wrapper {
    grid-template-columns: 1fr;
  }
}
/* Адаптивность для блока рефералов */
@media (max-width: 768px) {
  /* Слайды */
  .main-slide-1 {
    background-image: url("../images/banners/m-banner-1.png");
    background-position: center;
    background-size: cover;
  }
  .main-slide-2 {
    background-image: url("../images/banners/m-banner-2.png");
    background-position: center;
    background-size: cover;
  }
  .main-slide-3 {
    background-image: url("../images/banners/m-banner-3.png");
    background-position: center;
    background-size: cover;
  }
  .main-slide-4 {
    background-image: url("../images/banners/m-banner-4.png");
    background-position: center;
    background-size: cover;
  }
  .main-slide-5 {
    background-image: url("../images/banners/m-banner-5.png");
    background-position: center;
    background-size: cover;
    p {
      display: none;
    }
    a {
      margin-top: 14px;
    }
  }

  /* Слайды */
  .bonus-big-card {
    padding: 12px 16px 12px 14px;
  }
  .little-bonus-btn {
    right: 20px;
    bottom: 22px;
    width: 30px;
    height: 30px;
    border-radius: 6.82px;
    img {
      width: 13.33px;
      height: 13.33px;
    }
  }
  .bonus-little-card {
    padding: 12px 20px 20px 14px;
  }
  .bonus-progress-value-wrapper {
    img {
      width: 18px;
      height: 18px;
    }
    & p {
      font-size: 12px;
    }
  }
  .bonus-fields-card {
    &.bonus-activation {
      & .btn-primary {
        margin-top: 8px;
      }
    }
  }
  .bonus-fields-card {
    .maybe-win {
      margin-top: 22px;
    }
  }
  .bonus-fields-card {
    padding: 16px;
  }
  .bonus-fields-card {
    & .game-input-wrapper {
      margin-top: 14px;
    }
  }
  .bonus-simple-text {
    font-size: 12px;
  }
  .bonus-fields-card {
    min-width: 284px;
  }
  .mobile-widest-card {
    min-width: 328px;
    width: 328px;
  }
  .bonus-progress-track {
    margin-top: 31px;
    height: 8px;
  }
  .bonus-progress-value-wrapper {
    margin-top: 9px;
  }
  .auth-input {
    height: 44px;
    div {
      input {
        font-size: 12px;
      }
    }
  }
  .auth-banner {
    display: none;
  }
  .auth-side {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    padding-block: 24px;
  }
  .forgot-pass {
    font-size: 12px;
    margin-top: 16px;
  }
  .social-auth-btn {
    height: 44px;
    svg {
      height: 14px;
    }
  }
  .social-auth-block {
    margin-top: 32px;
  }
  .social-auth-label {
    margin-bottom: 10px;
  }
  .login-modal {
    .has-account {
      margin-top: 80px;
    }
  }
  .register-modal {
    .has-account {
      margin-top: 55px;
    }
  }
  .register-btn {
    font-size: 0;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .sign-in-btn {
    font-size: 0;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .referral-description p {
    font-size: 12px;
  }
  .ref-confirm-block {
    padding: 20px;
  }
  .ref-confirm-title {
    font-size: 12px;
  }
  .ref-confirm-subtitle {
    font-size: 12px;
  }
  .ref-confirm-input {
    padding-block: 6px;
    height: 44px;
    input {
      font-size: 12px;
    }
    button {
      font-size: 12px;
      padding-left: 9px;
      padding-right: 11px;
      width: auto;
    }
  }
  .progress-text {
    font-size: 12px;
  }
  .progress-label {
    font-size: 12px;
  }
  .bonus-percentage {
    font-size: 12px;
  }
  .next-level-progress {
    padding: 20px 20px 16px 20px;
  }
  .bonus-label {
    font-size: 12px;
  }
  .level-text {
    font-size: 12px;
  }
  .referral-link-container {
    padding: 20px 8px;
  }
  .current-bonus {
    padding: 16px 20px;
  }
  .referral-level-block {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
  }

  .level-progress-section {
    grid-column: 1;
    grid-row: 1;
  }

  .referral-info-section {
    grid-column: 1;
    grid-row: 2;
  }

  .referral-stats-section {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .level-number {
    width: 50px;
    height: 35px;
    font-size: 20px;
  }
}

