
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&family=Unbounded:wght@200..900&display=swap');

:root {
	--popup-text-primary: #ffffff;
	--popup-color-primary: rgb(244, 198, 85);
	--popup-color-primary-hover: #fac075;
	--popup-color-primary-active: #fac075;
	--popup-color-primary-alt: #fac075;
	--popup-color-accent: #000000;
	--popup-color-gradient-end: rgb(244, 198, 85);
	--popup-bg: #080c15;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Geologica", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	font-style: normal;
	font-display: swap;
	color: #fff;
	background: #000;
}

body::-webkit-scrollbar,
body::-webkit-scrollbar {
	width: 0
}

.container {
	margin: 0 auto;
}

.navbar-logo {
	margin-right: auto;
}

.logo {
	width: 155px;
	display: flex;
	align-items: center;
}

.logo img {
	display: block;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: rgb(19, 19, 19);
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	z-index: 11;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3px;
}

.btn-header {
	padding: 21px 24px;
	font-size: 16px;
	letter-spacing: -.02em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 8px;
	color: #fff;
	border-radius: 8px;
	background: url(../img/general-btn-texture.svg), 
	linear-gradient(0deg, rgb(64, 64, 64), rgb(64, 64, 64)), 
	linear-gradient(238.42deg, rgb(46, 46, 46) 5%, rgba(64, 64, 64, 0) 76%) repeat-x;
	border: 1px solid rgb(46, 46, 46);
	border-left-color: rgb(46, 46, 46);
	border-right-color: rgb(46, 46, 46);
	box-shadow: rgb(0, 0, 0) 0px 2px 0px 0px, rgba(255, 255, 255, 0.25) 0px 2px 0px 0px inset, rgba(0, 0, 0, 0.25) 0px -2px 0px 0px inset;
	text-shadow: rgb(0, 0, 0) 0px 1px 0px;
}

.btn-header:hover {
	box-shadow: rgba(255, 255, 255, 0.7) 0px 2px 0px 0px inset, rgba(0, 0, 0, 0.25) 0px -2px 0px 0px inset, rgb(0, 0, 0) 0px 2px 0px 0px;
}

.btn-header-login {
	margin: 0 2px;
}

.search-btn {
	display: flex;
	align-items: center;
	min-width: 300px;
	height: 60px;
	text-decoration: none;
	padding: 0 20px;
	border: 1px solid rgb(46, 46, 46);
	border-radius: 8px;
	color: rgb(173, 173, 173);
	background-color: rgb(37, 37, 37);
	transition: .3s;
	letter-spacing: -.03em;;
}

.search-btn:hover {
	border-color: rgb(73,73,73);
	background-color: rgb(46, 46, 46);
}

.search-btn svg {
	width: 20px;
	color: #fff;
	fill: #fff;
	margin-right: 6px;
}

.navbar-toggler {
	width: 36px;
	height: 36px;
	background: none;
	margin-right: 10px;
	border: none;
	padding: 8px;
	color: #fff;
	cursor: pointer;
}

.navbar-toggler img {
	width: 100%;
}

.main {
	display: flex;
}

.aside {
	position: fixed;
	top: 67px;
	left: 0;
	width: 235px;
	height: 100vh;
	transition: .5s;
	padding: 2px 4px;
	background: rgb(19, 19, 19);
	z-index: 4;
	border-right: 1px solid rgba(255, 255, 255, .08);
}

.aside.show {
	transform: translateX(0);
}

.aside ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.aside a {
	text-transform: uppercase;
	text-decoration: none;
	color: rgb(173, 173, 173);
	letter-spacing: -.04em;
	font-weight: 600;
	padding: 16px 16px;
	font-size: 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	margin-bottom: 4px;
	position: relative;
}

.aside a::before {
	content: "";
	position: absolute;
	left: -8px;
	top: 23px;
	border-bottom: 4px solid rgb(244, 198, 85);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	width: 15px;
	height: 0;
	transform: rotate(90deg);
	opacity: 0;
	transition: .3s;
}

.aside a::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 23px;
	border-top: 4px solid rgb(244, 198, 85);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	width: 15px;
	height: 0;
	transform: rotate(90deg);
	opacity: 0;
	transition: .3s;
}

.aside a:hover::after,
.aside a:hover::before {
	opacity: 1;
}

.aside a:hover {
	background: rgb(28, 28, 28);
	box-shadow: rgba(0, 0, 0, 0.8) 0px -1px 0px 0px inset, rgba(255, 255, 255, 0.25) 0px 1px 0px 0px inset;
	color: rgb(244, 198, 85);
}

.aside a:hover svg path {
	fill: rgb(244, 198, 85);
}

.aside a svg {
	width: 20px;
	margin-right: 12px;
}

.content {
	width: calc(100% - 235px);
	margin-left: 235px;
	padding: 70px 2px 0;
	transition: .5s;
}

/*hero*/
.hero {
	position: relative;
	background: url(../img/bg-hero.jpg) center center / cover no-repeat;
	height: 420px;
}

.hero .container {
	position: absolute;
	padding: 56px;
	height: 100%;
	z-index: 2;
	text-decoration: none;
}

.hero .welcome {
	font-size: 20px;
	line-height: 1.2;
	color: rgb(244, 198, 85);
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
}

.hero .highlight {
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 48px;
	line-height: 1.1;
	margin: 16px 0;
	letter-spacing: -.05em;
	font-family: "Unbounded", sans-serif;
}

