* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--popup-text-primary: #ffffff;
	--popup-color-primary: #fc634f;
	--popup-color-primary-hover: #ef8c26;
	--popup-color-primary-active: #ef8c26;
	--popup-color-primary-alt: #ef8c26;
	--popup-color-accent: #000000;
	--popup-color-gradient-end: #fc634f;
	--popup-bg: #080c15;
}

.casino-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 5px;
	visibility: hidden;
	opacity: 0;
	background: var(--popup-bg);
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1100;
}

.casino-popup.show {
	visibility: visible;
	opacity: 1;
}

.redirect-notice {
	text-align: center;
	color: #fff;
	padding: 15px;
	animation: fadeIn 0.5s ease-in-out;
}

.notice-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	color: white;
}

.roulette-wheel {
	position: relative;
	width: 120px;
	height: 120px;
	animation: spin 3s linear infinite;
}

.wheel-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border: 3px solid var(--popup-text-primary);
	border-radius: 50%;
	background: conic-gradient(from 0deg,
			var(--popup-color-primary) 0deg 45deg,
			var(--popup-color-accent) 45deg 90deg,
			var(--popup-color-primary) 90deg 135deg,
			var(--popup-color-accent) 135deg 180deg,
			var(--popup-color-primary) 180deg 225deg,
			var(--popup-color-accent) 225deg 270deg,
			var(--popup-color-primary) 270deg 315deg,
			var(--popup-color-accent) 315deg 360deg);
	box-shadow: 0 0 30px rgba(32, 153, 255, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.wheel-center {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: flex;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background: var(--popup-text-primary);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.ball {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--popup-color-accent);
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
	animation: ballBounce 0.6s ease-in-out infinite alternate;
}

.progress-container {
	width: 280px;
	text-align: center;
}

.progress-bar {
	position: relative;
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background: #9a68d1;
	box-shadow: 0 0 10px rgba(32, 153, 255, 0.6);
}

.progress-fill {
	width: 0%;
	height: 100%;
	overflow: hidden;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--popup-color-primary), var(--popup-color-gradient-end), var(--popup-color-primary));
	background-size: 200% 100%;
	transition: width 0.3s linear;
	animation: progressShine 2s ease-in-out infinite;
}

.progress-text {
	margin-top: 12px;
	font-size: 14px;
	font-weight: bold;
	color: var(--popup-color-primary);
}

section.text div.container h1,
section.text div.container h2,
section.text div.container h3 {
	color: #000;
}

section.text div.container h1 {
	font-size: 48px;
	line-height: 80px;
}

html {
	font-size: 14px;
	font-weight: 400;
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	line-height: 1;
	font-style: normal;
	font-display: swap;
	scroll-behavior: smooth;
}

body {
	background-color: #FFF;
}

section {
	padding: 0 16px;
}

.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.navbar {
	width: 100%;
	height: 50px;
	z-index: 11;
	position: sticky;
	top: 0;
}

.navbar-second {
	top: -50px;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.navbar-hero {
	min-height: 580px;
	background: url('../img/navbar-background.png');
	background-position: bottom;
	background-size: cover;
	border-radius: 38px;
}

.hero-content-text {
	max-width: 360px;
	margin: 0 auto;
	padding: 122px 0 0 0;
}

.hero-text-one {
	color: #FFF;
	font-family: 'Lilita One', sans-serif !important;
	font-size: 42px !important;
	font-style: normal;
	font-weight: 600 !important;
	line-height: .9;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
	width: 100%;
}

.hero-text-one span,
.hero-text-two span {
	position: relative;
	z-index: 1;
}

.hero-text-one svg {
	height: 100%;
	left: 0;
	overflow: visible;
	pointer-events: none;
	position: absolute;
	top: 3px;
	width: 100%;
	z-index: 0;
}

.hero-text-two {
	color: #FDF86A;
	font-family: 'Lilita One', sans-serif !important;
	font-size: 42px !important;
	font-style: normal;
	font-weight: 600 !important;
	line-height: .9;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
	width: 100%;
}

.hero-text-two svg {
	height: 100%;
	left: 0;
	overflow: visible;
	pointer-events: none;
	position: absolute;
	top: 3px;
	width: 100%;
	z-index: 0;
}

.hero-info-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	padding: 30px 0;
}

