
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Paytone+One&display=swap');

: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 {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: Open Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	font-style: normal;
	font-display: swap;
	color: #0f2a4b;
}

.container {
	padding: 0 15px;
	margin: 0 auto;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	border-bottom: 1px solid #294a72;
	background: #080c15;
	z-index: 11;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 13px;
	padding-bottom: 13px;
}

.navbar-nav {
	flex-grow: 1;
	padding: 0 20px;
	display: flex;
	justify-content: center;
}

.navbar-nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
}

.navbar-nav ul a {
	color: #91b0d7;
	text-decoration: none;
	display: block;
	padding: 8px 12px;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
}

.navbar-nav ul a.active {
	color: #fff;
}

.search {
	color: #b6cbe5;
	fill: #b6cbe5;
	margin-right: 4px;
	padding: 6px 8px;
}

.btn {
	text-decoration: none;
	font-size: 12px;
	padding: 10px 12px;
	border-radius: 2px;
	user-select: none;
	font-family: Paytone One, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol;
}

.btn-login {
	background: none;
	border: 1px solid #376298;
	color: #b6cbe5;
}

.btn-login:hover {
	background: #002959;
	border-color: #467abc;
}

.btn-reg {
	background: #0070f2;
	border :1px solid #0070f2;
	color: #fff;
	margin-left: 4px;
}

.btn-reg:hover {
	background: #0058bf;
	border-color: #0058bf;
}

.navbar-toggler {
	background: none;
	border: 1px solid #268aff;
	width: 34px;
	height: 34px;
	margin-left: 4px;
	display: none;
	padding: 5px;
	color: #b6cbe5;
}

.navbar-toggler:hover {
	background: #002959;
}

/*hero*/
.hero {
	position: relative;
	margin-top: 59px;
	height: 360px;
	overflow: hidden;
}

.hero .container {
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	z-index: 2;
}

.hero .container .highlight {
	color: #ffdd00;
	-webkit-text-stroke: 1px black;
	font-size: 36px;
	line-height: 48px;
	margin-bottom: 24px;
	font-family: Paytone One, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol;
}

.hero .btn-brand {
	box-shadow: 0 0 10px rgba(255, 221, 0, 0.5);
	background: #e7e917;
	color: #010102;
	border-color: #e7e917;
	padding: 13px 22px;
}

.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;
}

.slider-container {
	overflow: hidden;
}

.slots-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.slots-header img {
	width: 24px;
}

.slots-header .slider-title {
	margin: 0 5px;
	font-weight: bold;
}

.slots-header .tag-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #010102;
}

.games-slider {
	display: flex;
	gap: 1rem;
	scroll-behavior: smooth;
	transition: transform 0.3s ease;
}

.games-slider1 {
	margin-bottom: 40px;
}

.game-card {
	min-width: 240px;
	width: calc(100% / 4.8);
	border-radius: 10px;
	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;
}

.game-card:hover .play-overlay {
	opacity: 1;
}

.game-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-button {
	width: 48px;
	height: 48px;
	background: #0070f2;
	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 {
	width: 34px;
	height: 32px;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #6b95ca;
	transition: all 0.3s ease;
	background: none;
}

.slider-btn:hover {
	background: #edf5ff;
	border-color :#467abc;
}

.slider-btn.prev-btn {
	margin-right: 8px;
}

.slider-btn[disabled] {
	pointer-events: none;
	opacity: .33;
}



/*text*/
.text {
	background: #fff;
}

.text img {
	max-width: 100%;
	height: auto;
}

.text .container {
	max-width: 1024px;
	padding: 48px 24px;
}

.text h1 {
	color: #010102;
	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: #010102;
	margin-bottom: 24px;
	font-weight: 600;
}

.text h3 {
	font-size: 24px;
	line-height: 32px;
	color: #010102;
	margin-bottom: 24px;
	font-weight: 600;
}

.text h4 {
	font-size: 20px;
	line-height: 32px;
	color: #010102;
	margin-bottom: 12px;
	font-weight: 600;
}

.text a {
	color: #0070f2;
	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: #080c15;
	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 #294a72;
	background: #080c15;
	padding: 48px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-menu {
	padding: 0 15px;
}

.footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 48px 0;
}

.footer-menu ul a {
	text-decoration: none;
	color: #91b0d7;
	display: block;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 12px;
}

.footer-menu ul a:hover {
	color: #b6cbe5;
}

.payments {
	border-top: 1px solid #294a72;
	border-bottom: 1px solid #294a72;
	padding: 24px 0;
	width: 100%;
}

.payments .container {
	max-width: 1024px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.payments img {
	width: 100px;
}

.providers {
	margin-top: 20px;
}



.copyright {
	padding: 50px 15px 0;
	color: #6b95ca;
	font-size: 16px;
	font-weight: 600;
	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: 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: 992px) {
	.navbar-toggler {
		display: block;
	}
	.navbar-nav {
		display: none;
	}
	.navbar-logo {
		margin-right: auto;
	}
	.game-card {
		width: calc(100% / 3.8);
	}
}

@media screen and (max-width: 768px) {
	.game-card {
		width: calc(100% / 2.8);
	}
	.text table {
		min-width: 450px;
	}
	.footer-menu ul {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	.hero .container {
		left: 0;
	}
}