
@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: #1c1c1c;
	--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;
	overflow-x: hidden;
}

body {
	font-family: 'Mukta', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	font-style: normal;
	font-display: swap;
	color: #0f2a4b;
	background-color: #000;
	overflow-x: hidden;
	max-width: 100vw;
}

section {
	padding: 0 20px;
}

.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.navbar {
	width: 100%;
	background: #000;
	background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
	z-index: 11;
	position: sticky;
	top: 0;
}

.desktop-overlay {
	width: 100%;
}

.navbar-content {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
}

.navbar .container {
	display: flex;
    justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.navbar-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	height: 85px;
	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: 68px;
}

.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;
}

.navbar-buttons a {
	margin: 0 .5rem;
	font-size: 0.875rem;
	font-weight: 400;
}

.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;
}


/*slots*/
.slots {
	background: url('../img/background.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.slots .container {
	margin: 0 auto;
	z-index: 2;
	position: relative;
}
.slots .overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	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%);
}
.slots-content {
	padding: 12px 24px;
	background: #000;
	max-width: 1152px;
	margin: 0 auto;
	border-radius: 10px;
}
.slots-info {
	margin: 0 auto;
	text-align: center;
	padding-top: 24px;
	padding-bottom: 62px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}
.slots-info span {
	max-width: 614px;
	color: #FFF;
}
.slots-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px 0 10px 0;
}

.slots-header span {
	font-size: 42px;
	font-family: 'Lilita One', sans-serif;
	color: #FFF;
	width: 100%;
	max-width: 450px;
    text-align: center;
	padding: 8px 0;
}

.slots-button {
	color: #FFF;
	border: 2px solid #000;
	background: transparent;
    border-radius: 21px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 12px;
    margin: 6px 4px;
}
.slots-button:hover {
	cursor: pointer;
}
.slots-button.active {
	border-color: #FFF;
}

.slots-header-title {
	display: flex;
	align-items: center;
	font-size: 24px;
	margin: 0 5px;
	font-weight: bold;
	text-decoration: none;
	color: #FFF;
}

.slots-section {
	margin-bottom: 20px;
}

.slots-buttons {
	display: flex;
	gap: 12px;
}

.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;
}

.slots-buttons .slider-btn {
	color: #cecfd2;
	background: #000;
	border: 2px solid #cecfd2;
	border-radius: 20px;
	padding: 6px;
	display: flex;
	align-items: center;
}

.slots-buttons .slider-btn:hover {
	cursor: pointer;
}

.slots-buttons .slider-btn svg {
	width: 100%;
}

.slots-wrapper {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	gap: 16px;
}

.slots-wrapper::-webkit-scrollbar {
    display: none;
}

.game-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 170px;
	height: 314px;
	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: #000;
	color: #FFF;
	overflow-x: hidden;
}

.text img {
	max-width: 100%;
	height: auto;
}

.text .container {
	padding: 48px 24px;
	overflow-x: hidden;
}

.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;
}

.table-scroll {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	margin-bottom: 20px;
}

.text table {
	width: max-content;
	min-width: 600px;
	border-collapse: collapse;
	border-radius: 10px;
}

.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: #271c2e;
	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: #271c2e;
	padding: 0 24px;
}

/*footer*/
.footer {
	background-color: #271c2e;
	color: #FFF;
	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;
	
}
.footer-section-content.supports-block {
	justify-content: center;
	gap: 16px;
	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: #FFF;
	display: block;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	font-family: "Inter", sans-serif;
}

.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: 1064px;
	background: #271c2e;
	border-radius: 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 24px 0;
}

.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: 98px;
	height: 100%;
	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: 12px;
	}
	.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: 100%;
		max-width: 530px;
		flex-direction: column;
		justify-content: space-around;
	}

	.benefits-wrapper .block {
		display: flex;
		flex-direction: column;
		gap: 90px;
		padding: 28px 0;
	}

	.payments-logos img {
		width: 84px;
		padding: 6px;
	}

}

@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;
	}

	.payments-logos-wrapper {
		width: 100%;
		justify-content: space-between;
	}
}