.hero-info-content .text-one {
	color: #FFF;
	font-family: "Fira Sans Extra Condensed", sans-serif;
	font-size: 24px;
	line-height: 1;
	white-space: normal;
	font-weight: 600;
}

.hero-info-content .text-two {
	max-width: 328px;
	color: #FFF;
	font-family: "Fira Sans Extra Condensed", sans-serif;
	font-size: 12px;
	line-height: 1;
	white-space: normal;
	font-weight: 600;
	text-align: center;
}

.text-wrap {
	padding: 15px 35px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 58px;
}

.text-wrap a {
	background: #ff3a8d;
	border: 1px solid #ff3a8d;
	color: #FDF869;
	font-size: 20.25px;
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	padding: 12px 0;
	min-width: 286px;
	height: 55px;
	align-items: center;
	justify-content: center;
	border-radius: 26px;
	display: flex;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}

.text-wrap a:hover {
	background: #ff0080;
	border: 1px solid #ff3a8d;
}

.welcome-offer {
	margin: 0px 0 55px 0;
}

.welcome-offer .container-header {
	background: #FFF;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 24px;
}

.welcome-offer .container-header span {
	color: #000;
	font-size: 24px;
	font-weight: 600;
}

.welcome-offer .container-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.content-tile {
	width: 400px;
	background: #fdf86a;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
	padding: 12px 36px;
	border-radius: 34px;
}

.content-tile .tile-text {
	color: #000;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.content-tile .tile-text-title {
	font-size: 22.5px;
}

.content-tile .tile-text {
	font-size: 18px;
}

.content-tile img {
	width: 38px;
	height: 38px;
}

.payments {
	margin: 0px 0 55px 0;
}

.payments .container-header {
	background: #FFF;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 24px;
}

.payments .container-header span {
	color: #000;
	font-size: 24px;
	font-weight: 600;
}

.payments .container-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

.payments .content-tile {
	width: 464px;
	background: #0000001a;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 24px;
	padding: 12px 36px;
	border-radius: 34px;
}

.payments .content-tile img {
	height: 39px;
	width: 70px;
}

.levels {
	margin: 0px 0 55px 0;
	padding: 0;
}

.levels .container {
	position: relative;
}

.levels .container-header {
	background: #FFF;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 24px;
}

.levels .container-header span {
	color: #000;
	font-size: 24px;
	font-weight: 600;
}

.levels .container-background-wrap {
	width: 100%;
	height: 229px;
	position: relative;
}

.levels .container-background {
	background: url('../img/section-background.webp');
	width: 100%;
	height: 229px;
	background-position: bottom;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.levels .container-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 0;
	background-color: #000;
	border-radius: 34px;
	gap: 32px;
}

.levels .rangs {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.levels .info {
	color: #FFF;
	font-weight: 600;
	max-width: 432px;
	text-align: center;
	font-size: 12px;
}

.levels .content-tile {
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px 12px 16px;
}

.levels .content-tile .tile-text {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #FFF;
	font-weight: bold;
	text-transform: uppercase;
}

.levels .content-tile img:first-child {
	width: 36px;
	height: 36px;
}

.levels .content-tile img:last-child {
	width: 24px;
	height: 24px;
}

.slots {
	margin: 32px 0 0 0;
	padding: 0;
}

.slots .container {
	position: relative;
}

.slots .container-header {
	background: #FFF;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 24px;
}

.slots .container-header span {
	color: #000;
	font-size: 24px;
	font-weight: 600;
}

.slots .container-content {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow: hidden;
	overflow-x: auto;
	gap: 15px;
	justify-content: center;
}

.slots .info.text-wrap {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 12px 0;
}

.slots .text-wrap a {
	max-width: 358px;
}

.navbar-content {
	width: 100%;
	height: 50px;
	display: grid;
	background: #FFFFFF50;
	border-radius: 24px;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	margin: 8px 8px 0 8px;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0 16px;
}

.navbar-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	padding: 5px 0;
	grid-area: logo;
}

.navbar-logo img {
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 11;
}

.navbar-logo .desktop-logo {
	display: block;
	width: 72px;
}

.navbar-nav {
	flex-grow: 1;
	padding: 0 20px;
	display: flex;
	justify-content: left;
}

.navbar-nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
}

.navbar-nav ul a {
	color: #F7F7F7;
	text-decoration: none;
	display: block;
	margin: 0 8px;
	text-transform: capitalize;
	font-size: 17px;
	font-weight: 400;
	line-height: 2rem;
	font-family: "Mukta", sans-serif;
}

