
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');

@font-face {
	font-family: 'font-icons';
		src: url('../fonts/font-icons.woff2') format('woff2'),
				url('../fonts/font-icons.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

.font-icons {
	speak: never;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: font-icons !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	font-size: 24px;
}

.font-icons--casino:before {
	content: ""
}

.font-icons--livegames:before {
	content: ""
}

.font-icons--search:before {
	content: ""
}

.font-icons--top:before {
	content: ""
}

.font-icons--promotions:before {
	content: ""
}

.font-icons--vip-club:before {
	content: ""
}

.font-icons--new:before {
	content: "";
}

.font-icons--angle-left-small:before {
	content: "";
}

.font-icons--angle-right-small:before {
	content: "";
}

.font-icons--play::before {
	content: "";
}

.font-icons--menu-left:before {
	content: "";
}

:root {
	--popup-text-primary: #ffffff;
	--popup-color-primary: #e7e917;
	--popup-color-primary-hover: #ff9100;
	--popup-color-primary-active: #e66a00;
	--popup-color-primary-alt: #cc5c00;
	--popup-color-accent: #000000;
	--popup-color-gradient-end: #e7e917;
	--popup-bg: #080c15;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Roboto, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	font-style: normal;
	font-display: swap;
	color: #ffffffa6;
	background: #17142f;
}

body::-webkit-scrollbar,
body::-webkit-scrollbar {
	width: 4px;
}

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
	background: #342e6b;
	border-radius: 10px;
}

.container {
	/* padding: 0 15px; */
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
}

.logo-mobile {
	display: none;
}

.logo img {
	display: block;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #1d1a3b;
	z-index: 11;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 25px;
}

.navbar .casino {
	background: #292453;
	text-transform: none;
	margin-left: 25px;
	padding: 10px 12px;
}

.navbar .live-casino {
	background: none;
	text-transform: none;
	margin-left: 10px;
	padding: 10px 12px;
}

.navbar .casino i:before {
	transition: color .3s ease;
	color: #9f4bf2;
	margin-right: 6px;
}

.navbar .live-casino i:before {
	transition: color .3s ease;
	color: #ffffff66;
	margin-right: 6px;
}

.navbar .live-casino:hover i:before {
	color: #fff;
}

.search {
	color: #b6cbe5;
	fill: #b6cbe5;
	margin-right: 4px;
	padding: 6px 8px;
}

.btn {
	text-decoration: none;
	font-size: 14px;
	padding: 9px 16px;
	border: none;
	color: #fff;
	border-radius: 8px;
	min-width: 80px;
	font-weight: 700;
	letter-spacing: .2px;
	text-transform: uppercase;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.btn-login {
	background: none;
	border: 1px solid #ffffff1f;
	margin-left: auto;
	padding: 8px 16px;
}

.btn-login:hover {
	border-color: #ffffff33;
}

.btn-reg {
	background: linear-gradient(180deg, #fcb853, #af593e);
	margin-left: 12px;
}

.btn-reg:hover {
	background: linear-gradient(180deg, #fbbf66, #c56345);
}

.search-btn {
	background: #231f47;
	padding: 10px 12px;
	transition: background .3s ease;
	color: #ffffff66;
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
	margin-left: 10px;
}

.search-btn i {
	margin-right: 6px;
}

.navbar-toggler {
	background: #231f47;
	width: 36px;
	height: 36px;
	margin-right: 10px;
	display: none;
	border: none;
	padding: 8px;
	border-radius: 8px;
	color: #ffffffa6;
	cursor: pointer;
}

.navbar-toggler i {
	font-size: 20px;
}

.navbar-toggler:hover {
	background: #2f295f;
}

.main {
	display: flex;
}

.aside {
	position: fixed;
	top: 65px;
	left: 0;
	width: 240px;
	height: 100vh;
	transition: .5s;
	padding: 12px;
	background: #1d1a3b;
	z-index: 4;
}

.aside.show {
	transform: translateX(0);
}

.aside a {
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	background: #231f47;
	border-radius: 8px;
	display: flex;
	align-items: center;
	padding: 12px;
	margin-bottom: 4px;
	transition: background .3s ease;
}

.aside a:hover {
	background: #2f295f;
}

.aside a i {
	margin-right: 12px;
	font-size: 20px;
	transition: var(--popup-color-accent) .3s ease;
	color: #ffffff66;
}

.aside a:hover i {
	color: #fff;
}

.content {
	width: calc(100% - 240px);
	margin-left: 240px;
	padding: 88px 30px 24px;
	transition: .5s;
}

/*hero*/
.hero {
	position: relative;
	height: 420px;
	border-radius: 15px;
	overflow: hidden;
}

.hero .container {
	position: absolute;
	padding: 56px;
	height: 100%;
	z-index: 2;
}

.hero .welcome {
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 700;
	margin: 0;
}

.hero .highlight {
	color: #fff;
	font-weight: 700;
	font-size: 42px;
	line-height: 52px;
	margin: 16px 0 0;
	font-family: Unbounded, sans-serif;
}

.hero p {
	font-size: 16px;
	line-height: 24px;
	margin: 12px 0 0;
	color: #fff;
}

.hero .btn-brand {
	padding: 16px 24px;
	border-radius: 10px;
	font-size: 16px;
	height: 56px;
	line-height: 24px;
	min-width: 100px;
	margin-top: 32px;
	text-transform: uppercase;
	background: linear-gradient(180deg, #fcb853, #af593e);
}

.hero .btn-brand:hover {
	background: linear-gradient(180deg, #fbbf66, #c56345);
}

.hero-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}

.hero-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/*slots*/
.slots {
	padding: 24px 0;
}

.slider-container {
	overflow: hidden;
}

.slots-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.slots-header .slider-title {
	margin: 0 5px;
	font-weight: bold;
}

.slots-header .tag-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 24px;
	color: #fff;
}

.slots-header .tag-link i {
	font-size: 32px;
	color: #9f4bf2;
}

.games-slider {
	display: flex;
	gap: 1rem;
	scroll-behavior: smooth;
	transition: transform 0.3s ease;
}

.games-slider1 {
	margin-bottom: 40px;
}

.game-card {
	min-width: 185px;
	width: calc(100% / 8);
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
}

.game-card .play-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	text-align: center;
	text-decoration: none;
	background: #0f0d22cc;
}

.game-card:hover .play-overlay {
	opacity: 1;
}

.game-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-button {
	width: 56px;
	height: 56px;
	background: linear-gradient(180deg, #fcb853, #af593e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: relative;
	color: white;
}

.play-button:before {
	content: "";
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
}

.slider-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.slider-nav {
	display: flex;
}

.slider-btn {
	border-radius: 50%;
	height: 40px;
	min-width: unset;
	padding: 0;
	width: 40px;
	background: none;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	border: 1px solid #ffffff1f;
}

.slider-btn:hover {
	border-color :#ffffff33;
}

.slider-btn.prev-btn {
	margin-right: 8px;
}

.slider-btn[disabled] {
	pointer-events: none;
	cursor: default;
}

.see-all {
	display: block;
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
	min-width: 80px;
	border-radius: 8px;
	height: 40px;
	padding: 10px 16px;
	background: none;
	color: #fff;
	border: 1px solid #ffffff33;
	letter-spacing: .2px;
	font-weight: 700;
	text-transform: uppercase;
	margin-right: 15px;
}



/*text*/
.text {
	margin: 50px 0;
}

.text img {
	max-width: 100%;
	height: auto;
}

.text h1 {
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 16px;
	color: #fff;
	margin-top: 0;
}

.text p {
	margin-bottom: 16px;
	line-height: 24px;
	margin-bottom: 24px;
}

.text ul {
	list-style-position: inside;
	margin-bottom: 30px;
}

.text ol {
	list-style-position: inside;
}

.text li {
	padding: 6px 0;
}

.text h2 {
	font-size: 28px;
	line-height: 40px;
	color: #fff;
	margin-bottom: 16px;
}

.text h3 {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 16px;
	color: #fff;
}

.text h4 {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 12px;
	color: #fff;
}

.text a {
	color: #fff;
	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: #231f47;
}

.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: #2f295f;
	color: #fff;
	padding: 20px 15px;
}

.faq-container {
	margin-top: 30px;
}

.faq-item {
	background: #2f295f;
	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: #2f295f;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.faq-question h3 {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.3;
	letter-spacing: 0.3px;
	flex: 1;
	padding-right: 16px;
}

.faq-arrow {
	font-size: 16px;
	color: #ffffff;
	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: rgba(255, 255, 255, 0.03);
	padding: 0 24px;
}

/*footer*/
.footer {
	border-top: 1px solid #ffffff1f;
	padding: 48px 0 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.footer-menu ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	list-style: none;
	margin-bottom: 40px;
}

.footer-menu ul a {
	text-decoration: none;
	color: #ffffff66;
	font-size: 16px;
}

.footer-menu div {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin: 40px 0 10px;
}

.footer-menu li {
	margin: 4px 0;
}

.footer-menu ul a:hover {
	color: #fff;
}

.payments {
	padding: 24px 0;
	width: 100%;
}

.payments .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.payments img {
	height: 32px;
	margin: 0 20px 10px;
}

.crypto {
	margin-top: 20px;
	flex-wrap: wrap;
}

.crypto div {
	width: 100%;
	text-align: center;
	font-size: 14px;
	margin-bottom: 8px;
}

.crypto img {
	margin: 0 4px 4px;
	width: 24px;
}

.copyright {
	border-top: 1px solid #ffffff1f;
	padding: 48px 0 0;
	color: #ffffff66;
	font-size: 14px;
	line-height: 20px;
}

.license {
	margin-top: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}

.license img {
	height: 32px;
	margin: 0 32px 16px 0;
}


/*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: 100%;
	height: 100vh;
	background: #15263a;
	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: #b6cbe5;
	font-weight: 400;
	font-size: 12px;
}

.navbar-mobile ul {
	width: 100%;
	padding: 10px 0 20px;
	border-bottom: 1px solid #294a72;
}

.navbar-mobile ul li {
	text-align: center;
	margin: 20px 0;
}

.navbar-mobile a {
	color: #59a6ff;
	font-size: 12px;
	text-decoration: none;
}

@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: 1200px) {
	.aside {
		transform: translateX(-100%);
		top: 60px;
	}
	.content {
		margin: 0;
		width: 100%;
	}
	.navbar .casino,
	.navbar .live-casino,
	.search-btn {
		display: none;
	}
	.btn-reg {
		padding: 7px 12px;
	}
	.btn-login {
		padding: 7px 16px;
	}
	.logo {
		display: none;
	}
	.logo-mobile {
		display: block;
	}
	.navbar-toggler {
		display: block;
	}
	.navbar-nav {
		display: none;
	}
	.navbar-logo {
		margin-right: auto;
	}
	.hero {
		height: 360px;
	}
	.game-card {
		min-width: 210px;
	}
	.hero .container {
		padding: 40px 32px;
	}
	.hero .highlight {
		font-size: 32px;
		line-height: 40px;
	}
	.hero .btn-brand {
		padding: 10px 20px;
		height: 48px;
	}
}

@media screen and (max-width: 768px) {
	.navbar .container {
		padding: 10px 18px;
	}
	.content {
		padding: 60px 15px 10px;
	}
	.hero {
		height: 320px;
		border-radius: 0;
		width: calc(100% + 30px);
		left: -15px;
	}
	.hero .container {
		padding: 40px 16px;
	}
	.hero .welcome {
		font-size: 16px;
	}
	.hero .highlight {
		font-size: 26px;
		line-height: 32px;
	}
	.hero p {
		font-size: 14px;
		line-height: 20px;
	}
	.hero .btn-brand {
		margin-top: 24px;
	}
	.footer {
		padding: 40px 0 0;
	}
	.payments img {
		height: 24px;
		margin: 0 12px 12px;
	}
	.crypto img {
		margin: 0 4px 4px;
	}
	.text table {
		min-width: 450px;
	}
	.slots-header {
		margin-bottom: 12px;
	}
	.slots-header .tag-link {
		font-size: 16px;
	}
	.slots-header .tag-link i {
		font-size: 24px;
	}
	.slider-btn {
		display: none;
	}
	.see-all {
		margin-right: 0;
	}
}