.hero .btn-brand {
	width: 100%;
	min-height: 80px;
	font-size: 24px;
	padding: 0 10px;
	border-width: 0 1px;
	border-style: solid;
	border-color: transparent;
	border-radius: 10px;
	background: url(../img/primary-btn-texture.svg), linear-gradient(180deg, rgb(247,210,110) 0%, #e58d10 100%);
	box-shadow: 0 0 7px 1px #fa0, 0 0 3px 1px #f50, 0 2px #fff inset, 0 -2px #000 inset, 0 2px #0009;
	z-index: 3;
	overflow: hidden;
	min-width: 235px;
	text-align: center;
	font-weight: 900;
	letter-spacing: -.02em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-family: "Unbounded", sans-serif;
	text-transform: uppercase;
	text-shadow: 0 1px 0 rgb(255,255,255);
	cursor: pointer;
}

.hero .btn-brand:hover {
	background: url(../img/primary-btn-texture.svg), linear-gradient(180deg,#e58d10 0%, rgb(247,210,110) 100%);
}

.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 15px;
}

.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: 900;
	letter-spacing: -.02em;
	font-size: 24px;
	text-transform: uppercase;
	font-family: "Unbounded", sans-serif;
}

.slots-header .tag-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 24px;
	color: #fff;
}

.games-slider {
	display: flex;
	gap: 10px;
	scroll-behavior: smooth;
	transition: transform 0.3s ease;
}

.games-slider1 {
	margin-bottom: 60px;
}

.game-card {
	background-color:rgb(46, 46, 46);
	border: 2px solid rgb(45, 46, 49, 0.6);
	width: calc(16.6666% - 8.3333px);
	padding: 2px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
}

.game-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 3px solid #000;
	border-radius: 8px;
}

.slider-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.slider-nav {
	display: flex;
}

.slider-btn {
	border-radius: 6px;
	width: 40px;
	height: 40px;
	min-width: unset;
	padding: 0;
	background: rgb(46, 46, 46);
	border: none;
	color: rgb(244, 198, 85);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 calc(-1 * 1px) 0 rgba(0, 0, 0, 0.25);
}

.slider-btn svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.slider-btn:hover svg {
	fill: #fff;
}

.slider-btn.prev-btn {
	margin-right: 2px;
}

.slider-btn[disabled] {
	pointer-events: none;
	cursor: default;
	background: rgb(28,28,28);
	color: rgb(110,110,110);
	box-shadow: 0 1px rgb(255,255,255 / .1) inset, 0 1px rgb(0,0,0 / .2) inset, 0 1px rgb(0,0,0);
}

.see-all {
	text-decoration: none;
	font-size: 12px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -.02em;
	font-family: "Unbounded", sans-serif;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	background: none;
	color: rgb(244,198,85);
	text-transform: uppercase;
}



/*text*/
.text {
	margin: 50px 15px;
}

.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: none;
}

.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: none;
	color: #fff;
	padding: 20px 15px;
}

.faq-container {
	margin-top: 30px;
}

.faq-item {
	background: rgb(244, 198, 85);
	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 {
	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: rgb(244, 198, 85);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.faq-question h3 {
	font-size: 18px;
	font-weight: 600;
	color: rgb(46, 46, 46);
	margin: 0;
	line-height: 1.3;
	letter-spacing: 0.3px;
	flex: 1;
	padding-right: 16px;
}

.faq-arrow {
	font-size: 16px;
	color: rgb(46, 46, 46);
	transition: all 0.3s ease;
	font-weight: 600;
	min-width: 20px;
	text-align: center;
}

.faq-answer {
	opacity: 0;
	height: 0;
	overflow: hidden;
	color: rgb(46, 46, 46);
	transform: scaleY(0);
	transform-origin: top;
	transition: all 0.3s ease;
	border-top: 2px solid rgb(46, 46, 46);
	padding: 0 24px;
}

/*footer*/
.footer {
	border-top: 1px solid #ffffff1f;
	padding: 30px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgb(19,19,19);
	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: #fff;
	font-size: 16px;
}

.footer-menu li {
	margin: 4px 0;
}

.footer-menu ul a:hover {
	color: #fff;
}

.payments {
	padding: 24px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.payments div {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px;
	border-radius: 32px;
	background: rgb(37,37,37);
	margin: 0 2px;
}

.payments img {
	height: 32px;
}

.copyright {
	color: rgb(110,110,110);
	font-size: 12px;
	line-height: 16px;
	text-align: center;
}

.copyright p {
	margin: 15px 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%);
	}
	.content {
		margin: 0;
		width: 100%;
	}
	.search-btn {
		display: none;
	}
	.logo {
		width: 95px;
	}
	.navbar-nav {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	.game-card {
		width: calc(20% - 8px);
	}
}

@media screen and (max-width: 768px) {
	.btn-header {
		padding: 21px 5px;
	}
	.game-card {
		width: calc(25% - 8px);
	}
	.hero {
		height: auto;
		padding-top: 60%;
		background: url(../img/hero-mob.jpg) center top / contain no-repeat;
	}
	.hero .container {
		width: 200%;
		position: relative;
		text-align: center;
		padding: 45% 15px 20px;
	}
	.hero .highlight {
		font-size: 36px;
	}
	.hero .btn-brand {
		max-width: 400px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 480px) {
	.aside {
		width: 100%;
	}
	.game-card {
		width: calc(60% - 8px);
	}
	.slots-header .slider-title {
		font-size: 22px;
	}
}