.navbar-nav ul a.active {
	color: #fff;
}

.navbar-buttons {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	padding-right: 16px;
}

.navbar-buttons a {
	margin: 0 .5rem;
	font-size: 1rem;
	font-weight: 400;
	color: #ff388d;
	text-decoration: none;
	position: relative;
	padding: 0.5rem 0.2rem;
	top: -10px;
	white-space: nowrap;
}

.navbar-buttons a:hover span {
	text-decoration: underline;
}

.navbar-buttons span {
	position: relative;
	z-index: 2;
}

.navbar-buttons svg {
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.search {
	color: #b6cbe5;
	fill: #b6cbe5;
	margin-right: 4px;
	padding: 6px 8px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	text-decoration: none;
	font-size: 16px;
	font-family: 'Mukta', sans-serif;
	text-align: center;
	font-weight: 600;
	line-height: 2rem;
	padding: 0 12px;
	transition: 0.2s all ease;
	border-radius: 22px;
	user-select: none;
	border: 2px solid transparent;
}

.btn:hover {
	cursor: pointer;
}

.btn-primary {
	color: #000;
	background: #1AFF71;
}

.btn-secondary {
	color: #F7F7F7;
	background: none;
	gap: 6px;
}

.btn-fixed {
	display: none;
	position: fixed;
	bottom: 10px;
	left: 10px;
	z-index: 2;
	width: calc(100% - 20px);
	height: 50px;
}

.btn-lang-switcher {
	width: 32px;
	height: 32px;
	background-position: center center;
	background: url('/img/flags/gb.svg');
	background-repeat: round;
	border-color: #000;
	object-fit: cover;
}

.btn-hero {
	min-width: 272px;
	height: 49px;
	background: #00b45a;
	color: #FFF;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
}

.navbar-toggler {
	border: none;
	width: 36px;
	height: 36px;
	display: block;
	opacity: 0;
	padding: 5px;
	color: #FFF;
	border-radius: 50%;
	background: transparent;
	z-index: 6;
}

.navbar-toggler.navbar-desktop-toggler {
	display: block;
}

.navbar-desktop-toggler {
	border: none;
	background: none;
	width: 36px;
	height: 36px;
	padding: 5px 12px 5px 0;
	color: #FFF;
	z-index: 6;
}

.navbar-toggler:hover,
.navbar-desktop-toggler:hover {
	cursor: pointer;
}

/*hero*/
.hero {
	position: relative;
	overflow: hidden;
}

section.hero {
	padding: 0;
	background: url(../img/background.webp);
	background-position: center;
}

.hero-container-background {
	height: 100%;
	padding: 0 0 170px 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 1%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 24%, rgba(0, 0, 0, 1) 100%);
}

.hero-banner {
	position: relative;
	width: auto;
	height: 604px;
	min-height: 300px;
	overflow: hidden;
	background: linear-gradient(0deg, #461c96, #ff01ba 33%, #ff0 74%, #461c96) no-repeat padding-box;
	padding: 5px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hero-banner .background {
	position: absolute;
	top: 5px;
	left: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	background: url('../img/hero-banner.webp');
	background-position: bottom;
	background-size: cover;
	border-radius: 5px;
	z-index: 1;
}

.hero-banner .content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.hero-1-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 20px 0;
}

.hero-1-wrapper .welcome-title {
	text-transform: uppercase;
	line-height: 1;
	font-family: 'Mukta', sans-serif;
	font-size: 12px;
	font-weight: 400;
	padding: 8px 0;
	color: #FF0;
}

.hero-1-wrapper .welcome-text {
	text-transform: uppercase;
	line-height: .9;
	font-family: 'Lilita One', sans-serif;
	font-size: 42px;
	font-weight: 400;
}

.hero-1-wrapper .welcome-text.first {
	color: #FFF;
}

.hero-1-wrapper .welcome-text.second {
	color: #FF0;
}

.hero-2-wrapper {
	width: 384px;
	max-width: 384px;
	background: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 9px 0 18px 0;
	border-radius: 7px;
}

.hero-2-wrapper text {
	font-size: 12px;
	font-family: 'Mukta', sans-serif;
	color: #FFF;
}

.btn-register {
	border-radius: 22px;
	color: #000;
	text-transform: uppercase;
	background: transparent linear-gradient(180deg, #ff0, #ff0 14%, #ff01ba 76%, #e546c8) 0% 0% no-repeat padding-box;
}

.game-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 183px;
	height: 281px;
	cursor: pointer;
	transition: .2s all ease;
	flex-shrink: 0;
}

.game-card .online-dot:after {
	content: "";
	display: block;
	background-color: #1AFF71;
	width: 7px;
	height: 7px;
	margin-right: 9px;
	border-radius: 3px;
}

.btn-game-card {
	width: min-content;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px 0;
	font-weight: normal;
	font-size: 15px;
	color: #FFF;
}

.game-card-title {
	width: 100%;
	height: 44px;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity: 1;
}

.game-card-title span {
	color: #FFF;
	font-size: 12px;
	line-height: 16.1px;
	font-weight: 600;
}

.game-card img {
	width: 100%;
	height: 100%;
	min-height: 250px;
	object-fit: cover;
	border-radius: 8px;
}

.studios {
	background-color: #000;
}

.studios-content {
	background-color: #271c2e;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}

/*text*/
.text {
	background: #FFF;
	color: #000;
}

.text img {
	max-width: 100%;
	height: auto;
}

.text .container {
	padding: 24px 0;
}

.text h1 {
	color: #FFF;
	font-size: 36px;
	line-height: 48px;
	margin-bottom: 24px;
	font-weight: 600;
	font-family: Paytone One, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol;
}

.text p {
	margin-bottom: 16px;
	line-height: 1.715;
}

.text h2 {
	font-size: 28px;
	line-height: 40px;
	color: #FFF;
	margin-bottom: 24px;
	font-weight: 600;
}

.text h3 {
	font-size: 24px;
	line-height: 32px;
	color: #FFF;
	margin-bottom: 24px;
	font-weight: 600;
}

.text h4 {
	font-size: 20px;
	line-height: 32px;
	color: #FFF;
	margin-bottom: 12px;
	font-weight: 600;
}

.text a {
	color: #1AFF71;
	text-decoration: none;
}

.text .table-wrapper {
	width: 100%;
	overflow-x: hidden;
	margin-bottom: 20px;
}

.text .table-wrapper.scrollable {
	overflow-x: auto;
}

.text table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
	border-radius: 10px;
	overflow: hidden;
}

.text tr {
	background: #9dc9ff;
}

.text tr:hover {
	background: #7cafed;
}

.text th,
td {
	border-bottom: 1px solid #fff;
	padding: 15px;
	font-size: 16px;
	text-align: left;
	white-space: nowrap;
}

.text th {
	font-weight: bold;
	background: #080c15;
	color: #fff;
	padding: 20px 15px;
}

.faq-container {
	margin-top: 30px;
}

.faq-item {
	background: linear-gradient(135deg, #1f1f1f 0%, #131313 50%, var(--panel) 100%);
	border-radius: 10px;
	margin-bottom: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.faq-item:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-arrow {
	transform: rotate(180deg);
}

.faq-item.active .faq-answer {
	opacity: 1;
	height: auto;
	transform: scaleY(1);
	padding: 16px 24px 24px 24px;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	background: #FDF869;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.faq-question h3 {
	font-size: 18px;
	font-weight: 600;
	color: #000;
	margin: 0;
	line-height: 1.3;
	letter-spacing: 0.3px;
	flex: 1;
	padding-right: 16px;
}

.faq-arrow {
	font-size: 16px;
	color: #000;
	transition: all 0.3s ease;
	font-weight: 600;
	min-width: 20px;
	text-align: center;
}

.faq-answer {
	opacity: 0;
	height: 0;
	overflow: hidden;
	transform: scaleY(0);
	transform-origin: top;
	transition: all 0.3s ease;
	background: #FDF869;
	padding: 0 24px;
}

/*footer*/
.footer {
	background-color: #fdf86a;
	color: #000;
	padding: 40px 0 120px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 12px;
}

.footer-section-title {
	color: #CECFD2;
	font-size: 17px;
	font-weight: 600;
	padding: 12px 0;
}

.footer-section-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	row-gap: 21px;
	place-items: center;
	padding: 20px 0;
	text-align: center;
}

.footer-section-content.supports-block {
	justify-content: center;
	gap: 8px;
	padding: 12px 0 30px 0;
}

.footer-section-content.supports-block img {
	height: 44px;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-menu {
	width: 100%;
	padding: 0 15px;
}

.footer-navbar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 2px 8px;
}

.footer-menu ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 0 18px 0;
}

.footer-menu ul li {
	padding: 16px;
}

.footer-menu ul a {
	color: #000;
	display: block;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
}

.copyright {
	margin: 14px 0;
	color: #FFF;
	font-size: 14px;
	text-align: center;
	line-height: 1.3;
}

/*popup*/
.casino-popup {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 5px;
	visibility: hidden;
	opacity: 0;
	background: var(--popup-bg);
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1100;
}

.casino-popup.show {
	visibility: visible;
	opacity: 1;
}

.redirect-notice {
	text-align: center;
	color: #fff;
	padding: 15px;
	animation: fadeIn 0.5s ease-in-out;
}

.notice-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	color: white;
}

.roulette-wheel {
	position: relative;
	width: 120px;
	height: 120px;
	animation: spin 3s linear infinite;
}

.wheel-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border: 3px solid var(--popup-text-primary);
	border-radius: 50%;
	background: conic-gradient(from 0deg, var(--popup-color-primary) 0deg 45deg, var(--popup-color-accent) 45deg 90deg, var(--popup-color-primary) 90deg 135deg, var(--popup-color-accent) 135deg 180deg, var(--popup-color-primary) 180deg 225deg, var(--popup-color-accent) 225deg 270deg, var(--popup-color-primary) 270deg 315deg, var(--popup-color-accent) 315deg 360deg);
	box-shadow: 0 0 30px rgba(32, 153, 255, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.wheel-center {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: flex;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background: var(--popup-text-primary);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.ball {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--popup-color-accent);
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
	animation: ballBounce 0.6s ease-in-out infinite alternate;
}

.progress-container {
	width: 280px;
	text-align: center;
}

.progress-bar {
	position: relative;
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background: #9a68d1;
	box-shadow: 0 0 10px rgba(32, 153, 255, 0.6);
}

.progress-fill {
	width: 0%;
	height: 100%;
	overflow: hidden;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--popup-color-primary), var(--popup-color-gradient-end), var(--popup-color-primary));
	background-size: 200% 100%;
	transition: width 0.3s linear;
	animation: progressShine 2s ease-in-out infinite;
}

.progress-text {
	margin-top: 12px;
	font-size: 14px;
	font-weight: bold;
	color: var(--popup-color-primary);
}

.navbar-mobile {
	position: fixed;
	left: 0;
	top: 0;
	width: 350px;
	height: 100vh;
	background: #000;
	transition: .5s;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 90px;
	transform: translateX(-100%);
}

.navbar-mobile.show {
	transform: translateX(0);
}

.navbar-mobile strong {
	text-transform: uppercase;
	color: #FFF;
	font-weight: bold;
	font-size: 14px;
}

.navbar-mobile ul {
	width: 100%;
	padding: 10px 0 20px;
	border-bottom: 1px solid #c3c3c3;
}

.navbar-mobile ul li {
	text-align: center;
	margin: 20px 0;
}

.navbar-mobile a {
	color: #FFF;
	font-size: 12px;
	text-decoration: none;
}

.navbar-mobile a:hover {
	color: #c3c3c3;
}

.payments-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	margin-top: 24px;
	margin-bottom: 32px;
	color: #FFF;
	font-size: 12px;
}

.payments-wrapper a {
	color: #FF00BA;
	text-decoration: none;
}

.payments-wrapper img {
	width: 23px;
}

.payments-logos-wrapper {
	width: 100%;
	max-width: 530px;
	background: #271c2e;
	border-radius: 12px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	padding: 12px 6px;
}

.payments-logos-wrapper.center {
	margin: 0 auto;
}

.payments-logos {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: max-content;
}

.payments-logos img {
	width: 84px;
	padding: 6px;
}

.benefits-wrapper {
	background: #000;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.benefits-wrapper .block {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 90px;
	padding: 28px 0;
}

.benefit-wrapper {
	max-width: 390px;
	margin: 0 auto;
	text-align: center;
}

.benefit-wrapper h1 {
	font-size: 28px;
	font-family: 'Lilita One', sans-serif;
	color: #FF00BA;
	white-space: normal;
	font-style: normal;
	font-weight: 400;
}

.benefit-wrapper span {
	font-size: 18px;
	font-family: 'Mukta', sans-serif;
	color: #FFF;
	line-height: 1;
	white-space: normal;
	font-weight: 400;
	font-style: normal;
}

.benefit-wrapper img {
	max-width: 70px;
	margin-bottom: 27px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes raffleGlow {

	0%,
	100% {
		opacity: 0.3;
		transform: rotate(0deg);
	}

	50% {
		opacity: 0.6;
		transform: rotate(180deg);
	}
}

@keyframes raffleIconPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

@keyframes indicatorPulse {

	0%,
	100% {
		opacity: 1;
		transform: translateY(-50%) scale(1);
	}

	50% {
		opacity: 0.6;
		transform: translateY(-50%) scale(1.2);
	}
}

@keyframes statusPulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.6;
	}
}

@keyframes shine {
	0% {
		left: -100%;
	}

	50% {
		left: 120%;
	}

	100% {
		left: 120%;
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes ballBounce {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.3);
	}
}

@keyframes glow {
	0% {
		text-shadow: 0 0 20px rgba(32, 153, 255, 0.8);
	}

	100% {
		text-shadow: 0 0 30px rgba(32, 153, 255, 1), 0 0 40px rgba(32, 153, 255, 0.6);
	}
}

@keyframes textFade {

	0%,
	100% {
		opacity: 0.6;
	}

	50% {
		opacity: 1;
	}
}

@keyframes progressShine {
	0% {
		background-position: -200% 0;
	}

	100% {
		background-position: 200% 0;
	}
}

@media screen and (max-width: 992px) {
	.btn-fixed {
		display: flex;
	}

	.hero-banner {
		border-radius: 5px;
		min-height: 600px;
		height: 494px;
	}

	.hero-banner .background {
		background: url('../img//hero-banner-mobile.webp');
		background-position: 50% 25%;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.hero-banner .content {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 1%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 24%, rgba(0, 0, 0, .7) 100%);
	}

	.btn {
		font-size: 14px;
		white-space: nowrap;
	}

	.navbar-mobile {
		width: 100%;
	}

	.navbar-buttons a {
		margin: 0;
	}

	.navbar-toggler {
		opacity: 0;
	}

	.navbar-nav {
		display: none;
	}

	.navbar-logo {
		margin-right: auto;
		min-width: auto;
	}

	.navbar-logo .desktop-logo {}

	.navbar-logo .mobile-logo {
		display: flex;
		max-width: 75px;
	}

	.slots-wrapper {
		justify-content: flex-start;
	}

	.slots-wrapper .game-card {
		flex-shrink: 0;
		width: 135px;
	}

	.footer-section-title {
		font-size: 15px;
	}

	.footer-section-content {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-section-content.supports-block {
		grid-template-columns: repeat(4, 1ft);
	}

	.footer-menu ul {
		flex-direction: column;
		gap: 26px;
	}

	.navbar .container {
		padding: 0 12px;
	}

	.navbar-content {
		padding: 0;
	}

	.navbar-logo-container {
		margin: 0 auto;
	}

	.hero-1-wrapper .welcome-text {
		font-size: 29px;
	}

	.hero-container-background {
		background: #000;
		padding: 0 0 1px 0;
	}

	.payments-logos-wrapper {
		display: flex;
		width: 448px;
		flex-direction: column;
		justify-content: space-between;
	}

	.benefits-wrapper .block {
		display: flex;
		flex-direction: column;
		gap: 90px;
		padding: 28px 0;
	}

	.slots .container-content {
		padding: 0 12px;
		justify-content: flex-start;
	}

	.content-tile {
		width: 100% !important;
	}

	section.navbar-second {
		padding: 0;
	}

	.navbar-hero {
		border-radius: 0 0 38px 38px;
	}

	.navbar-buttons {
		padding-top: 12px;
	}

	.navbar .container {
		padding: 0 6px;
	}

	.payments .content-tile {
		flex-direction: column;
		flex-wrap: wrap;
	}

	.hero-text-one span,
	.hero-text-two span {
		white-space: nowrap;
	}
}

@media screen and (max-width: 768px) {
	.text table {
		min-width: 450px;
	}

	.footer-menu ul li {
		padding: 0 12px;
	}

	.hero-banner {
		margin: 0 15px;
	}

	.hero .container {
		left: 0;
	}

	.navbar-logo .desktop-logo {
		width: 57px;
	}
}